#title_section h1 {
    padding: 0 30px;
    margin: 0 auto 26px;
}

.input_row {
    margin-bottom: 15px;
}

.title_error {
	color: #b51c19;
}

.input_row select,
.input_row input:not([type=checkbox]) {
    display: block;
    width: 100%;
    height: 42px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff;
    background-image: none;
    border: 1px solid #aaa;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.input_row select:focus,
.input_row input:focus {
    border: 2px solid #0d4f78;
    outline: 0;
    box-shadow: none;
}

.input_row select:disabled,
.input_row input:disabled {
    background-color: #e7e7e7;
}

fieldset[disabled] .input_row input:not([type=checkbox]),
fieldset[disabled] .input_row select,
.input_row input:not([type=checkbox])[disabled],
.input_row select[disabled] {
    cursor: not-allowed
}

.input_row h5 {
    display: table-cell;
    height: 42px;
    vertical-align: middle;
}

.select_box {
    position: relative;
}

.select_box::before {
    content: "";
    background: url(../img/icon-chevron-down-blue.svg) no-repeat !important;
    width: 30px;
    height: 9px;
    display: inline-block;
    background-size: contain;
    position: absolute;
    right: 10px;
    top: 32%;
    pointer-events: none;
    z-index: 1;
}

.select_box:after {
    position: absolute;
    pointer-events: none;
    width: 50px;
    height: calc(100% - 4px);
    content: "";
    right: 2px;
    top: 2px;
    border-radius: 2px;
}

#input_section {
    padding: 0 15px;
    margin-bottom: 10px;
}

#submit_section {
    padding: 0 15px;
}

#submit_section .submit_button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.42857143;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 5px;
    color: #fff;
    background-color: #e87524;
    border-color: transparent;
    position: relative;
    width: 50%
}

#submit_section .submit_button:after {
    content: "";
    background: url(../img/right-arrow.png) no-repeat 50%;
    background-size: contain;
    margin-left: 10px;
    display: inline-block;
    width: 20px;
    height: 19px;
    vertical-align: sub
}

.was-validated .form-control:invalid {
    border: 2px solid #b51c19;
    /*background: none;*/
    box-shadow: none;
}

.was-validated .form-control:valid {
    border: 1px solid #aaa;
    /*background: none;*/
    box-shadow: none;
}


.was-validated .alert-danger {
    border-radius: 3px;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #b51c19;
    margin: 5px 0 0;
    padding: 8px 12px;
    font-size: 14px
}

.toc_box label {
    background-color:#fff;
    border:1px solid #aaa;
    border-radius:5px;
    margin-bottom:10px;
    padding: 10px 12px;
    padding-left:36px;
    display:block;
}

.toc_box input {
	position: absolute;
	margin-top: 16px;
	margin-left: 12px;
}

.toc_box .custom-checkbox {
    position:absolute;
    top:14px;
    left:26px;
    height:18px;
    width:18px;
    border:1px solid #aaa;
    border-radius:3px;
    background-color:#fff
}

.toc_box input:checked~.custom-checkbox:after {
    display:block;
}

.toc_box .custom-checkbox:after {
    content:"";
    position:absolute;
    display:none;
    left:6px;
    top:-4px;
    width:10px;
    height:17px;
    border:solid #e87524;
    border-width:0 4px 4px 0;
    transform:rotate(45deg);
}