@import url('https://fonts.googleapis.com/css2?family=Muli:wght@400;700&display=swap');


* {
    box-sizing: border-box;
}
h1 {
    margin: 50px 0 30px;
    text-align: center;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
}

.faq {
    background-color: transparent;
    border: 1px solid #9fa4a8;
    border-radius: 10px;
    margin: 20px 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq.active {
    background-color: rgb(243, 241, 245);
    box-shadow: 0 3px 6px rgba(255, 238, 238, 0.1), 0 3px 6px rgba(247, 240, 240, 0.1);
}

.faq.active::before, 
.faq.active::after {
    content: '\f075';
    font-family: "Font Awesome 5 Free";
    color: #2ecc71;
    font-size: 7rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px 0 0;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq-toggle:focus {
    outline: 0;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
    color: white;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

.faq.active .faq-toggle {
    background-color: #9fa4a8;
}
:root {
    --background-color: #fff;
    --text-color: #444c53d8;
    --link-color: #543fd7;
}
html[data-theme="light"] {
    --background-color: #efefef;
    --text-color: #121416d8;
    --text-color-lighter: #95999b;
    --link-color: #543fd7;
}
html[data-theme="dark"] {
    --background-color: #212a2e;
    --text-color: rgb(97, 125, 128);
    --text-color-lighter: #95999b;
    --link-color: #828fff;
}
body {
    background: var(--background-color);
    color: var(--text-color);
    font-family: sans-serif;
    margin: 0;
    transition: background 0.5s;
}
#container {
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 900px;
    padding: 1em;
    width: 90%;
}
button {
    display: block;
    width: 100%;
}
.btn {
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    user-select: none;
    vertical-align: middle;
}
[data-theme="dark"] .icon-show-dark,
[data-theme="light"] .icon-show-light {
    color: transparent;
    display: block !important;
}
[data-theme="dark"] .icon-show-dark:hover {
    color: #fc0;
    transition: color 0.5s;
}
[data-theme="light"] .icon-show-light:hover {
    color: #333;
    transition: color 0.5s;
}
[data-theme="dark"] .icon-show-dark > img,
[data-theme="light"] .icon-show-light > img {
    padding-right: 0.5em;
}
[data-theme="dark"] .icon-show-dark > p,
[data-theme="light"] .icon-show-light > p {
    margin: 0;
    padding: 0;
}
.icon-hide {
    display: none !important;
}

