﻿.schema-faq{
    border-radius: 8px;
    padding: 30px;
    font-family: WorkSans;
    font-size: 14px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.64;
    letter-spacing: normal;
    color: #444444;
    letter-spacing: -0.9px;
    word-spacing: -0.35px;
}
.schema-faq h2{
    margin-top: 0;
    color: #ffffff;
    font-weight: 600;
    border-left-color: #8440b4;
}
.schema-faq-question{
    display: block;
    border-radius: 8px;
    background-color: #f8f8f8;
    width: 95%;
    padding: 13px 8px;
    position: relative;
    font-weight: bold;
}
.faq__dropdown-arrow.closed {
    -webkit-transform: rotate(180deg);-ms-transform: rotate(180deg);transform: rotate(180deg);
}
.schema-faq-section{
    background-color: #f8f8f8;
    border-radius: 8px;
    border: solid 1px #f8f8f8;
}
.schema-faq-section:not(:last-of-type){
    margin-bottom: 20px;
}
.schema-faq-question .sprite-arrow-up-grey{
    position: absolute;
    top:45%;
    right:-3%;
    cursor: pointer;
}
.schema-faq-answer{
    display: block;
    background-color: #f8f8f8;
    width: 100%;
    padding: 13px 8px;
    display: none;
    margin-bottom: 0;
    padding-top: 0;
    border-radius: 0 0 8px 8px;
}

@media only screen and (max-width: 992px){
    .schema-faq-answer{
        margin-top: 0;
    }
}

@media only screen and (min-width: 992px) {
    .schema-faq-section:hover .schema-faq-answer{
        background-color: #ffffff;
    }
    .schema-faq-section:hover .schema-faq-question{
        background-color: #ffffff;
    }
    .schema-faq-section:hover {
        border-radius: 8px;
        box-shadow: 0 0 6px 0 rgba(34, 34, 34, 0.2);
        border: solid 1px #00f6bb;
        background-color: #ffffff;
    }
}