* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: url(../../CssLib/JSA/images/bg-pattern.png);
}

.container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    text-align: center;
}

.full-width {
    width: 100vw;
    max-width: 1920px;
    margin: -5px auto;
}

.banner {
    min-height: 200px;
    background-size: cover;
}

.faq-title {
    height: 60px;
    text-align: center;
    padding: 10px;
    font-size: 2em;
    font-weight: bold;
}

.faq-content, .faq-title {
    text-align: center;
    margin:0 auto;
}

.topics, .more-help {
    margin: 5px auto;
}

.topics , #details{
    max-width: 1200px;
}

.topic {
    display: inline-block;
    width: 80%;
    max-width: 280px;
    height: 200px;
    margin: 20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 10px;
    cursor: pointer;
    transition-duration: 800ms;
    transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.topic:hover {
    transform: scale(1.1);
}

.selected-topic {
    transform: scale(1.15);
    cursor: default;
}

#details{
    display: none;
    font-size: 1.25em;
    margin: 10px auto; 
    padding: 10px;
    height: 100%;
    min-height: 100px;
    max-height: 660px;
    overflow-y: scroll;
    border: 1px solid lightgray;
    border-radius: 5px;
    background-color: ghostwhite;
    border-radius: 10px;
}

.inline30 {
    width: 29%;
    max-width: 230px;
    display: inline-block;
    vertical-align: top;
}

.stacked-button{
    width: 90%;
    height: 100px;
    border-radius: 0;
    margin: 4px;
}

.inline70{
    width: 69%;
    max-width: 900px;
    display: inline-block;
    vertical-align: top;    
}

.more-help {
    padding-bottom: 10px; 
}

.more-help h3{
    font-size : 1.5em;
    line-height: 2em;
}

.description {
    font-size: 1.5em;
    display: block;
    margin: 20px auto;
}

.btn-contactsupport {
    border-radius: 5px;
    max-width: 375px;
    margin: 10px auto;
    cursor: pointer;
}

.btn-contactsupport img {
    display: block;
    max-width: 100%;
}

.loading-bg {
    display: none;
    background-color: rgba(64,64,64, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*
//// FAQ DATA /////
*/
.sc-title{
    text-transform: uppercase;
    text-align: center;
    font-size: 1.25em;
    background-color: rgba(212,212,212,0.5);
}

.faq_question{
    font-weight: bolder;
    text-align: left;
    margin-top: 15px;
    padding: 0 15px;
    color: gray;
    cursor: pointer;
}

.faq_question::before
{
    display: inline;
    content: "\2B24";
    margin-right: 10px;
    word-break: break-word;
}

.faq_question::after{
    content: " + ";
    float: right;
}

.faq_question.selected::after{
    content: " - ";
}

.faq_question.selected{
    cursor: default;
    color: black;
}

.faq_answer {
    text-align: left;
    padding: 0 15px;
    word-break: break-word;
}

.faq_answer li{
    margin-left: 5%;
    margin-bottom: 5px;
    list-style: none;
}

.faq_answer + hr {
    margin-top: 10px;
}
.faq_answer + hr:last-of-type {
    display: none;
}

.hide {
    display: none;
}

@media screen and (max-width : 480px) {

    .banner{      
        background-size: cover;
        min-height: 58px;
    }

    .topic {     
        width: 100%;
        max-width: 300px;
        height: 110px;
        margin: 5px;
    }

    .more-help h3 {
        font-size: 1em;
    }

    .description {    
        display: none;
    }
}