.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    font-family: "Open Sans", sans-serif;
}

.faq {
    width: 100%;
}

.faq-search-box {
    width: 100%;
    display: flex;
    /* height: 80px; */
    justify-content: center;
    align-items: center;
    position: relative;
}

.faq-search-box input {
    width: 100%;
    height: 83px;
    font-size: 20px;
    background-color: #ffffff00 !important;
    display: block;
    padding: 0px;
    margin-bottom: 40px;
    color: #333333 !important;

    padding: 10px !important;
    
    padding-left: 20px !important;
    border: 1.5px solid #d8a3cd !important;
    border-radius: 18px !important;

}

.faq-search-box input:not([value=""]) + img{
    opacity: 0;
}

.faq-search-box input::-webkit-input-placeholder {
    color: #515151 !important;
    font-weight: 700 !important;
}

.faq-search-box input::-moz-placeholder {
    color: #515151 !important;
    font-weight: 700 !important;
}

.faq-search-box input:-ms-input-placeholder {
    color: #515151 !important;
    font-weight: 700 !important;
}

.faq-search-box input:focus {
    /*outline: thin dotted;*/
    outline: none !important;
    font-weight: 700;
}

.faq-search-box img {
    width: 30px;
    position: absolute;
    right: 2%;
    top: 20%;

    transition: opacity 0.1s linear;
}

.faq-content {
    display: none;
}
.faq-box {

    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    
    align-items: center;
    
    min-height: 83px; 

    cursor: pointer;


    border-radius: 18px;

    background-color: #fff;
    box-shadow: 0px 4px 60px #F8EBEC;

    /* border: 1.5px solid #d8a3cd; */

    position: relative;

    z-index: 0;
}

.faq-box .faq-plus{
    width: 20%;

    display: flex;
    justify-content: flex-end;
}

.faq-box .faq-plus img{
    width: 100%;
    max-width: 20px;
}

.faq-box h2 {
    width: 80%;
    color: #333333 !important;
    -webkit-text-fill-color: initial !important;
    -webkit-text-stroke-width: initial !important;
    -webkit-text-stroke-color: initial !important;

    font-family: "Open Sans", sans-serif !important;
    font-size: 20px;
    font-weight: 700 !important;
    margin: 0 !important;
}

.faq-box p {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #8a9eb5;
    
    margin-top: 25px;
    margin-bottom: 0px !important;
}

.faq-plus {
    float: right;
}
.faq-heading,
.faq-plus {
    display: inline-block;
}

.footer-faq{
    color: #a1bdcb;
    margin-top: 40px;
}

.footer-faq a{
    font-weight: bold;
    text-decoration: none;
    color: #d088b1;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    fill: var(--e-global-color-5c24791);
    color: var(--e-global-color-5c24791);
    background-color: #d088b100;
    border-style: solid;
    border-width: 1.5px 1.5px 1.5px 1.5px;
    border-color: var(--e-global-color-5c24791);
    border-radius: 27px 27px 27px 27px;

    margin-top: 5px;
}

.footer-faq a .elementor-button-text {
    color: #333333;
}

.not-found{
    display: none;
    flex-direction: column;
}

.not-found p {
    color: #333333;
}

.not-found .buttons-footer-container {
    margin-top: 20px;
    margin-bottom: 20px;

    display: flex;
    width: 100%;
    max-width: 600px;
    justify-content: space-between;
    align-items: center;
}

.not-found .buttons-footer-container a:first-child {
    width: 300px;
    height: 55px;
    padding: 12px 24px;
    border: 1.5px solid;
    border-radius: 27px;

    display: flex;
    justify-content: center;
}

.not-found .buttons-footer-container a:first-child span{
    color: #333333;

    font-family: 'Graphit', sans-serif;
    font-weight: 700;
    font-size: 14px;

    line-height: 0;
    display: flex;
    align-items: center;
}

.not-found .buttons-footer-container a:last-child{
    display: flex;
    align-items: center;
}

.not-found .buttons-footer-container a:last-child .icon-container{
    margin-left: 5px;
}




@media (max-width: 767px){
    .faq-search-box input{
        font-size: 18px;
    }

    .faq-search-box input + img{
        opacity: .7;
        z-index: -1;
    }

    .faq-search-box input:focus +img{
        opacity: 0;
    }

    .faq-box {
        padding: 15px;
    }

    .faq-box h2{
        font-size: 18px;
    }

    .faq-box p{
        font-size: 16px;
    }
    
    .not-found{
        flex-wrap: wrap;
    }
    
    .not-found .buttons-footer-container{
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .not-found .buttons-footer-container a:last-child{
        margin-top: 20px;
    }


}