.form .result_message {
	text-align: left;
	margin-bottom: 15px;
}
.form .result_message.error {
	color: red;
}
.form .result_message.success {
	text-align: center;
	color: green;
	font-size: 14px;
}
/*New fields*/
.checkbox_title {
    font-family: "DINPro-Regular";
    background: #fff;
    border: 1px solid #eceff1;
    border-radius: 4px;
    padding: 9px 10px 9px 15px;
    width: 100%;
    height: 48px;
    font-size: 16px;
    outline: none;
    text-align: left;
    border-color: #c7c7c7;
    color: #696969;
    cursor: pointer;
    position: relative;
}
.checkbox_title:hover {
    border-color: #1dba7b;
}
.checkbox_list {
    display: none;
    font-family: "DINPro-Regular";
    background: #fff;
    border: 1px solid #eceff1;
    border-radius: 4px;
    padding: 9px 10px 9px 15px;
    width: 100%;
    font-size: 16px;
    position: relative;
    outline: none;
    border-color: #c7c7c7;
    color: #696969;  
    border-top: none;
}
.checkbox_title:before {
    content: "";
    right: 0;
    top: 50%;
    transform: rotate(45deg);
    width: 10px;
    height: 2px;
    background-color: #696969;
    position: absolute;
    margin-right: 20px;
}
.checkbox_title:after {
    content: "";
    right: 0;
    top: 50%;
    transform: rotate(-45deg);
    width: 10px;
    height: 2px;
    background-color: #696969;
    position: absolute;
    margin-right: 14px;
}
.checkbox_list input {
    display: none;
}
.checkbox_list label {
    cursor: pointer;
    position: relative;
    top: -2px;
}
.cbox_container {
    width: 50%;
    text-align: left;
    display: flex;
    align-items: center;
}
.cb_container {
    display: flex;
    flex-wrap: wrap;
}
.form .form-row .checkbox_title.error {
    border: 1px solid red;
}




/* my */

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    font-weight: bold;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes {
    display: none;
    border: 1px #dadada solid;
}

#checkboxes label {
    display: block;
}

#checkboxes label:hover {
    background-color: #1e90ff;
}