
.bottom-popup {
    position: fixed;
    z-index: 20;
    left: 8px;
    bottom: 8px;
    right: 8px;
    display: none;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0px 0 11px -2px #919191;
    border-radius: 6px;
    animation: fade-drop-filter 0.3s ease forwards;
    max-width: 710px;
    margin: 0 auto;
    min-width: 304px;
}

.bottom-popup__icons {
    padding-right: 18px;
}

.bottom-popup__icons svg {
    width: 50px;
}

.bottom-popup__wrp {
    padding: 13px 14px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 6px 6px 6px 6px;
    width: 100%;
}

.bottom-popup__title {
    font-size: 24px;
    line-height: 28px;
}

.bottom-popup__desktop {
    display: none;
}

.bottom-popup__desc {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    text-align: left;
}

.bottom-popup__desc a {
    white-space: nowrap;
    font-weight: 700;
}

.bottom-popup__desc span {
    font-weight: bold;
}

.bottom-popup__btn {
    margin-left: auto;
}

.bottom-popup__btn button {
    white-space: nowrap;
}

.bottom-popup.open {
    transform: translateY(0);
    display: flex;
}

.bottom-popup.open.hide-fade {
    opacity: 0 !important;
    animation: none;
}

.bottom-popup__main {
    padding-right: 24px;
    margin-right: auto;
    align-items: center;
}

.bottom-popup__desc a {
    color: #7B61FF;
    font-style: normal;
}

.bottom-popup__desc a:hover {
    text-decoration: underline;
}