/* Whatsapp & Callback buttons Begin */
/* Whatsapp button Begin */
#whatsapp_widget {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: #5858ce;
    border-radius: 50px;
    box-shadow: 0 -100px 70px -120px #442e3f inset;
    width: unset;
    padding: 0 0 0 15px;
    animation: background 4s infinite alternate;
    text-decoration: none;
}
.whatsapp-side-icon{
    width: 54px;
    height: 54px;
    margin-right: 3px;
    -webkit-animation: swing 0.6s infinite alternate;
    animation: swing 0.6s infinite alternate;
}

#whatsapp_widget svg {
    margin: 2px 1px 0 0;
    transition: height 0.4s;
    height: 90%;
    fill: #27D246;
    -webkit-animation: swing 0.6s infinite alternate;
    animation: swing 0.6s infinite alternate;
}

#whatsapp_widget:hover svg {
    height: 95%;
}

#whatsapp_widget>span {
    color: #fff;
    margin-right: 10px;
    font-size: 15px;
}

#whatsapp_widget:after {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 300px;
    animation: radial-pulse 2s infinite alternate;
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}

@keyframes background {
    50% {
        background: #110c10;
        box-shadow: 0 -140px 70px -120px #747474 inset, 0 -210px 70px -120px #442e3f inset, 0 -280px 70px -120px #3f51b5 inset;
    }
}

@keyframes swing {

    0%,
    50%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30% {
        transform: rotate(-10deg);
    }

    20%,
    40% {
        transform: rotate(10deg);
    }
}

.grecaptcha-badge {
    display: none !important;
}

/* Whatsapp button End */

/* Callback button Begin */
.callbackForm {
    /* background-color: #0341b0ee; */
    background-color: #243c6dee;
    border-radius: 10px;
    width: 100vw;
    max-width: 300px;
    box-sizing: border-box;
    position: fixed;
    box-shadow: 0px 6px 20px 0px rgb(0 0 0 / 40%);
    bottom: 100px;
    right: -400px;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    padding: 15px 0;
    z-index: 9999999;
    overflow: hidden;
}

.callbackForm.active {
    right: 20px;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.close-container {
    position: absolute;
    margin: auto;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 5px;
    cursor: pointer;
    z-index: 999;
}

.close-container .leftright {
    height: 1.999px;
    width: 30px;
    position: absolute;
    margin-top: 15px;
    background-color: #bfbfbf;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in;
}

.close-container .rightleft {
    height: 1.999px;
    width: 30px;
    position: absolute;
    margin-top: 15px;
    background-color: #bfbfbf;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in;
}

.close-container label {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: .6em;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease-in;
    opacity: 1;
}

.close-container .closes {
    margin: 48px 0 0 0px;
    position: absolute;
    font-size: 8px;
    color: #fff;
}

.close-container:hover .leftright {
    transform: rotate(-45deg);
    background-color: #fe065c;
}

.close-container:hover .rightleft {
    transform: rotate(45deg);
    background-color: #fe065c;
}

.close-container:hover label {
    opacity: 1;
}

.callback_lines {
    transform: rotate(45deg);
    position: absolute;
    top: 242px;
    left: -220px;
    width: 200%;
    z-index: 0;
}

.callback_line {
    margin-bottom: 15px;
    border-bottom: 1px solid #ffe7b033;
    position: relative;
}

.callback_line:after {
    content: '';
    display: block;
    background-color: #ffe7b033;
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0;
    top: -4px;
    border-radius: 100%;
}

.callback_lines .callback_line:nth-child(3):after {
    animation-name: ltr;
    animation-duration: 2100ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0.33s;
}

.callback_lines .callback_line:nth-child(2):after {
    animation-name: ltr;
    animation-duration: 2100ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0.66s;
}

.callback_lines .callback_line:nth-child(1):after {
    animation-name: ltr;
    animation-duration: 2100ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 0.99s;
}

.callback_content {
    position: relative;
    z-index: 1;
}



.callbackFormContent {
    padding: 0 30px;
    margin: 0;
}

.callbackZag {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.callbackSzag {
    font-size: 16px;
    color: #bfbfbf;
    margin-bottom: 15px;
    line-height: 1.5em;
}



@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes ltr {
    from {
        left: 0;
    }

    to {
        left: 100%;
    }
}

div#clinicFormResponse {
    opacity: 0;
    color: #ffe7b0;
    text-align: center;
    font-size: 17px;
    height: 0;
    overflow: hidden;
}

div#clinicFormResponse.act {
    opacity: 1;
    -webkit-transition: opacity 0.7s ease 0s;
    -moz-transition: opacity 0.7s ease 0s;
    -ms-transition: opacity 0.7s ease 0s;
    -o-transition: opacity 0.7s ease 0s;
    transition: opacity 0.7s ease 0s;
    height: auto;
}

.callbackCBbutt_container {
    position: fixed;
    cursor: pointer;
    z-index: 9999;
    bottom: 20px;
    right: 20px;
}

#callbackCBbutt_getPhone.callbackCBbutt_container{
    bottom: 90px;
}

.callbackCBbutt_clinic {
    background-color: #fff;
    color: #000;
    position: absolute;
    top: 0;
    right: calc(100% + 21px);
    -webkit-filter: drop-shadow(0 0 3px #777);
    filter: drop-shadow(0 0 3px #777);
    padding: 10px;
    z-index: 999;
    width: 200px;
    font-size: 12px;
    line-height: 1.21;
    border-radius: 5px;
    display: block;
    right: -1000px;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.callbackCBbutt_clinic:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 15px;
    left: 99%;
}

.callbackCBbutt_clinic.act {
    right: calc(100% + 21px);
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -ms-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

.callbackCBbutt {
    display: inline-block;
    background-color: #0341b0;
    border-radius: 100%;
    padding: 7px;
    width: 71px;
    height: 71px;
    box-sizing: border-box;
}

.callbackCBbutt:hover {
    animation: radial-pulse 1s infinite alternate;
}

.callbackCBbutt .callbackImg {
    margin: 0;
    width: 35px;
    height: 35px;
    padding: 10px;
}

.callbackCBbutt .callbackImg svg {
    /*animation: rotate3d 15s infinite linear;*/
}

.callbackCBbutt .callbackImg span {
    display: block;
    position: absolute;
    width: 47px;
    height: 47px;
    top: 4px;
    left: 4px;
    transform: rotate(45deg);
    -webkit-animation-name: spin;
    -webkit-animation-duration: 6000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 6000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 6000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 6000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes rotate3d {
    0% {
        -ms-transform: rotateY(0deg);
    }

    3% {
        -ms-transform: rotateY(360deg);
    }

    100% {
        -ms-transform: rotateY(360deg);
    }
}

@-moz-keyframes rotate3d {
    0% {
        -moz-transform: rotateY(0deg);
    }

    3% {
        -moz-transform: rotateY(360deg);
    }

    100% {
        -moz-transform: rotateY(360deg);
    }
}

@-webkit-keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg);
    }

    3% {
        -webkit-transform: rotateY(360deg);
    }

    100% {
        -webkit-transform: rotateY(360deg);
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg);
    }

    3% {
        transform: rotateY(360deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

.pulse-button__rings {
    border: 1px solid #fe065c;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: auto;
    width: auto;
    border-radius: 50%;
    animation-duration: 2.0s;
    animation-name: pulse_1;
    animation-iteration-count: infinite;
    z-index: -1;
}

.pulse-button__rings:nth-child(2) {
    animation-name: pulse_2;
}

.pulse-button__rings:nth-child(3) {
    animation-name: pulse_3;
}

@keyframes pulse_1 {
    from {
        opacity: 1;
        transform: scale(0.9, 0.9);
    }

    to {
        opacity: 0;
        transform: scale(1.3, 1.3);
    }
}

@keyframes pulse_2 {
    from {
        opacity: 1;
        transform: scale(0.8, 0.8);
    }

    to {
        opacity: 0;
        transform: scale(1.5, 1.5);
    }
}

@keyframes pulse_3 {
    from {
        opacity: 1;
        transform: scale(0.8, 0.8);
    }

    to {
        opacity: 0;
        transform: scale(1.7, 1.7);
    }
}

/* reset */
.callbackCBbutt{
border: 0;
}
.no-robot{
    display: flex;
    color: #fff;
}
.no-robot input{
    width: auto;
}

/* Callback button End */
/* Whatsapp & Callback buttons End */