.checkbox_container {
    position: relative;
    height: 100%;
    width: 100%;
    display: block;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox_container input {
    opacity: 0;
}
.checkbox_container input:checked ~ .checkmark {
    border: 5px solid #f57040;
}

.star_checked, .star_checked .star_hovered {
    color: orange;
}
.star_hovered {
    color: rgba(255, 166, 0, 0.5)
}

.form_errors {
    margin-top: 1em;
    padding: 0; 
    list-style-type: none;
    color: red;
}

.form_label {
    margin-bottom: 5px;
}

.section_input {
    height: 28px;
}
.section_input:invalid {
    color: #C8C8C8;
}

.support_row {
    padding: 0;
}
.support_row_content {
    padding: 60px 0;
    margin: 0 20px;
    border-top: thin dotted gray;
}

.support_cate_btn {
    padding: 10%;
    text-align: center;
    transition: all .2s ease-in-out;
}
.support_cate_btn:hover {
    transform: scale(1.2);
}

select {
    background: white;
}

[type="date"] {
    background:#fff url(../icons/calendar.svg)  99% 50% no-repeat;
    background-size: 1rem 1rem;
}
[type="date"]::-webkit-inner-spin-button {
    display: none;
}
[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline;
}

label {
    margin: 0;
}

option {
    color: black;
}
