
/*--------------------------------------------------------------
# FAQ Page
--------------------------------------------------------------*/
.faq-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.faq-page__single {
    position: relative;
    display: block;
}

.faq-page__single .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--tanspot-black-rgb), .15);
    background: var(--tanspot-white);
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--tanspot-black-rgb), .15);
    background: var(--tanspot-white);
}

.faq-page__single .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--tanspot-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page__single .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    font-size: 17px;
    color: var(--tanspot-white);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--tanspot-base-rgb), 1);
}

.faq-page__single .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--tanspot-white);
    background-color: var(--tanspot-black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-page__single .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
}

.faq-page__single .faq-one-accrodion .accrodion-content p {
    margin: 0;
}

/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/