@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

*, body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    height: 100%;
    background-color: #081c34;
    color: white;
}

#wrapper {
    width: 50rem;
    max-width: 100%;
    margin: 2em auto 2em auto;
    display: flex;
}
#wrapper.exclude-sidebar {
    width: 40rem;
}
#wrapper.exclude-sidebar #sidebar {
    display: none;
}
#sidebar {
    background: white;
    color: #081c34;
    width: 10rem;
    border-radius: 20px 0px 0px 20px;
    padding: 20px;
}
#sidebar a,
#sidebar a:focus,
#sidebar a:link,
#sidebar a:hover {
    color: #081c34 !important;
    line-height: 1rem;
    font-size: 0.8rem;
}
#sidebar a {
    padding-left: 5px;
    text-decoration: none;
    display: block;
    border-radius: 10px;
    margin: 1px 0px;
    padding: 2px 8px;
    border-collapse: collapse;
    white-space: nowrap;
}
#sidebar a:hover,
#sidebar .exercise-active a {
    background-color: #FECCA0;
}
.sidebar-exercise span {
    width: 1rem;
    text-align: right;
    padding-right: 0.5rem;
}
.sidebar-exercise.exercise-answered span:before {
    content: '\25CF'
}
.sidebar-exercise.exercise-blank span:before {
    content: '\25CB'
}
#logo-wrapper {
    text-align: center;
    padding-bottom: 10px;
}
#logo {
    max-width: 80%;
}

#content {
    border: 2px solid white;
    border-radius: 0px 20px 20px 0px;
    padding: 30px;
    width: 40rem;
}
#wrapper.exclude-sidebar #content {
    border-radius: 20px;
}
#content a,
#content a:focus,
#content a:link,
#content a:hover {
    color: #FECCA0 !important;
}

#content p {
    color: #fff;
    text-align: left;
    font-size: 17px;
    line-height: 20px;
    margin-bottom: 30px;
}

#content label,
.was-validated .form-check-input:invalid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #fff;
}

#content input[type=text],
#content input[type=password],
#content input[type=email],
#content select {
    width: 100%;
    padding: 9px 20px;
    text-align: left;
    border: 0;
    outline: 0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 15px;
    font-weight: 300;
    color: #8D8D8D;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 16px;
    box-sizing: border-box;
}
.form-check {
    margin-top: 16px;
}


.btn-primary {
    background-color: #CD8E58;
    outline: none;
    border: 0px;
    box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #6B280B;
    outline: none !important;
    border: none !important;
    box-shadow: none;
}


.validation-error {
    color: #ff606e;
    display: none;
}


#content .instructions {
    line-height: 24px;
}

.test-image {
    max-width: 100%;
    width: 100%;
    margin: 15px 0px;
}

.test-instructions-text,
.test-question {
    white-space: pre-wrap;
}
.test-instructions-title {
    font-weight: bold !important;
    margin-top: 16px;
}
.test-instructions-text {
    margin-left: 16px;
}

#submit {
    float: left;
}
.skip-button {
    float: right;
    margin: 0px 5px;
}


/* COUNTDOWN
 */
/*
*
* ==================================================
* UNNECESSARY STYLE - JUST TO MAKE IT LOOKS NICE
* ==================================================
*
*/
.countdown {
    text-transform: uppercase;
    font-weight: bold;
    text-align: right;
    padding-bottom: 0.5em;
}

.countdown span {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    margin-left: 0.8rem;
}

.countdown span:first-of-type {
    margin-left: 0;
}

