.features-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
}
.features-popup--show {
    opacity: 1;
    pointer-events: all;
}
.features-popup--hide {
    opacity: 0;
    pointer-events: none;
}

.features-popup__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #00000055;
    z-index: 510;
}

.features-popup__content {
    position: relative;
    z-index: 520;
    width: 90%;
    max-width: 1400px;
    max-height: 80vh;
    border-radius: 8px;
    border: 2px solid #fafafa;
    background: #000000cc;
    padding: 70px;
    /* box-sizing: content-box !important; */
}
.features-popup__content p,
.features-popup__content .panel-title span {
    font-size: 1.2em;
}

.features-popup__content__container {
    height: 100%;
    overflow-y: auto;
    max-width: 100% !important;
}

.features-popup__content__close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1em;
    font-weight: bold;
    cursor: pointer;
    filter: invert(1);
    height: 20px;
    width: 20px;
}

@media screen and (max-width: 767px) {
    .features-popup__content {
        padding: 40px 20px;
    }
}