/* Copyright (C) nebla Ltd. 2017 */

#faq {
    width: 100%;
    padding-bottom: 50px;
    
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f2f7fa+0,f6fafc+18,f9fcfe+100 */
    background: #f2f7fa; /* Old browsers */
    background: -moz-linear-gradient(top, #f2f7fa 0%, #f6fafc 18%, #f9fcfe 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f2f7fa 0%,#f6fafc 18%,#f9fcfe 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f2f7fa 0%,#f6fafc 18%,#f9fcfe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f7fa', endColorstr='#f9fcfe',GradientType=0 ); /* IE6-9 */
}

#questions {
    margin-top: 40px;
}

.faq-container h1 {
    padding-top: 40px;
    text-align: center;
    color: #31607c;
    font-size: 28px;
}

.faq-container h2 {
    margin-top: 20px;
    text-align: center;
    color: #829daf;
    font-size: 16px;
}

.question {
    margin: 0 auto;
    margin-top: 10px;
    width: 800px;
    padding-top: 26px;
    padding-bottom: 26px;
    padding-left: 12px;
    padding-right: 30px;
    background-color: #FFFFFF;
    cursor: pointer;
}

.question h3 {
    margin-top: 5px;
    float: left;
    font-size: 16px;
    color: #829daf;
}

.question h4 {
    position: absolute;
    right: -10px;
    margin-top: 6px;
    float: right;
    font-size: 16px;
    color: #3dafe5;
}

.a1, .a2, .a3, .a4, .a5, .a6 {
    cursor: default;
    display: none;
}

.a1 h3, .a2 h3, .a3 h3, .a4 h3, .a5 h3, .a6 h3 {
    color: #aab4bb;
    line-height: 20px;
}

.visible {
    display: grid !important;
}

/*---------- Mobile ----------*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    .question {
        width: 600px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .question {
        width: 100%;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    #faq {
        padding-bottom: 40px;
    }
    
    #questions {
        margin-top: 30px;
    }
    
    .faq-container h1 {
        padding-top: 30px;
        font-size: 20px;
    }

    .faq-container h2 {
        font-size: 13px;
        line-height: 20px;
    }
    
    .question {
        margin-top: 10px;
        padding-top: 15px;
        padding-bottom: 13px;
        padding-left: 5px;
        padding-right: 26px;
    }

    .question h3 {
        margin-top: 5px;
        font-size: 13px;
        line-height: 19px;
    }

    .question h4 {
        right: -10px;
        margin-top: 6px;
        font-size: 13px;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
}

/* Copyright (C) nebla Ltd. 2017 */