
.img-circle, .img-circle2 {
    background-color: #29AEE3;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

.circlephone {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    border: 2px solid #29AEE3;
    width: 160px;
    height: 160px;
    bottom: -25px;
    right: 10px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    opacity: .5;
    -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
    -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
    -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
    -o-animation: circle-anim 2.4s infinite ease-in-out !important;
    animation: circle-anim 2.4s infinite ease-in-out !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}

.circle-fill {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    background-color: #29AEE3;
    width: 110px;
    height: 110px;
    bottom: 0px;
    right: 35px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
    animation: circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}

.img-circle {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 77px;
    height: 77px;
    bottom: 17px;
    right: 52px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
}

.img-circleblock {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 77px;
    height: 77px;
    background-image: url(../img/callme/mini4.png);
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}
#requestCall{
    display: none;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    padding-top: 22px;
}

.img-circle:hover {
    opacity: 1;
}

.img-circle:hover .img-circleblock {
    background-image: none;
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 2.5s;
    -webkit-animation-duration: 2.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.img-circle2 {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 77px;
    height: 77px;
    bottom: 17px;
    right: 52px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: 1;
}

.img-circleblock2 {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 77px;
    height: 77px;
    /*background-image: url(../img/callme/mini3.png);*/
    background-position: center center;
    background-repeat: no-repeat;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#alreadyCall{
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    color: #ffffff;
    padding-top: 10px;
}
.img-circleblock2:hover {
    background-image: url(../img/callme/mini.png);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
}

@keyframes tossing {
    0% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(-8deg);
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-8deg);
    }
    50% {
        -webkit-transform: rotate(8deg);
    }
    100% {
        -webkit-transform: rotate(-8deg);
    }
}

@-moz-keyframes circle-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1;
    }
    30% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5;
    }
    100% {
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1;
    }
}

@-webkit-keyframes circle-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
        -webkit-opacity: .1;
    }
    30% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        -webkit-opacity: .5;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-opacity: .1;
    }
}

@-o-keyframes circle-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.5) skew(1deg);
        -o-opacity: .1;
    }
    30% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        -o-opacity: .5;
    }
    100% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        -o-opacity: .1;
    }
}

@keyframes circle-anim {
    0% {
        transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1;
    }
    30% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .1;
    }
}

@-moz-keyframes circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@-webkit-keyframes circle-fill-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@-o-keyframes circle-fill-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@keyframes circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

.call_button {
    background: url(../img/callme/mini.png) no-repeat;
    bottom: 6px;
    left: 6px;
    position: absolute;
    width: 25px;
    height: 25px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

#minbotph {
    background: #29AEE3;
    z-index: 999997;
    width: 50px;
    height: 50px;
    bottom: 0;
    left: 0;
    position: fixed;
    opacity: 0.7;
    -webkit-border-top-right-radius: 50px;
    -moz-border-radius-topright: 50px;
    border-top-right-radius: 50px;
}

#minbotph:hover {
    opacity: 1;
}

#stbotph, #slibotph {
    float: left;
    position: relative;
    width: 135px;
    height: 120px;
}

#content1 {
    float: left;
    height: 81px;
    margin: 22px 0 0 -120px;
    background: rgba(219, 241, 254, 0.84);
    padding: 0 17px 0 90px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

#modal_call {
    display: inline-block;
    height: 30px;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    background: #fff;
    outline: none;
    -webkit-appearance: none;
    vertical-align: middle;
    width: 120px;
    margin: 20px 0 17px 30px;
    color: #1f6074;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    border: 2px solid #31B2C4;
    padding: 2px 10px 3px 5px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}


#labtelcal {
    font-size: 9px;
    line-height: 9px;
    color: #6190a7;
    bottom: 22px;
    right: 80px;
    position: absolute;
}

#butcall {
    font-size: 0;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    margin: 2px 0 0 0;
    background: #eff8fd url(../img/callme/arr.png) no-repeat 8px 6px;
    border: 2px solid #31B2C4;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

#butcall:hover {
    cursor: pointer;
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

#mssgresbox {
    margin-top: 22px;
    height: 81px;
    position: fixed;
    left: 35px;
    bottom: 41px;
    z-index: 999998;
    display: none;
    color: #29AEE3;
    text-align: center;
    vertical-align: middle;
    line-height: 80px;
    background: rgba(219, 241, 254, 0.84);
    padding: 0 17px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
#mssgresbox a{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
}
#mssgresbox a:hover{
    text-decoration: none;
}
#mssgresbox:hover {
    cursor: pointer;
}

#pop_up_bl {
    position: fixed;
    left: 50px;
    bottom: 25px;
    z-index: 999998;
    max-height: 120px;
    max-width: 425px;
    font-family: 'Open Sans', sans-serif;
}

a#setcookieph {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    display: block;
    position: absolute;
    top: 10px;
    right: 0;
    width: 20px;
    height: 20px;
    background: rgba(37, 157, 205, 0.93) url(../img/callme/close.png) no-repeat center 4px;
    z-index: 999999;
    -webkit-transition: all 0ms;
    -o-transition: all 0ms;
    -moz-transition: all 0ms;
    transition: all 0ms;
}

a#setcookieph:hover {
    background: rgba(219, 241, 254, 0.84) url(../img/callme/close.png) center -24px no-repeat;
    cursor: pointer;
}

#content1 label {
    font-weight: normal;
    margin: 0;
}

#content1 input[type="email"] {
    height: 100%;
}

input[type="email"].hidden_in {
    display: none;
}

#pop_up_bl .close {
    opacity: 1;
}

#mask_text {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
}

@media (max-width: 480px) {
    #content1 {
        height: 60px;
        margin: 35px 0 0 -90px;
        padding: 0 17px 0 60px;
        bottom: 0;
    }

    #modal_call {
        width: 120px;
        height: 25px;
        line-height: 25px;
        margin: 12px 0 12px 0;
        font-size: 18px;
        padding: 2px 5px 3px;
    }

    #modal_call::-webkit-input-placeholder {
        font-size: 9px;
        line-height: 25px;
    }

    #modal_call::-moz-placeholder {
        font-size: 9px;
        line-height: 25px;
    }

    #modal_call:hover::-webkit-input-placeholder {
        color: transparent;
    }

    #modal_call:hover::-moz-placeholder {
        color: transparent;
    }

    #labtelcal {
        bottom: 27px;
        right: 70px;
    }

    #butcall {
        width: 36px;
        height: 36px;
        line-height: 32px;
        background: #eff8fd url(../img/callme/arr.png) no-repeat 6px 3px;
    }

    #butcall:hover {
        cursor: pointer;
    }

    #mssgresbox {
        font-size: 14px;
        line-height: 60px;
    }

    #pop_up_bl {
        /*right: 50%;*/
        /*margin-right: -145px;*/
        /*max-width: 300px;*/
        /*bottom: 0;*/
    }
}

