#callbackBTN {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 10;
    width: 60px;
    height: 60px;
    padding: .75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 50%;
    font-size: 1.8rem;
    border: none;
    background-color: #150ba9;
    cursor: pointer;
    animation: colorPulse 5s ease-in-out infinite;
    transition: transform 0.3s ease, background-color 0.5s ease;
}
#callbackBTN:hover {
    transform: scale(1.2);
}
#callbackBTN i {
    display: inline-block;
    animation: shakePeriodic 10s ease infinite;
}
@keyframes colorPulse {
    0% { background-color: #150ba9; }
    33% { background-color: #3b2ee0; }
    66% { background-color: #0f0890; }
    100% { background-color: #150ba9; }
}
@keyframes shakePeriodic {
    0%, 90%, 100% { transform: rotate(0deg); }
    91% { transform: rotate(15deg); }
    93% { transform: rotate(-15deg); }
    95% { transform: rotate(7deg); }
    97% { transform: rotate(-7deg); }
    99% { transform: rotate(0deg); }
}

#callbackModal{
    background-color: rgba(14, 10, 109, 0.7);
    opacity: 1;
}
#callbackModal .modal-dialog{
    /*max-width: 840px;*/
}
#callbackModal .modal-dialog .modal-content{
    border-radius: 12px;
    overflow: hidden;
    border: none;
}
#callbackModal .close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 38px;
    height: 38px;
    top: 10px;
    right: 10px;
    background-color: transparent;
    opacity: 1;
    color: #2f2c72;
    font-size: 16px;
    text-align: center;
    text-decoration: none !important;
    line-height: 1;
    border: none;
}
#callbackModal .modal-body{
    display: flex;
    min-height: 370px;
    padding: 0;
}

#callbackModal .callbackLayer{
    display: flex;
    width: 100%;
}

.form-callback{
    display: flex;
    flex-direction: column;
    /*width: calc(100% - 310px);*/
    width: 100%;
    height: 100%;
    padding: 20px 30px 30px;
}
#caption-callback{
    color: #0e0a6d;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0 auto 30px auto;
    /*max-width: 280px;*/
    line-height: 1.2;
}
#caption-callback strong{
    font-size: 20px;
}

#sidebar-callback{
    display: none;
    width: 310px;
    background: linear-gradient(112deg,#120d8b 0,#0e0a6d 100%);
    padding: 19px 29px 45px 29px;
    flex-direction: column;
    justify-content: center;
}

#callback-win{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: linear-gradient(180deg,#120d8b 0,#0c0962 100%);
    color: #fff;
}
#callback-win .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    background-color: #ff6638;
    box-shadow: 0px 0px 20px 1px rgb(9, 6, 75);
    border-radius: 50%;
}
#callback-win .icon i{
    font-size: 50px;
}
#callback-win h4{
    font-size: 22px;
    margin-bottom: 10px;
}
