body.active .form-succes-load {
    display: flex !important;
}

.form-succes-load {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    z-index: 9999999999999999999999;
    justify-content: center;
    align-items: center;
}

.form-succes-load img {
    width: 50px;
}

.form-succes-load.active {
    display: flex;
}

.error-msg-contact {
    color: red;
    margin-bottom: 15px;
}

/* -------------------------------- */

.form_container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 25px;
}

.form_container__title h1 {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #003049;
}

.form_container__title h1 span {
    color: #94C11F;
}

.form_container__title p {
    color: #003049;
    text-align: center;
}

.form_container__backbutton {
    display: flex;
    justify-content: center;
}

.form_container .form_container__backbutton a {
    background: #94C11F;
    border: none;
    color: white;
    padding: 7px 40px;
    border-radius: 12px;
    font-size: 19px;
    cursor: pointer;
    transition: background .3s;
    text-decoration: none;
    margin: 30px auto;
}

.form_container .form_container__backbutton a:hover {
    background: #016129;
}

.form_container__title {
    padding-bottom: 30px;
    border-bottom: 1px solid #E9F2D6;
}

.competition_form {
    max-width: 600px;
    margin: 0 auto;
}

.input_box {
    margin: 50px 0;
}

.input_box p {
    color: #003049;
    font-size: 23px;
    margin: 0 0 15px 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.input_box p span {
    color: #94C11F;
    font-weight: bold;
}

.input_box input[type="text"], input[type="email"] {
    width: 100%;
    border: 1px solid #94C11F;
    background: white;
    padding: 8px 15px 8px 15px;
    border-radius: 8px;
    outline: none;
    font-size: 17px;
    color: #003049;
}

.input_box .input_box__inputs label {
    position: relative;
}

.input_box .input_box__inputs span {
    border: 1px solid #94C11F;
    background: white;
    border-radius: 8px;
    padding: 8px 40px 8px 15px;
    margin: 0;
    position: relative;
    color: #003049;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background .3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.input_box .input_box__inputs span:hover {
    background: #F4F9EB;
}

.input_box .input_box__inputs label:not(:last-child) {
    margin-bottom: 10px;
}

.input_box .input_box__inputs br {
    display: none;
}

.input_box .input_box__inputs span:after {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    right: 15px;
    background: url("../img/radio_empty.svg");
    background-size: 100% 100%;
}

.input_box .input_box__inputs input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.input_box .input_box__inputs input[type="radio"]:checked + span {
    background: #F4F9EB;
}

.input_box .input_box__inputs input[type="radio"]:checked + span:after {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    right: 15px;
    background: url("../img/radio_checked.svg");
    background-size: 100% 100%;
}

.submit_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    margin-bottom: 30px;
}

.submit_box label {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-size: 17px;
}

.submit_box label span:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    background: url("../img/radio_empty.svg");
    background-size: 100% 100%;
}

.submit_box label input:checked + span:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    background: url("../img/radio_checked.svg");
    background-size: 100% 100%;
}

.submit_box label input {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
}

.submit_box button {
    width: 100%;
    background: #94C11F;
    border: none;
    color: white;
    padding: 7px 40px;
    border-radius: 12px;
    font-size: 19px;
    cursor: pointer;
    transition: background .3s;
}

.submit_box button:hover {
    background: #016129;
}

/* Responsive section */
/* Responsive section */
/* Responsive section */

@media (max-width: 992px) and (min-width: 769px) {
    .form_container__title h1 {
        font-size: 36px;
        line-height: 46px;
    }
}
@media (max-width: 768px) and (min-width: 426px) {
    .form_container__title h1 {
        font-size: 32px;
        line-height: 40px;
    }
}
@media (max-width: 425px) {
    .form_container__title h1 {
        font-size: 27px;
        line-height: 35px;
    }

    .input_box p {
        font-size: 19px;
        line-height: 26px;
    }

    .submit_box label {
        font-size: 14px;
    }

    .form_container .form_container__backbutton a {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }
}