.topBtn {
    display: none;
    position: fixed;
    bottom: 35px; 
    left: 5%; 
    z-index: 999;
    /* цвет кнопки вверх */
    background: #000; 
    /* цвет стрелки кнопки вверх */
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

.topBtn__svg {
    display: flex;
    fill: #f5f5f7;
    height: 100%;
    width: 100%;
    font-size: 14px;
}

.vb-widgets {
    display: flex;
    gap: 10px;
    position: fixed;
    bottom: 35px; 
    right: 5%; 
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.vb-widget {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    /* цвет фона виджетов */
    background-color: #2d72bb;
    width: 56px;
    height: 56px;
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(33, 37, 41, .18);
    cursor: pointer;
}

.vb-widget__desctop {
    display: none;
    width: 225px;
    flex-direction: row;
    /* gap: 20px; */
    justify-content: space-around;
}

.vb-widget__text {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 550;
    line-height: 14px;
    min-width: fit-content;
    white-space: nowrap;
    align-items: center;
    width: 100%;
}

.vb-widget__text_left {
    align-items: start;
}

.vb-widget__text.vb-widget__text_left {
    width: unset;
    padding: 0 9px;
}

.vb-widget__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
    fill: rgb(0, 0, 0);
}

.vb-widget__ico_desctop {
    width: 40px;
}

.vb-widget__ico img {
    display: flex;
    height: 40px;
    width: 40px;
    fill: rgb(0, 0, 0);
}

.vb-widget__ico svg {
    display: flex;
    height: 20px;
    width: 20px;
    fill: #fff;
}

.vb-recallPopup {
    /* display: flex; */
    /* height: 400px; */
    /* border: 2px solid #ea8181; */
    display: none;
    flex-direction: column;
    min-width: 300px;;
    background-color: rgb(255, 255, 255);
    position: absolute ;
    bottom: 125px;
    right: 0px;
    border-radius: 12px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
    z-index: 999;
    opacity: 0 ;
    transform: scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.vb-recallPopup-head {
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: #2d72bb;
    padding: 15px;
    justify-content: space-between;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .1)
}

.vb-recallPopup-head-wrap {
    display: flex;
    align-items: center;
}

.vb-recallPopup-head svg {
    height: 20px;
    margin-right: 10px;
    fill: #fff;
}

.vb-recallPopup__topTitle {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.vb-recallPopup__cloce-btn {
    display: flex;
    height: 20px;
    cursor: pointer;
}

.vb-recallPopup-wrap {
    padding: 20px 30px 5px 30px;
}

.vb-recallPopup-titles {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.vb-recallPopup-titles__title {
    color: black;
    font-size: 17px;
    font-weight: 600;
    line-height: 19px;
}

.vb-recallPopupt-titles__subtitle {
    color: #7a7a7f;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}

.vb-recallPopup__form {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vb-recallPopup__form-input {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: unset;
    background: #f5f5f7;
    border-top: 1px solid #dfe0e2;
    font-size: 14px;
    padding: 8px 0 8px 10px;
    color: #000;
}

.vb-recallPopup__form-label {
    color: #e1e1e3;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.vb-recallPopup__form-btn {
    border: unset;
    border-radius: 8px;
    background: #2d72bb;
    box-shadow: 0 0 4px 1px rgba(0, 0, 0, .1);
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    margin-top: 15px;
    padding: 14px 35px;
    text-align: center;
}

.vb-recallPopup__bottom-img {
    margin-top: 25px;
}


@media (min-width: 768px) {
    .vb-widget__desctop {
        display: flex;
    }

    .vb-widget__mobile {
        display: none;
    }
}



.hidden {
    display: none;
    opacity: 0;
}

.visible {
    display: flex;
    opacity: 1;
}

.shaking {
    animation: swing 1s ease-in-out;

}

.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

  .phone-icon {
    display: inline-block;
    animation: swing 1s infinite ease-in-out;
    transform-origin: top center;
  }

  button:disabled {
    opacity: 0.8;
  }
  
  @keyframes swing {
    0% {
      transform: rotate(0deg);
    }
    25% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(0deg);
    }
    75% {
      transform: rotate(-15deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }