.form-row > *{
    margin-bottom: 24px;
}
.hidden {
    display: none;
}
.error {
    color: brown;
}
input.error {
    border: 1px solid brown!important;
}
input[type="checkbox"].error + span{
    color: brown!important;
}
.btn-quiz button{
    padding: .5rem 3rem;
    font-size: 16px;
}
.btn-gray {
    border: 1px solid #D4D4D4;	    
}
.btn-gray, .btn-gray:hover {
    color: #939393;
}
.btn-quiz-success, .btn-quiz-success:hover,
.quiz-booking, .quiz-booking:hover{
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}
/***********************************/
.quiz-header {
    margin-bottom: 15px;
}
.quiz-header .progress {
    width: 100%;
    height: 25px;
    position: relative;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.quiz-header .progress > div {
    background: #00548e;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
}
.quiz-count {
    font-size: 16px;
    font-weight: 600;
}
.quiz-caption {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.quiz-msg {
    display: inline-flex;
    background: #eff1f1;
    padding: 7px 15px;
    margin: 0px 0px 20px 0px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
}

.quiz-section h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom:15px;
}
.quiz-footer {
    margin-top: 30px;
    align-items: center;
}
.quiz-help {
    color: #a5a5a5;
    line-height: 1.2;
    font-size: 14px;
    margin: 0;
}
.quiz-total .result h3{
    font-size: 26px;
    margin-top: 10px;
    padding-top: 5px;
    border-top: 1px solid #e1e1e1;
}
.quiz-total .result h3:first-child{ 
    border-top: 0;
}
.quiz-total .result p{
    margin-bottom: 3px;
    font-size: 16px;
}
.quiz-total .result span{
    font-weight: 600;
}
.quiz-total .agree{    
    border-top: 1px solid #e1e1e1;
    margin-top: 20px;
    padding-top: 20px;
}
.spoiler{
    padding-left:25px;
    display:none;
}
.spoiler.active{
    display:flex;
}
.spoiler,
.spoiler p{
    font-size:12px;
}
.spoiler span{
    text-decoration: underline;
    font-weight: 700;
}
.reg-success{
    text-align:center;
}
.reg-success p{
    color: #009b00;
    font-weight: 700;
    margin-bottom: 0px;
    font-size: 22px;
}

.custom-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}
.custom-check input[type="checkbox"] {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
	flex-shrink: 0;
}
.custom-check input[type="checkbox"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.custom-check input[type="radio"] {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.custom-check input[type="radio"]:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
    background-position: center;
    background-repeat: no-repeat;
}