/* Customize the label (the container) */

.checkbox-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    padding-left: 35px;
    margin: 0.8rem 0;
    cursor: pointer;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-text {
    font-size: 1.2rem;
    color: #c4c4c4;
}

/* Hide the browser's default checkbox */

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: transparent;
    border: 2px solid #c4c4c4;
    border-radius: 4px;
}

/* On mouse-over, add a grey background color */

.checkbox-container:hover input~.checkmark {
    background-color: #c4c4c4;
}

/* When the checkbox is checked, add a blue background */

.checkbox-container input:checked~.checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */

.checkbox-container .checkmark:after {
    left: 5.5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.invalid-textfield {
    border: 2px solid red;
}

.button-form {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.form__section {
    display: block;
    margin-bottom: 1rem;
}

.form__section-title {
    font-weight: 700;
}

.form__section-comment {
    margin: 0.5rem 0;
    font-size: 0.8rem;
    font-style: italic;
}