/*Global Rules*/
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'ralewayregular', Arial, Helvetica, sans-serif;
    background-color: #f3f5f7;
    font-size: 14px;
    padding-top: 10px;
}

.dismiss-btn {
    margin: 0 0 0 auto;
    outline: none;
    border: none;
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #c9c9c9;
    border-radius: 50%;
    margin-right: 10px;
}

.dismiss-btn:before,
.dismiss-btn:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    background-color: #ffffff;
    margin-left: -5px;
    margin-top: -1px;
}

.dismiss-btn:before {
    transform: rotate(45deg);
}

.dismiss-btn:after {
    transform: rotate(-45deg);
}

/*QA Title*/
#qa-title {
    color: #015b98;
    margin-left: 10px;
    padding: 0px 5px;
    border-radius: 3px;
    font-size: 16px;
    text-align: center;
}

/*Main Container Rules*/
#container {
    margin: 40px auto 0;
    padding: 10px;
    background-color: #FFF;
    border-radius: 5px;
    color: #015b98;
}

#container > div {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/*QA Containers Rules*/
.answer {
    margin: 5px;
    padding-left: 8px;
    max-height: 0;
    overflow-y: auto;
    transition: max-height 0.5s;
}

.question-checkbox {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

/*.question-checkbox:checked ~ .answer {*/
    /*max-height: 500px;*/
/*}*/

.question-label {
    position: relative;
    display: block;
    padding: 8px;
    font-weight: bold;
    cursor: pointer;
    border-left: 2px solid #f200c1;
    border-right: 2px solid #f200c1;
    font-size: 14px;
    text-decoration: none;
    color: #015b98;
}

/*.question-label::after {*/
    /*position: absolute;*/
    /*right: -5px;*/
    /*top: 0;*/
    /*content: "\25BC";*/
    /*display: block;*/
    /*width: 30px;*/
    /*height: 30px;*/
    /*font-size: 12px;*/
    /*line-height: 30px;*/
    /*vertical-align: middle;*/
    /*text-align: center;*/
    /*transition: all 0.5s;*/
    /*color: #f200c1;*/
/*}*/

.question-checkbox:checked + .question-label::after {
    transform: rotateX(180deg);
}

/*Dialog Box Rules*/
.dialog-box {
    padding: 0 10px 10px 10px;
    height: auto;
    margin: 20px auto;
    text-align: center;
    background-color: #FFF;
    box-shadow: 0px 2px 7px 0px #e1e3e5;
    border-top: solid 1px #015b98;
    overflow: hidden;
}

.dialog-box p {
    color: #015b98;
    font-size: 12px;
}

.button {
    background-color: #FFF;
    color: #f200c1;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #f200c1;
    cursor: pointer;
    font-weight: bold;
    margin: 0 2px;
    display: inline-block;
    transition: all 0.6s;
}

.button.button-yes, .button.button-no {
    font-size: 9px;
    height: auto;
    width: 28px;
    padding: 2px;
}

.button:hover {
    background-color: #f200c1;
    color: #FFF;
    box-shadow: 0 5px 8px -4px #000;
}

.text-container {
    overflow: hidden;
}

.primary-text {
    margin: 0;
    transition: all 0.6s;
    transform: translateY(80%);
}

.secondary-text {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    transition: all 0.6s;
    transform: translateY(-200%);
}

/*FAQ and Live Chat Buttons Rules*/
#faq-container {
    padding: 40px 10px 10px 10px;
    height: auto;
    text-align: center;
    background-color: #FFF;
}

#faq-container h2 {
    text-align: center;
    color: #015b98;
    font-size: 16px;
    margin: 0;
    margin-bottom: 15px;
}

#button-faq {
    background-color: #FFF;
    color: #007dd5;
    border: 1px solid #007dd5
}

#button-faq:hover {
    background-color: #007dd5;
    color: #FFF;
}

#faq-buttons-container {
    width: 100%;
}

#faq-buttons-container .button {
    width: 30%;
    height: auto;
    padding: 4px 2px;
}