.modal {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: normal;
    font-weight: 500;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background-color: var(--secondary-color);
    width: 100vw;
    height: 100vh;
    z-index: 100;

}

.modal div.modal-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    width: 90%;
    height: 100%;
    overflow-y: auto;
}

.modal img {

    width: 100%;
}

.hide {
    display: none;
}

.modal-show {
    position: fixed;
    z-index: 50;
    bottom: 2%;
    right: 2%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;

    background-color: var(--primary-color);
    color: var(--light-color);   
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    cursor: pointer;
}

.modal-show:hover {
    background-color: var(--confirm-color);
}

.modal-hide {
    cursor: pointer;
    align-self: flex-end;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;

    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 500;
    width: 5rem;
    height: 3rem;

}

.modal-hide:hover {
    background-color: var(--confirm-color);
}


#faq-selector {
    font-size: 1.8rem;
    padding: 1rem;
    border: none;
    background-color: var(--light-color);
}

section#faq-section article {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

section#faq-section article div{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

section#faq-section h3 {

    font-size: 2rem;
}

section#faq-section p {
    font-size: 1.6rem;
    line-height: 2.5rem;
    padding: 0.5rem 2rem;
    text-align: justify;
    text-justify: inter-word;  
}

section#faq-section ol {
    font-size: 1.6rem;
    line-height: 2.5rem;
    padding: 2rem 5rem;
    text-align: justify;
    text-justify: inter-word;
}

section#faq-section ol li {
    font-size: 1.6rem;
    line-height: 2.5rem;
    padding: 0.5rem 2rem;
    text-align: justify;
    text-justify: inter-word;
}