﻿.faq-item-hightlight {
    width: 8px;
    height: 20px;
    background-color: #F58CBF;
    position: absolute;
    align-self: flex-start;
    margin-top: 4px;
}

.content-title .faq-item-hightlight {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.img-link {
    width: 24px;
    height: 24px;
}    

/*accordion*/
.faq-accordion-group {
    width: 25%;
    padding: 0px 32px;
}

.accordion-wrapper {
    border-radius: 36px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.accordion-header {
    box-shadow: 0 0 0px 2px #245C71;
    border-radius: 36px;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: ease 0.3s;
    color: #245C71;
    cursor: pointer;
}

.accordion-header:hover {
    background-color: #245C71;
    color: #FFFFFF;
}

.faq-item-icon {
    /*padding: 8px;*/
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E9ECEC;
    border: none;
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.accordion-body {
    height: 0;
    overflow: hidden;
    transition: ease 0.3s;
}

.accordion-body-inner {
    /*padding-top: 24px;*/
    padding:18px;
    display:flex;
    flex-direction:column;
    gap:36px;
}

.accordion-body-inner .faq-item-link {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    position: relative;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

/*faq-right-group*/
.faq-body .faq-right-group {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-right-group .content-title {
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.content-title #faq-right-title {
    margin: auto 0;
    padding-left: 16px;
    color: #41484D;
    font-size:20px;
}

.faq-copy-icon {
    padding: 8px;
    border-radius: 50%;
    background-color: #E9ECEC;
    border: none;
    cursor: pointer;
}

.content-body {
    padding: 0 32px;
}

.faq-backbtn {
    margin-left: 32px;
    margin-bottom: 1rem;
    padding: 14px 0px;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:8px;
    border: 1px solid #334973;
    border-radius: 8px;
    font-size: 20px;
    color: #334973;
    background-color: #FFFFFF;
}

.popup {
    display: none;
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #53B6B7;
    color: #FFFFFF;
    text-align: center;
    padding: 16px 32px;
    opacity: 0.8;
    border-radius: 8px;
}


@media(max-width:966px) {

    .faq-accordion-group {
        width: 100%;
        padding:0px;
    }

    .faq-body .faq-right-group {
        width: 100%;
        gap: 16px;
    }

    .faq-right-group .content-title {
        padding:24px 0px;
    }

    .faq-right-group .content-body {
        padding: 0px;
    }

    .faq-body {
        flex-direction: column;
    }

    .content-body img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain;
    }

    .content-body iframe {
        max-width: 100% !important;
        object-fit: contain;
    }

    .faq-backbtn {
        width: 50%;
        margin-left: 0;
    }
}
