@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Italic.woff2") format("woff2");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "Open Sans";
    src: url("/assets/fonts/OpenSans-Regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.mt8 {
    margin-top: 8px;
}
.mt12 {
    margin-top: 12px;
}
.mt40 {
    margin-top: 40px;
}
.mt120 {
    margin-top: 120px;
}
.mt160 {
    margin-top: 160px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 12px;
    background-color: #292929;
    color: #fff;
    font-size: 14px;
}
header h1 {
    font-size: 20px;
    font-weight: 600;
}
@media (max-width: 1070px) {
    header h1 {
        font-size: 16px;
        padding-left: 3px;
    }
    header {
        padding: 20px 12px;
    }
}
header a {
    text-decoration: none;
    color: #fff;
}
header .menuSide {
    display: flex;
    gap: 8px;
}
@media (max-width: 768px) {
    header .menuSide {
        display: none;
    }
}
header .hamburger {
    position: fixed;
    z-index: 100;
    top: 1.5rem;
    right: 1rem;
    padding: 4px;
    border: black solid 1px;
    background: #292929;
    cursor: pointer;
    display: none;
}
header .hamburger .closeIcon {
    display: none;
}
@media (max-width: 768px) {
    header .hamburger {
        display: block;
    }
}
header .menu {
    position: fixed;
    transform: translateY(-100%);
    transition: transform 0.2s;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: rgba(33, 33, 33, 0.9);
    color: white;
    list-style: none;
    padding-top: 4rem;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    font-size: 18px;
    display: none;
}
header .showMenu {
    display: flex;
    transform: translateY(0);
}
footer {
    color: #fff;
    background-color: #000;
    padding: 32px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin-top: auto;
    flex-direction: column;
}
footer a {
    color: #fff;
    text-decoration: none;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    position: relative;
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 28px 12px;
    overflow-x: auto;
}
.btn {
    color: #fff;
    text-decoration: none;
    padding: 12px 32px;
    background-color: #666666;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.alert-success {
    text-align: center;
    color: darkgreen;
}
main {
    padding: 36px 24px;
    min-height: 85vh;
}
@media (max-width: 590px) {
    main {
        padding: 12px;
    }
}
.is-invalid {
    border: 1px solid red;
}
.invalid-feedback {
    font-size: 13px;
    color: red;
    margin-top: -10px;
}
.promotionTest {
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    background-size: 100% 100%;
    border-radius: 30px;
    aspect-ratio: 16/7;
    color: #fff;
}
.promotionTest::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    z-index: 0;
}
.promotionTest .body {
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
    color: #fff;
    position: relative;
    padding: 0 12px;
}
.promotionTest .body .title {
    font-size: 32px;
}
@media (max-width: 768px) {
    .promotionTest .body .title {
        font-size: 22px;
        text-align: center;
    }
}
.promotionTest .body .annotation {
    font-size: 22px;
    text-align: center;
}
@media (max-width: 768px) {
    .promotionTest .body .annotation {
        font-size: 16px;
        margin-top: 20px;
    }
}
.promotionTest .body .btn {
    font-size: 20px;
}
@media (max-width: 580px) {
    .promotionTest .body .btn {
        font-size: 16px;
        margin-top: 12px;
    }
}
.testPresent {
    display: flex;
    flex-direction: row;
    gap: 30px;
}
@media (max-width: 850px) {
    .testPresent {
        flex-direction: column;
        gap: 60px;
    }
}
.testPresent h2 {
    font-weight: 600;
}
.testPresent .info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 50% 0 0;
}
.testPresent .info hr {
    max-width: 45px;
    height: 4px;
    background-color: #000;
}
.testPresent .info .duration {
    font-weight: 600;
}
.testPresent .info .btn {
    background-color: #000;
}
.testPresent .img {
    display: block;
}
.testPresent .img img {
    border-radius: 30px;
    width: 100%;
    height: auto;
}
.testProgress {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 70vh;
}
.testProgress .title {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
@media (max-width: 610px) {
    .testProgress .title {
        font-size: 16px;
    }
}
.testProgress progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background-color: #e0e0e0;
}
.testProgress progress::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 5px;
}
.testProgress progress::-webkit-progress-value {
    background: #e8a446;
    border-radius: 3px;
    transition: width 0.5s ease;
}
.testProgress progress::-moz-progress-bar {
    background: #e8a446;
    border-radius: 3px;
}
.testProgress .answers {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
@media (max-width: 610px) {
    .testProgress .answers {
        flex-direction: column;
    }
}
.testProgress .answers .answer {
    display: flex;
    justify-content: start;
    align-items: center;
    border: 1px solid #364554;
    border-radius: 4px;
    width: calc(50% - 7.5px);
    padding: 12px 18px;
    text-decoration: none;
    color: #000;
}
@media (max-width: 610px) {
    .testProgress .answers .answer {
        width: 100%;
    }
}
.testProgress .question h2 {
    padding-top: 20px;
    font-size: 30px;
}
@media (max-width: 780px) {
    .testProgress .question h2 {
        font-size: 24px;
    }
}
@media (max-width: 460px) {
    .testProgress .question h2 {
        font-size: 20px;
    }
}
.testProgress .control {
    margin-top: 20px;
}
@media (max-width: 580px) {
    .testProgress .control {
        margin-top: 40px;
    }
}
.registration h2, .login h2 {
    text-align: center;
}
.registration .registration_block, .registration .login_block, .login .registration_block, .login .login_block {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
}
.label {
    position: relative;
}
.label.required-field::after {
    content: "*";
    color: red;
    font-size: 12px;
    position: absolute;
    top: 2px;
    padding-left: 2px;
}

.registration .registration_block .input, .registration .registration_block .input-checkbox, .registration .login_block .input, .registration .login_block .input-checkbox, .login .registration_block .input, .login .registration_block .input-checkbox, .login .login_block .input, .login .login_block .input-checkbox {
    display: flex;
    flex-direction: column;
}
.registration .registration_block .input .label, .registration .registration_block .input-checkbox .label, .registration .login_block .input .label, .registration .login_block .input-checkbox .label, .login .registration_block .input .label, .login .registration_block .input-checkbox .label, .login .login_block .input .label, .login .login_block .input-checkbox .label {
    font-size: 18px;
    font-weight: 300;
    margin-top: 8px;
}
.registration .registration_block .input input, .registration .registration_block .input select, .registration .registration_block .input-checkbox input, .registration .registration_block .input-checkbox select, .registration .login_block .input input, .registration .login_block .input select, .registration .login_block .input-checkbox input, .registration .login_block .input-checkbox select, .login .registration_block .input input, .login .registration_block .input select, .login .registration_block .input-checkbox input, .login .registration_block .input-checkbox select, .login .login_block .input input, .login .login_block .input select, .login .login_block .input-checkbox input, .login .login_block .input-checkbox select {
    padding: 19px;
    font-size: 16px;
    outline: none;
    font-weight: 400;
    margin-bottom: 16px;
}
.registration .registration_block .input input option, .registration .registration_block .input select option, .registration .registration_block .input-checkbox input option, .registration .registration_block .input-checkbox select option, .registration .login_block .input input option, .registration .login_block .input select option, .registration .login_block .input-checkbox input option, .registration .login_block .input-checkbox select option, .login .registration_block .input input option, .login .registration_block .input select option, .login .registration_block .input-checkbox input option, .login .registration_block .input-checkbox select option, .login .login_block .input input option, .login .login_block .input select option, .login .login_block .input-checkbox input option, .login .login_block .input-checkbox select option {
    font-weight: 400;
}
.registration .registration_block .input-checkbox, .registration .login_block .input-checkbox, .login .registration_block .input-checkbox, .login .login_block .input-checkbox {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}
.registration .registration_block .input-checkbox input, .registration .login_block .input-checkbox input, .login .registration_block .input-checkbox input, .login .login_block .input-checkbox input {
    margin: 0;
    transform: scale(1.5);
}
.registration .registration_block .button, .registration .login_block .button, .login .registration_block .button, .login .login_block .button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.registration .registration_block .button .btn, .registration .login_block .button .btn, .login .registration_block .button .btn, .login .login_block .button .btn {
    background-color: #000;
    padding: 20px 30px;
}
.user h2 {
    text-align: center;
    margin-bottom: 20px;
}
.user .user_info {
    margin-bottom: 140px;
}
.user .user_info .info p {
    margin-bottom: 8px;
}
.user .finished_sessions table {
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
@media (max-width: 810px) {
    .user .finished_sessions table {
        display: block;
    }
}
.user .finished_sessions table thead th {
    border-bottom: 1px solid #000;
    padding: 12px;
    text-align: center;
}
.user .finished_sessions table tbody tr {
    background-color: #fff;
}
.user .finished_sessions table tbody tr:nth-child(2) {
    background-color: #eee;
}
.user .finished_sessions table tbody td {
    padding: 12px;
    text-align: center;
    border: none;
}
.users h1 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.users table {
    width: 100%;
    overflow-x: auto;
    max-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
}
@media (max-width: 810px) {
    .users table {
        display: block;
    }
}
.users table thead {
    width: 100%;
}
.users table thead th {
    border-bottom: 1px solid #000;
    padding: 12px;
    text-align: center;
}
.users table tbody {
    font-size: 16px;
}
.users table tbody tr {
    background-color: #fff;
}
.users table tbody tr:nth-child(2) {
    background-color: #eee;
}
.users table tbody td {
    padding: 12px;
    text-align: center;
    border: none;
}
.users table tbody a {
    text-decoration: none;
    color: #000;
}
.users .input, .users .input-checkbox {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.users .input input, .users .input select, .users .input-checkbox input, .users .input-checkbox select {
    padding: 19px;
    font-size: 16px;
    outline: none;
    font-weight: 400;
    flex: 75% 1 1;
}
.users .input input option, .users .input select option, .users .input-checkbox input option, .users .input-checkbox select option {
    font-weight: 400;
}
.users .input .btn, .users .input-checkbox .btn {
    background-color: #000;
    padding: 0px 50px;
    border-radius: unset;
    flex: 25% 1 1;
}
