
.shedule__call {
    background: url('/templates/smgreen/css/images/button.png') no-repeat;
    background-size: 75px;
    position: absolute;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    padding: 0px 1px 1px 0px;
}

.shedule__call:hover {
    background: url('/templates/smgreen/css/images/button_active.png') no-repeat;
    background-size: 75px;
}

.shedule__call img {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    padding: 2px;
}

.schedule_wrapper {
    position: fixed;
    bottom: 130px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
}

.tip_btn {
    position: relative;
}

.tooltip {
    position: absolute;
    width: 100px;
    height: 76px;
    line-height: 14px;
    background: #EDF7F3;
    color: #30333A;
    top: 0;
    left: -18px;
    font-weight: 700;
    font-size: 10px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.5s ease;
    border: 1px solid #C5C6C6;
}

.tooltip.top_tooltip {
    top: -84px;
}

.tip_btn:hover .tooltip {
    opacity: 1;
}

.top_tooltip_header {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #D15D58;
}

.top_tooltip_text {
    font-size: 12px;
    color: #4A9870;
    margin-top: 15px;
    display: inline-block;
}

.circlephone {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /*border: 2px solid #01875f;*/
    border: 2px solid #e23724;

    width: 80px;
    height: 80px;
    bottom: -3px;
    right: -4px;
    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 .5s
}

.circle-fill {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    /*background-color: #01875f;*/
    /*background-color: rgb(1 135 95 / 37%);*/
    background-color: rgb(226 55 36 / 37%);
    width: 100px;
    height: 100px;
    bottom: -14px;
    right: -14px;
    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 .5s
}

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

    50% {
        -moz-transform: rotate(0) -moz-scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -moz-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .2
    }
}

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

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .2
    }
}

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

    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        -o-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .2
    }
}

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

    50% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .2
    }

    100% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .2
    }
}

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

    30% {
        -moz-transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5
    }

    100% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1
    }
}

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

    30% {
        -webkit-transform: rotate(0) scale(0.7) skew(1deg);
        -webkit-opacity: .5
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
        -webkit-opacity: .1
    }
}

@-o-keyframes circle-anim {
    0 {
        -o-transform: rotate(0) kscale(0.5) skew(1deg);
        -o-opacity: .1
    }

    30% {
        -o-transform: rotate(0) scale(0.7) skew(1deg);
        -o-opacity: .5
    }

    100% {
        -o-transform: rotate(0) scale(1) skew(1deg);
        -o-opacity: .1
    }
}

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

    30% {
        transform: rotate(0) scale(0.7) skew(1deg);
        opacity: .5
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg);
        opacity: .1
    }
}

@media screen and (max-width: 1025px) {
    .schedule_wrapper {
        bottom: auto !important;
        top: 100px !important;
        right: 95px !important;
    }

    .bodyats .schedule_wrapper {
        display: none !important;
    }


    .schedule_wrapper .shedule__call {
        display: none !important;
        bottom: 0;
    }
}

@media screen and (max-width: 670px) {

    /*  Код для смещения кнопки чтобы исправить ошибку наложения на форму калькулятора анализов */
    .shedule__call {
        right: -125%;

    }
}

@media screen and (min-width: 240px) and (max-width: 669px) {
    .shedule__call {
        right: -125%;
        top: 100px;
        display: none;
    }
}

@media screen and (min-width: 870px) {
    .schedule_wrapper {
        bottom: 140px;
    }
}