/* ---------------
** Contents
** - Setup
** - Utilities
** - Custom
** - Media Querires
--------------- */
@charset 'utf-8';
* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 22px;
    margin:0;
    color: #7d7d7d;
    position: relative;
    padding-bottom: 123px;
    min-height: 100vh;
}
form, input, button, label { font-family: Arial, sans-serif; }
a, span { display: inline-block; }
img { max-width: 100%; width: auto; height: auto; }
p { margin:0; margin-bottom: 20px; }
ul, li, form, input, button { margin: 0; padding: 0; border:0; outline: none; }

/*
** Utilities
*/
.text-center { text-align: center; }
.text-right { text-align: right; }
.lightaqua { color:#69d6c8; }
.mandy { color: #df4f6e; }
.lightaqua__bg { background-color:#69d6c8; }
.mandy__bg { background-color: #df4f6e; }
.grey__bg { background-color: rgb(162,162,162); }
b, strong, .bold { font-weight: bold; }
.row { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap }
.flex-col { -webkit-box-orient: vertical;-webkit-box-direction: normal;-webkit-flex-direction: column;-ms-flex-direction: column;flex-direction: column; }
.row > *:only-child { width: 100%; max-width: 100%; }
.align-center { -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; }
.justify-center { -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; }
.justify-between { -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; }
.uppercase { text-transform: uppercase; }

/*
** Layout
*/
.container {
    padding-left: 68px;
    padding-right: 68px;
}

/*
** Header
*/
.head__logo {
    background-image: url(../images/header-background-image.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    display: flex;
    align-items: center;
    position: relative;
    height: 160px;
    padding-top: 15px;
    padding-bottom: 45px;
}

.head__logo:before {
    content: "";
    background: #df4f6e;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
}

.head__text {
    font-size: 24px;
    line-height: 30px;
    margin-top: 10px;
}

/*
** Content - Main
*/
.main__title {
    font-size: 32px;
    line-height: 44px;
    /**/
    margin-bottom: 2vh;
}

.welcome__title {
    font-size: 38px;
    line-height: 43px;
    padding-top: 15px;
}

.main__middle {
    /* min-height: calc(100vh - 387px); */
    min-height: -webkit-calc(98vh - 387px);
    min-height: calc(98vh - 387px);
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    -webkit-align-content: center; 
    -ms-flex-line-pack: center; 
    align-content: center; 
}

.ques_participant .main__middle, .welcome_participant .main__middle { min-height: -webkit-calc(100vh - 283px); min-height: calc(100vh - 283px); }

.quiz__question {  max-width: 992px; margin:0 auto; }

.main__middle-content h2 {
    font-size: 46px;
    line-height: 52px;
    max-width: 100%;
    margin: 0 auto;
}

.quiz__elems { margin-top: 60px; }

.quiz__seperator {
    border: 0;
    margin: 40px 0 0;
    height: 1px;
    background-color: #dedede;
}

.quiz__elems .input__group {
    min-width: 50%;
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    position: relative;
}

.welcome__sigin .input__group {
    position: relative;
    margin: 0 0 20px;
}

.welcome__sigin .validate__msg {
    display: block;
    text-align: left;
    padding-top: 8px;
    left: 2px;
    position: relative;
    font-size: 16px;
}

.welcome__sigin .error {
    display: block;
    text-align: left;
    padding-top: 8px;
    left: 2px;
    position: relative;
    font-size: 16px;
    color: #df4f6e;
}

.welcome__sigin .validate__error { color: #df4f6e; }

.welcome__sigin .validate__success { color: #69d6c8; }

.quiz__elems .input__group input[type="radio"] { display: none; }

.quiz__elems .input__group label {
    -webkit-border-radius: 22px;
    border-radius: 22px;
    padding: 18px 25px;
    color: #ffffff;
    margin:8px auto;
    width: 90%;
    max-width: 100%;
    cursor: pointer;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.quiz__elems .input__group input:checked + label {
    background-color: #df4f6e;
    -webkit-box-shadow: 0px 0px 14px 1px rgba(0,0,0,0.7); 
    box-shadow: 0px 0px 14px 1px rgba(0,0,0,0.7);
}

.quiz__elems .input__group label > * { vertical-align: middle; }

.input__label-opt { 
    font-size: 26px;
    line-height: 34px;
}

.input__label-text {
    font-size: 20px;
    line-height: 30px;
    padding-left: 30px;
}

.quiz__actions .input__submit {
    min-width: 200px;
    font-size: 24px;
    line-height: 30px;
    color: #ffffff;
    -webkit-border-radius: 22px;
    border-radius: 22px;
    padding: 20px 36px;
    margin-top: 40px;
    cursor: pointer;
    text-decoration: none;
}

.quiz__results { text-align: center; margin-top: 32px; }

.quiz__results img, .quiz__results canvas, .quiz__results svg { max-width: 100%; max-height: 340px; width: auto; }

.welocme__action-begin {
    font-size: 30px;
    line-height: 36px;
    color: #ffffff;
    margin-top: 24px;
    padding: 22px 15px;
    min-width: 250px;
    -webkit-border-radius: 22px;
    border-radius: 22px;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.4); 
    box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.4);
}

.welcome__sigin form { max-width: 300px; margin: 50px auto 0; }
.welcome__sigin form .sigin__input { width: 100%; max-width: 100%; margin-bottom: 0; }
.sigin__input {
    font-size: 16px;
    line-height: 22px;
    color: #7d7d7d;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 12px 15px;
    margin: 0 0 20px;
    -webkit-appearance: none;
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2); 
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.2);
}
.sigin__input::-webkit-input-placeholder {
    color: #b1b0b0;
}
.sigin__input::-moz-placeholder {
    color: #b1b0b0;
}
.sigin__input:-ms-input-placeholder {
    color: #b1b0b0;
}
.sigin__input:-moz-placeholder {
    color: #b1b0b0;
}

.welcome__sigin .welocme__action-begin {
    font-size: 24px;
    line-height: 30px;
    width: auto;
    padding: 12px 15px;
    min-width: 170px;
}

/*
** Footer
*/
footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
}
.footer__text { font-size: 12px; line-height: 18px; max-width: 442px; }
.footer__text p { margin-bottom: 0; }
footer img { vertical-align: top; }

/*
** Media Queries
*/

/*Screen Heights*/
@media only screen and (max-height: 852px) {
    .quiz__elems { margin-top: 24px; }
    .quiz__elems .input__group label { padding: 14px 25px; }
}

@media only screen and (max-height: 640px) {
    footer { padding-bottom: 20px; }
}

/*Screen Widths | Heights*/
@media only screen and (max-height: 852px) and (max-width: 1280px) {
    .quiz__question { max-width: 865px; }
    .quiz__elems .input__group label { padding: 16px 22px; }
    .quiz__actions .input__submit { padding: 16px 36px; }
}

@media only screen and (max-width: 1280px) {
    .head__logo { height: auto; min-height: 154px; padding-top: 15px; padding-bottom: 38px; }
    .main__middle { min-height: -webkit-calc(100vh - 381px); min-height: calc(100vh - 381px); }
    .main__middle-content h2 { width: 900px; max-width: 100%; font-size: 40px; line-height: 46px; }
    .quiz__elems .input__group label { padding: 12px 22px; }
    footer img { vertical-align: unset; }
}

@media only screen and (max-width: 1279px) {
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 277px); min-height: calc(100vh - 277px); }
    .welcome_participant .main__middle { min-height: -webkit-calc(100vh - 257px); min-height: calc(100vh - 257px); }
}

@media only screen and (max-width: 1199px) {
    .quiz__elems .input__group label { padding: 9px 22px; }
    .head__logo { min-height: 128px; padding-top: 18px; }
    .quiz__question { max-width: 768px; }
    .quiz__actions .input__submit { padding: 12px 36px; margin-top: 32px; }
    .main__title { font-size: 28px; line-height: 36px; }
    .head__text { font-size: 20px; line-height: 26px; }
    .main__middle-content h2 { font-size: 36px; line-height: 40px; }
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 251px); min-height: calc(100vh - 251px); }
    .welcome__title { font-size: 34px; line-height: 39px; }
    .welocme__action-begin { font-size: 26px; line-height: 32px; padding: 19px 15px; min-width: 238px; }
    .quiz__seperator { margin: 30px 0 0; }
}

@media only screen and (max-width: 1024px) {
    .quiz__elems { margin-top: 42px; }
    .container { padding-left: 58px; padding-right: 58px; }
}

@media only screen and (max-width: 991px) {
    .container { padding-left: 38px; padding-right: 38px; }
    .head__logo { min-height: 118px; }
    .head__logo:before { height: 75%; }
    .main__middle-content h2 { font-size: 34px; }
    .quiz__elems { margin-top: 36px; }
    .main__middle { min-height: -webkit-calc(100vh - 297px); min-height: calc(100vh - 297px); }
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 241px); min-height: calc(100vh - 241px); }
    .welocme__action-begin { padding: 16px 15px; min-width: 226px; margin-top: 18px; }
    .welcome_participant .main__middle { min-height: -webkit-calc(100vh - 247px); min-height: calc(100vh - 247px); }
}

@media only screen and (max-width: 767px) {
    .head__logo { min-height: 110px; padding-top:10px; padding-bottom: 18px; }
    .head__logo img { width: 170px; }
    .head__logo:before { height: 70%; }
    .main__middle { min-height: -webkit-calc(100vh - 289px); min-height: calc(100vh - 289px); }
    .main__title { font-size: 26px; line-height: 32px; }
    footer { padding-bottom: 20px; }
    .footer__text { max-width: 334px; }
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 233px); min-height: calc(100vh - 233px); }
    .ques_participant .main__title { margin-top: 20px; }
    .welcome__title { font-size: 30px; line-height: 36px; }
    .welocme__action-begin { padding: 14px 15px; min-width: 202px; }
    .welcome__title { padding-top: 34px; }
    .welcome__sigin form { margin: 30px auto 0; }
}

@media only screen and (max-width: 639px) {
    body { padding-bottom: 0; }
    .container { padding-left: 25px; padding-right: 25px; }
    .head__logo { min-height: 86px; }
    .head__logo:before { height: 72%; }
    .head__logo img { width: 150px; }
    .head__text { font-size: 16px; line-height: 22px; }
    .main__middle { min-height: -webkit-calc(100vh - 313px); min-height: calc(100vh - 313px); }
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 261px); min-height: calc(100vh - 261px); }
    .main__middle-content h2 { font-size: 30px; line-height: 36px; }
    .main__title { font-size: 24px; line-height: 30px; }
    .quiz__elems .input__group label { padding: 6px 22px; }
    .quiz__actions .input__submit { padding: 9px 30px; margin-top: 48px; }
    .footer__text { max-width: 100%; margin-bottom: 20px; }
    footer a { display: block; width: 100%; }
    footer {text-align: center; position: static; }
    .ques_participant .quiz__actions .input__submit { margin-bottom: 15px; }
    .main__middle .welcome__title { font-size: 28px; line-height: 34px; }
    .welocme__action-begin { padding: 12px 15px; min-width: 194px; -webkit-box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.2); box-shadow: 0px 0px 20px 1px rgba(0,0,0,0.2); }
    .welcome_participant .main__middle { min-height: -webkit-calc(100vh - 261px); min-height: calc(100vh - 261px); }
    .main__middle { padding-bottom: 30px; }
}

@media only screen and (max-width: 459px) {
    .head__logo:before { height: 80%; }
    .container { padding-left: 15px; padding-right: 15px; }
    .head__logo { padding-bottom: 14px; }
    .head__logo img { width: 124px; }
    .main__title { font-size: 22px; line-height: 28px; }
    /* .main__middle { min-height: -webkit-calc(100vh - 311px); min-height: calc(100vh - 311px); } */
    .main__middle { min-height: -webkit-calc(100vh - 311px); min-height: calc(100vh - 331px); }
    .ques_participant .main__middle { min-height: -webkit-calc(100vh - 279px); min-height: calc(100vh - 279px); }
    .main__middle-content h2 { font-size: 28px; line-height: 34px; }
    .quiz__elems { margin-top: 26px; }
    .quiz__elems .input__group {min-width: 100%; }
    .quiz__elems .input__group label { padding: 5px 22px; }
    .quiz__actions .input__submit { font-size: 18px; line-height: 24px; margin-top: 26px; }
    .welcome_participant .main__middle { min-height: -webkit-calc(100vh - 279px); min-height: calc(100vh - 279px); }
    .quiz__seperator { margin: 30px 0 0; }
}

.disp_ans_error {
    display: block;
    text-align: center;
    padding-top: 8px;
    left: 2px;
    position: relative;
    font-size: 16px;
    color: #df4f6e;
}