@font-face {
    font-family: Shell-Heavy;
    src: url('../fonts/ShellHeavy.ttf');
}
@font-face {
    font-family: Shell-Bold;
    src: url('../fonts/ShellBold.ttf');
}
@font-face {
    font-family: Shell-Book;
    src: url('../fonts/ShellBook.ttf');
}
@font-face {
    font-family: Shell-Medium;
    src: url('../fonts/ShellMedium.ttf');
}
.title-bold {
    font-family: Shell-Bold;
}
.title-heavy {
    font-family: Shell-Heavy;
}
.text-book{
    font-family: Shell-Book;
}
.text-medium{
    font-family: Shell-Medium;
}
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    font-size: 16px;
}
:root{
    --red:#DD1D21;
    --yellow:#FBCE07;
    --blue:#003C83;
    --gray: #EBEBEB;
    --white:#FFFFFF;
    --dark: #404040;
}
.red{
    color: var(--red);
}
.yellow{
    color: var(--yellow);
}
.blue{
    color: var(--blue);
}
.gray{
    color: var(--gray);
}
.white{
    color: var(--white);
}
.dark{
    color: var(--dark);
}
.bg-red{
    background-color: var(--red);
}
.bg-yellow{
    background-color: var(--yellow);
}
.bg-blue{
    background-color: var(--blue);
}
.bg-gray{
    background-color: var(--gray);
}
.bg-white{
    background-color: var(--white);
}
.bg-dark{
    background-color: var(--dark);
}
@media (prefers-color-scheme: light){
    :root{
        --body-bg: var(--white);
        --body-color: var(--dark);
    }
}
@media (prefers-color-scheme: dark){
    :root{
        --body-bg: var(--dark);
        --body-color: var(--white);
    }
}
a, a:hover{
    text-decoration: none;
    color: inherit;
}
h1, h2, h3, h4, h5, h6, p{
    margin: 0;
}
p, ul li{
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
}
.cst-btn{
    display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    padding: 0.9rem 1.5rem;
    font-size: 14px;
    line-height: 1.25;
    border-radius: 0;
    position: relative;
    transition: all .3s ease;
    font-family: Arial, Helvetica, sans-serif;
    width: 280px;
}
.cst-btn-primary{
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
}
.cst-btn-primary:hover {
    color: var(--red);
    background-color: var(--yellow);
    border-color: var(--yellow);
    cursor: pointer;
}
li.cst {
    list-style: none;
    position: relative;
    padding: 0 0 0 20px;
}
ul.cst li.cst::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
}
ul.cst li.cst.li-red::before {
    background: var(--red);
}
ul.cst li.cst:not(:last-child){
    margin-bottom: 0.5rem;
}
.logo-brand{
    width: 50px;
}
footer{
    padding: 5px 0;
}
/* .content-wrapper{
    min-height: calc(100vh - (184px + 29px));
} */
.slick-active.slick-current{
    width: 100vw!important;
}
ol.cst {
    list-style: none;
    counter-reset: cst-counter;
}
ol.cst li {
    /* counter-increment: cst-counter; */
    padding-left: 0px;
}
ol.cst li::before {
    color: var(--red);
    font-family: Shell-Bold;
    position: absolute;
    left: -20px;
}
#Q1 ol.cst li::before, #RQ1 ol.cst li::before {
    content: "1.";
}
#Q2 ol.cst li::before, #RQ2 ol.cst li::before {
    content: "2.";
}
#Q3 ol.cst li::before, #RQ3 ol.cst li::before  {
    content: "3.";
}
#Q4 ol.cst li::before, #RQ4 ol.cst li::before  {
    content: "4.";
}
#Q5 ol.cst li::before, #RQ5 ol.cst li::before  {
    content: "5.";
}
#Q6 ol.cst li::before, #RQ6 ol.cst li::before  {
    content: "6.";
}
#Q7 ol.cst li::before, #RQ7 ol.cst li::before  {
    content: "7.";
}
#Q8 ol.cst li::before, #RQ8 ol.cst li::before  {
    content: "8.";
}
#Q9 ol.cst li::before, #RQ9 ol.cst li::before  {
    content: "9.";
}
.form-check{
    display: flex;
    flex-direction: row;
    padding-left: 0;
}
.cst-form-check-label{
    background: var(--gray);
    padding: 10px;
    width: 100%;
    padding-left: 50px;
}
.cst-form-check-label:hover{
    cursor: pointer;
}
.cst-form-check-input{
    position: absolute;
    top: 16px;
    left: 16px;
}
.cst-form-check-label:hover{
    background: var(--yellow);
}
.active1, .active {
    background: var(--yellow);
}
.cst-form-check-input {
    position: absolute;
    margin-top: -6px;
    margin-left: -6px;
    width: 25px;
    height: 25px;
}
.cst-form-check-input[type="radio"]:before {
    position: relative;
    display: block;
    width: 25px;
    height: 25px;
    border: 5px solid var(--white);
    content: "";
}
.cst-form-check-input[type="radio"]:after {
    position: relative;
    display: block;
    left: 5px;
    top: -20px;
    width: 15px;
    height: 15px;
    border-width: 0px;
    content: "";
    background: var(--gray);
    background-repeat: no-repeat;
    background-position: center;
}
.cst-form-check-input[type="radio"]:checked:after {
    background-color: var(--dark);
    border: 1px solid var(--dark);
}
.cst-form-check-input[type="radio"]:not(:disabled):hover:after {
    background-color: var(--dark);
    border: 1px solid var(--dark);
}
.cst-form-check-input[type="radio"]:not(:disabled):hover:before {
    border-color: var(--white);
}
.wrong-answer{
    opacity: 0.6;
}
.wrong-answer:before, .response-wrong-answer:before{
    content: "\f00d";
    font-family: FontAwesome;
    color: var(--red);
}
.response-correct-answer:before{
    content: "\f00c";
    font-family: FontAwesome;
    color: var(--red);
}
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* Media Queries */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */

/* xs (landscape phones, 576px and up) */
@media (max-width: 575px) {
    header{
        height: 140px;
    }
    .main-title{
        font-size: 1.25rem;
    }
    .secondary-title{
        font-size: 1.15rem;
    }
    img.prize{
        max-width: 250px;
    }
    .content-wrapper{
        min-height: calc(100vh - (140px + 29px));
    }
}

/* sm (landscape phones, 576px and up) */
@media (min-width: 575px) {
    header{
        height: 180px;
    }
    .main-title{
        font-size: 2rem;
    }
    .secondary-title{
        font-size: 1.75rem;
    }
    .content-wrapper{
        min-height: calc(100vh - (180px + 29px));
    }
}

/* md (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* lg (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* xl (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* xxl (large desktops, 1400px and up) */
@media (min-width: 1400px) {
}