.f1_input_field_container{
    margin-bottom: 20px;
}

.f1_input_field_container .field_label{
    padding-bottom: 4px
}

.f1_input_field_container .field_description{
    margin-top: 3px;
}

form .error, .f1_input_field_container .error_msg{
    color: red;
    margin-top: 3px;
    text-align: left;
    background-image: url(../img/ic_error_red.svg?v2);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 2px;
    padding-left: 26px;
    line-height: 1;
}


/**
 *
 * Here are the checkbox field styles.
 **/
.checkbox_field_container {
  display: block;
  position: relative;
  padding-left: 34px;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 26px;
}

.checkbox_field_container.small{
    font-size: 14px;
    height: 22px;
    padding-left: 30px;
    font-size: var(--p-font-size-325);
}

.checkbox_field_container.not_disabled{
    cursor:pointer;
}

/* Hide the browser's default checkbox */
.checkbox_field_container input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.checkbox_field_container .field_label{
    display: inline-block;
    vertical-align: middle;
    line-height: 26px;
}

.checkbox_field_container.small .field_label{
    height: 22px;
    line-height: 22px;
}

/* Create a custom checkbox */
.checkbox_field_container .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 26px;
    width: 26px;
    background-color: #fff;
    border-radius: 50%;
    border: 2px solid #ccc;
    box-sizing: border-box;
}

.checkbox_field_container.small .checkmark {
    height: 22px;
    width: 22px;
}

/* On mouse-over, add a grey background color */
.checkbox_field_container.not_disabled:hover input ~ .checkmark {
  background-color: #eee;
}

.checkbox_field_container.not_disabled:hover input:checked ~ .checkmark {
  background-color: #31a44d;
}

/* When the checkbox is checked, add a blue background */
.checkbox_field_container input:checked ~ .checkmark {
    background-color: #31a44d;
    border: none;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_field_container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_field_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_field_container .checkmark:after {
    left: 10px;
    top: 6px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox_field_container.small .checkmark:after{
    left: 8px;
    top: 4px;
}