#appContactWidget .widget-container {
    position: fixed !important;
    right: 20px;
    bottom: 11%;
    width: 60px;
    height: 60px;
    opacity: 0;
    animation: test_ 1s forwards ;
    z-index: 999;
}
#appContactWidget .widget-container.visible {
    display: block !important;
    animation: visibleWidget 1s forwards ;
}
@keyframes visibleWidget {
    to {
        opacity: 1;
    }
}
#appContactWidget .widget-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    width: 60px;
    height: 60px;
    background: #78A6F3;
    border-radius: 50%;
    z-index: 1;
}
#appContactWidget .widget-btn__default  {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    z-index: 1;
}
#appContactWidget .widget-btn__default__svg {
    position: absolute;
    transition: .2s all;
    transform: scale(0);
}
#appContactWidget .widget-btn__default__svg_active {
    transform: scale(1);
}

#appContactWidget .widget-btn__icons{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #fff;
    z-index: 2;
    transition: .2s all; 
    transform: scale(0);
}

#appContactWidget .widget-btn__icons__line {
    top: 8px;
    left: 12px;
    color: #78A6F3;
    display: flex;
    height: 24px;
    transform: translate(180px, 0px);
}

#appContactWidget .widget-btn__icons__line span {
    display: inline-block;
    margin-right: 40px;
    height: 24px;
    width: 24px;
}
#appContactWidget .widget-btn__icons__line span svg {
    height: 24px;
    width: 24px;
}

#appContactWidget .pulsation {
    width: 74px;
    height: 74px;
    background-color: #78A6F3;
    border-radius: 50px;
    position: absolute;
    left: -7px;
    top: -7px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite
}
#appContactWidget .pulsation:nth-of-type(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

#appContactWidget .messangers-block {
    position: absolute;
    bottom: 70px;
    right: 0px;
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0,0,0,0.2);
    width: 400px;
    height: 455px;
    border-radius: 10px;
    transform-origin: 90% 100%;
    transform: scale(0);
    opacity: 0;
    transition: all .3s;
    z-index: 3;
}
#appContactWidget .messangers-block_active {
    transform: scale(1);
    opacity: 1;
}
#appContactWidget .messangers-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 20px;
    width: 100%; 
    height: 70px;
    border-radius: 10px 10px 0px 0px;
    background: #78A6F3;
}
#appContactWidget .messangers-block__head__text {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
#appContactWidget .messangers-block__head__exit {
    cursor: pointer;
    height: 40px;
    width: 40px;
    padding: 8px;
    background: none;
    opacity: .3;
    transition: all .15s;
}
#appContactWidget .messangers-block__head__exit:hover {
    opacity: 1;
}
#appContactWidget .messangers-block__content {
    padding-top: 12.5px;
}

#appContactWidget .messangers-block__callback {
    padding: 40px;
}

#appContactWidget .text-callback {
    color: #2A2A2A; 
    text-align: center;
    line-height: 140%;
}
#appContactWidget .text-callback__h1 {
    font-size: 20px;
    font-weight: 600;
}
#appContactWidget .text-callback__h2 {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
}

#appContactWidget .form-callback {
    margin-top: 30px;
}
#appContactWidget .form-callback__fieldBlock {
    position: relative;
    height: 70px;
}
#appContactWidget .form-callback__fieldBlock__input {
    width: 100%;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgba(42, 42, 42, 0.20);
    transition: all .15s;
}
#appContactWidget .form-callback__fieldBlock__input.error {
    transition: none;
    border-color: #F91155;
}
#appContactWidget .form-callback__fieldBlock__input.error:hover {
    border-color: #F91155;
}
#appContactWidget .form-callback__fieldBlock__messageField {
    display: none;
}
#appContactWidget .form-callback__fieldBlock__messageField.active {
    display: block;
    padding-left: 10px;
    font-size: 10px;
    color: red;
    line-height: 1;
    margin: 5px 0;
}
#appContactWidget .form-callback__fieldBlock__input:hover,
#appContactWidget .form-callback__fieldBlock__input:focus {
    outline: none;
    border-color: #F7BC58;
}
#appContactWidget .form-callback__fieldBlock__icons {
    display: flex;
    position: absolute;
    top: 13px;
    left: auto;
    right: 10px;
}
#appContactWidget .form-callback__send__btn {
    cursor: pointer;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    background: #78A6F3;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

#appContactWidget .form-callback__messageSuccess {
    width: 320px;
    height: 100px;
    color: #2A2A2A;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    padding-top: 15px;
    border: 1px solid #00AE76;
    background:#fff;
}

#appContactWidget .form-callback__messageSuccess__h1 {
    font-weight: 600;
}

#appContactWidget .form-callback__messageSuccess__h2 {
    margin-top: 8px;
    font-weight: 400;
}

#appContactWidget .linkRow {
    cursor: pointer;
    display: flex;
    padding: 7.5px 0;
    gap: 10px;
    padding-left: 20px;
    transition: all .15s;
}
#appContactWidget .linkRow:hover {
    background-color: #eeeeee;
}
#appContactWidget .linkRow__img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}
#appContactWidget .linkRow__img__svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
#appContactWidget .linkRow_text {
    color: #2A2A2A;
    padding: 5px 0 4px 0;
    font-weight: 500;
}
#appContactWidget .linkRow_text_h1 {
    font-size: 14px;
}
#appContactWidget .linkRow_text_h2 {
    font-size: 12px;
    opacity: .5;
    margin-top: 4px;
}
@media(max-width: 768px) {
    #appContactWidget .widget-container {
        right: 8px;
        bottom: 130px;
    }
    #appContactWidget .messangers-block {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 63px);
        border-radius: 0;
        transition: none;

    }
    #appContactWidget .messangers-block__head__exit {
        transition: none;
    }
    #appContactWidget .messangers-block__head {
        border-radius: 0;
    }
 }
@-webkit-keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

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

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}