﻿/*body {
}*/

/* faq section  */
.faq-container {
    width: auto;
    height: auto;
    /*background-color: #0094ff;*/
    border-radius: 20px;
    font-size: var(--font-label);
    letter-spacing: var(--letter-spacing-loose);
}

    .faq-container h1 {
        margin: 0px;
        background-color: white;
        color: #666;
        border-radius: 20px 20px 0 0;
    }

.question {
    /*font-weight: bolder;*/
    cursor: pointer;
    padding: 10px;
    margin: 20px 20px 0px 20px;
    color: #333;
    background-color: #f0f0f0;
    border-radius: 5px;
}

.answer {
    margin: 0px 20px 0px 20px;
    padding: 4px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    /*font-size: x-large;*/
}