body {
    margin: 0;
    padding: 0;
}

/*Корпоративні шрифти*/
p,
a,
span,
h1,
h2,
h3,
h4,
button,
th,
td,
input,
option,
label,
div {
    font-family: 'Stratos LC Web';
}

.main-container {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    align-items: center;
    background-color: #fff;
    min-height: 100vh;
    box-sizing: border-box;
}

.logo {
    width: 106px;
    margin-bottom: 40px;
}

.test-container {
    background-color: #fff;
    width: 60%;
    padding: 20px 30px 30px 30px !important;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1);

}

.info-test {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.name-test {
    font-weight: 700;
    max-width: 80%;
    margin: 10px 0px;
    width: 100%;
}

.name-test>span {
    text-transform: uppercase;
    font-size: 24px;
}

.question-number-test {
    width: 20%;
    display: flex;
    justify-content: end;
}

.player-test{

}

.player-test,
.result-test {
    background-color: #FFFFFF;
    padding: 20px 20px;
    border-radius: 10px;
    border: solid 1px #f0f1f2;

}

.result-test,
.btn-start-container,
.player-test {
    min-height: 200px;
}

.btn-start-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-start {
    background-color: #EC3122;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

.btn-start:hover {
    background-color: #F05A4E;
}

.question-player-test {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.question {
    margin-bottom: 5px;
}

.form-player-test {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.btn-answer {
    background-color: #EC3122;
    border: none;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
}

.btn-answer:hover {
    background-color: #F05A4E;
}

.btn-answer-container {
    display: flex;
    justify-content: flex-end;
}


input[type='radio']:focus,
input[type='radio']:checked {
    accent-color: #EC3122;
}

input[type='radio']:hover {
    cursor: pointer;
}

input[type='checkbox']:focus,
input[type='checkbox']:checked {
    accent-color: #EC3122;
}

.second-text-type {
    color: #999999;
    margin-right: 10px;
}

.scales-container>div {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.active-test-container {
    width: 100%;
}

.active-test-container {
    padding: 30px 60px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.test-block {
    min-height: 180px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
    width: 400px;
    padding: 20px;
    margin: 0px 20px 40px 20px;
    box-sizing: border-box;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1),0px 10px 15px -3px rgba(0,0,0,0.1);
}

.name {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.card-info-test {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    font-size: 14px;
    color: #808080;
    font-weight: 700;
}

.btn-open-test {
    border: none;
    background-color: #EC3122;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 10px 20px;
    cursor: pointer;
}

.completed {
    color: #008115;
    font-weight: 700;
}

.completed-btn {
    background-color: #008115;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .test-container {
        width: 90%;
        box-shadow: none;
        padding: 20px;
    }

    .info-test {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .question-number-test {
        width: 100%;
        justify-content: flex-start;
    }

    .form-player-test {
        min-height: 200px;
    }

    .btn-answer-container>input {
        width: 100%;
    }

    .question {
        margin-bottom: 10px;
    }
    
    .active-test-container {
        padding: 30px 10px;
    }



}