.faq-overlay-wrapper {
    position: fixed;
    top: 50px;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(16,17,25, .6);
    /* display: flex; */
    display: none;
    justify-content: center;
    padding: 23px 20px 10px 20px;
}

.faq-arrow {
    position: fixed;
    top: 50px;
    right: 290px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid #09090E;
    z-index: 999999;
}

.faq-overlay {
    background-color: #09090E;
    height: fit-content;
    border-radius: 11px;
    box-shadow: 0px 2px 10px 10px rgba(0,0,0,0.18);
    position: fixed;
    right: 101px;
    padding: 25px;
    font-family: "montserrat";
    font-size: 14px;
    color: #ffffff;
    display: block;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 999999;
    top: 75px;
    display: none;
}

.faq-arrow.show, .faq-overlay.show {
    display: block;
}

.faq-overlay:hover {
    display: block;
}

.faq-overlay .faq-title {
    font-size: 21px;
    margin-bottom: 19px;
}

.faq-overlay .faq-subtitle {
    margin-bottom: 19px;
}

.faq-overlay .article-ct {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    width: 100%;
}

.faq-overlay .article-ct img {
    height: 65px;
    width: 109px;
    background-color: #D8D8D8;
    margin-right: 13px;
}

.faq-overlay .article-ct a {
    color: #2DDB73;
    line-height: 1.57;
    text-align: left;
}

.faq-overlay .got-it-btn {
    color: #000000;
    font-size: 18px;
    font-family: 'proxima-nova';
    font-weight: bold;
    padding: 8px 31px;
    height: 48px;
    background-color: #2DDB73;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 10px;
}

.faq-overlay .plenty-paragraph {
    margin-bottom: 5px;
}

.faq-overlay .tour-paragraph {
    margin-bottom: 40px;
}

.faq-overlay .tour-paragraph a {
    color: #2DDB73;
    text-decoration: none;
}

@media (max-width: 500px) {
    .faq-overlay {
        display: none!important;
    }

    .faq-arrow {
        display: none!important;
    }
}