.back_button_container {
    margin-bottom: 50px;
    text-align: center;
}

.back_button {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: bold;
}

.back_button:hover {
    opacity: 0.7;
}

.back_arrow {
    width: 12px;
    height: 12px;
    border-width: 0px 2px 2px 0px;
    border-style: solid;
    border-color: #424242;
    transform: rotate(-225deg);
    display: inline-block;
}

@media (max-width: 800px) {
    .back_button {
        font-size: 12px;
    }
}

.multiple_answer_note {
    font-family: var(--font-family-Font-1, YuGothic);
    font-weight: 500;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--color-orange-55, #fc641c);
    margin-top: 10px;
    display: block;
    width: 100%;
}

#experience_field_form{
  margin-bottom: 50px;
}

.experience_field_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 20px;
    width: 100%;
    max-width: 450px;
    margin: 50px auto 50px auto;
}

.experience_field_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 100%;
    height: 19px;
}

.experience_field_checkbox_group {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 5px;
    width: 215px;
    height: 19px;
}

.experience_field_checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
}

.experience_field_checkbox input[type="checkbox"] {
    box-sizing: border-box;
    width: 19px;
    height: 19px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 3px;
    margin: 0;
    flex: none;
    cursor: pointer;
}

.experience_field_checkbox input[type="checkbox"]:checked {
    background: #f5a100;
    border: none;
}

.experience_field_checkbox label {
    height: 19px;
    font-family: "YuGothic", YuGothic, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    display: flex;
    align-items: center;
    color: #000000;
    cursor: pointer;
    margin: 0;
    flex: 1;
}

@media (max-width: 800px) {
    .experience_field_container {
        width: 100%;
        padding: 0 20px;
    }

    .experience_field_checkbox_group {
        width: calc(50% - 10px);
    }

    .experience_field_row {
        height: auto;
        min-height: 19px;
    }
}

.next_button_container {
    margin-top: 40px;
    text-align: center;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.next_button {
    width: 100%;
    max-width: 450px;
    height: 60px;
    padding-top: 30.5px;
    padding-right: 6px;
    padding-bottom: 32.5px;
    padding-left: 6px;
    border-radius: 10px;
    background: var(--orange);
    box-shadow: 0px 4px 3px 0px #00000029;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.next_button:hover {
    opacity: 0.8;
}

.next_button[disabled] {
    background-color: #ccc;
    opacity: 0.5;
    cursor: not-allowed;
}

.next_button[disabled]:hover {
    opacity: 0.5;
}

@media (max-width: 800px) {
    .next_button_container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .next_button {
        font-size: 16px;
    }
}
