.popup {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.3s all
    ease;
    transition: 0.3s all
    ease;
}
.popup.popup-opened {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.popup__overlay {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(26, 26, 24, 0.5);
    opacity: 0;
    -webkit-transition: 0.6s all
    ease;
    transition: 0.6s all
    ease;
}
.popup.popup-opened .popup__overlay {
    opacity: 1;
}
.popup__header {
    padding: 32px;
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 14px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
}
.popup__title {
    font-weight: 500;
    color: var(--color-gray-card-title);
    font-family: "Gotham Pro", sans-serif;
}
.popup__close {
    padding: 0;
}
.popup.popup-opened .popup__box {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.popup__box--lg {
    max-width: 540px;
}
.popup__box {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    right: 0px;
    top: 0px;
    bottom: 0;
    max-width: 520px;
    width: 100%;
    background-color: #ffffff;
    position: fixed;
    z-index: 110;
    height: 100%;
    padding-bottom: 10px;
    -webkit-transition: 0.3s all
    ease;
    transition: 0.3s all
    ease;
}
.popup-content-wrapper {
    height: calc(100% - 70px);
}
