.form {
    text-align: left;
}

.form [type=submit] {
    margin-top: 20px;
    border-radius: 0;
}


/* MODIFIER */
.form--search {
    display: flex;
    width: 100%;
    align-items: flex-start;
}

.form--search .btn.btn-search {
    padding: 11px 10px;
    margin-bottom: 0;
	margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form--search .form__label {
    flex: 1;
}

.form--sidebar {
    background-color: #F7F7F7;
    padding: 29px 20px 15px;
}

.form--sidebar h4,
.form--sidebar .h4 {
    font-size: 24px;
}

.form--sidebar .form__item {
    margin-bottom: 15px;
}

.form__upper {
    text-align: center;
    margin-bottom: 20px;
}

.form__upper p {
    font-size: 17px;
    margin-top: 5px;
}

.form__button {
    text-align: center;
    margin-top: 15px;
}

.form__item {
    margin-bottom: 35px;
}

.form__label {
    display: block;
}

.form__label p,
.form__label strong {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif;
    color: #043364;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form__label p br,
.form__label strong br {
    display: none;
}

.form__label p span,
.form__label strong span {
    color: #971515;
}

.form__label--file i {
    display: inline-block;
    vertical-align: middle;
    width: 14px;
    height: 18px;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.form__label--file {
    position: relative;
}

.form__label--file .form__field {
    padding-right: 30px;
}

.form__label--file i img {
    width: 100%;
    height: auto;
}

.form__label--file input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.form__label--file span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form__field,
.form__select select,
.form__select .choices__inner,
.widget_categories select {
    border-radius: 0;
    border: 0;
    width: 100%;
    min-height: 46px;
    padding: 12px 18px 14px;
    border: 0;
    outline: none;
    background-color: #FFF;
    box-shadow: inset 0 -4px #BABABA;
    color: #5A5A5A;
    transition: box-shadow 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 400;
}

.form__select select,
.widget_categories select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form__select .choices[data-type*='select-one'] .choices__inner {
    padding: 8px 18px 10px;
}

.form__select,
.widget_categories form {
    position: relative;
}

.form__select .choices__list--dropdown {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
}

.form__select .choices__list--dropdown .choices__list,
.form__select .choices__input {
    font-family: 'Montserrat', sans-serif;
}

.form__select .choices__input {
    font-size: 16px;
}

.form__select .choices__inner:before,
.widget_categories form:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    right: 15px;
    border: 2px solid #4A4A4A;
    border-top: 0;
    border-left: 0;
}

.form__select .choices:after {
    display: none;
}

textarea.form__field {
    height: 112px;
	resize: none;
}

.form__field:focus {
    border: 0;
    box-shadow: inset 0 -4px #043364;
}

.form__text {
    text-align: center;
    margin-top: 30px;
}

.form__text p,
.form__text strong {
    font-size: 16px;
    color: #5A5A5A;
    margin-bottom: 20px;
}

.form__text p a,
.form__text strong a {
    color: #971515;
    font-weight: 600;
}

.form__text p a,
.form__text strong a {
    padding: 3px;
    box-shadow: inset 0 0 #971515;
    transition: box-shadow 0.3s ease-in-out,
                color 0.3s ease-in-out;
}

.form__text p a:hover,
.form__text strong a:hover {
    color: #FFF;
    box-shadow: inset 0 -100px #971515;
}

.form--light .form__field,
.form--light .form__select select,
.form--light .form__select .choices__inner,
.widget_categories select {
    background-color: #F7F7F7;
    box-shadow: inset 0 -4px #E5E5E5;
    color: #5A5A5A;
}

.form--light .form__field:focus {
    border: 0;
    box-shadow: inset 0 -4px #043364;
}

.form__field .wpcf7-form-control-wrap {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 22px);
}

.form__field .js-cf7__container--valid + span + i {
	opacity: 0;
}

/*
* Responsive
*/

@media (max-width: 600px) {
    .form__item:not(:last-child) {
        margin-bottom: 25px;
    }

    .wpcf7-not-valid-tip, 
    .wpcf7-form-control-wrap .error {
        display: block;
        position: relative;
    }
}