.popup-banner {
    position: fixed;
    width: 302px;
    background: #fff;
    border: 1px solid rgb(204, 204, 204);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    right: 0;
    z-index: 1000;
}
.popup-banner.limited-flash-deal, .popup-banner.find-investors-with-pro {
    bottom: 0;
    right: 44px;
    -webkit-transform: translateY(102%);
    -ms-transform: translateY(102%);
    transform: translateY(102%);
    -webkit-transition: -webkit-transform 0.5s ease-in;
    transition: -webkit-transform 0.5s ease-in;
    transition: transform 0.5s ease-in;
    transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
}

@media (max-width: 576px) {
    .popup-banner.limited-flash-deal, .popup-banner.find-investors-with-pro {
        width: calc(100% - 32px);
        bottom: 40px;
        right: 40px;
        -webkit-transform: translateY(102%);
        -ms-transform: translateY(102%);
        transform: translateY(102%);
    }
}
.popup-banner.limited-flash-deal.active, .popup-banner.find-investors-with-pro.active {
    right: 44px;
    bottom: 44px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
@media (max-width: 991px) {
    .popup-banner.limited-flash-deal, .popup-banner.find-investors-with-pro,
    .popup-banner.limited-flash-deal.active, .popup-banner.find-investors-with-pro.active {
        right: 16px;
        bottom: 16px;
    }
}
.popup-banner__close {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 12px;
    right: 12px;
    background: url("../img/btn__close.svg") no-repeat;
    cursor: pointer;
}
.popup-banner__content {
    padding: 16px;
}
.popup-banner__title {
    font-size: 16px;
    line-height: 120%;
    font-weight: 600;
    margin-bottom: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.popup-banner__title-icon {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    background: rgb(236, 246, 255);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.popup-banner__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}
.popup-banner__text p {
    font-size: 12px;
    line-height: 150%;
    color: rgb(106, 106, 106);
    margin-bottom: 0;
}
.popup-banner__btn {
    font-size: 14px;
}
.popup-banner__counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 5px;
    margin-bottom: 8px;
}
.popup-banner__counter-item {
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid rgb(245, 245, 245);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}
.popup-banner__counter-item:last-child {
    border-right: none;
}
.popup-banner__counter-value {
    font-weight: 600;
    line-height: 120%;
}
.popup-banner__counter-text {
    font-weight: 600;
    line-height: 120%;
    font-size: 12px;
}

.copy-code {
    padding: 12px;
    background: rgb(236, 246, 255);
    border-radius: 8px;
    border: 1px dashed rgb(24, 116, 193);
    color: rgb(24, 116, 193);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 120%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}
.copy-code:after {
    content: "";
    width: 16px;
    height: 16px;
    display: block;
    background: url("../img/icon__copy.svg") no-repeat;
}
