.form--blue {
	width: 100%;
	background-color: #016b93;
	border-radius: 15px;
	padding: 30px 25px;
}

@media(max-width: 767px) {
	.form--blue {
		padding: 20px;
	}
}

input, textarea {
	width: 100%;
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #000;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	padding: 0 15px;
	margin-top: 12px;
	box-sizing: border-box;
    outline: none;
   -webkit-appearance: default-button;
   -webkit-appearance: none;
   -webkit-tap-highlight-color: transparent;
}

.wpcf7 form {
	margin-top: -12px;
}

.hidden-field {
	display: none;
}

input {
	height: 47px;
}

input:placeholder {
    font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
}

textarea {
	height: 135px;
	line-height: 1.7;
	padding-top: 11px;
}

.card textarea {
	min-height: 100%;
	margin-top: 0;
}

.fields-shadow input, 
.fields-shadow textarea {
	box-shadow: 0 0 5px rgba(0,0,0,0.09);
}

input[type="submit"] {
	height: auto;
	border: 0;
	cursor: pointer;
	margin-top: 0;
	transition: .2s;
}

input[type="submit"]:hover {
	transition: .2s;
}

.w-auto {
	width: auto;
}

@media(max-width: 400px) {
	.w-auto {
		width: 100%;
	}
}

.submit {
	position: relative;
	margin-top: 20px;
}

.wpcf7-response-output {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    text-align: center;
    background: #ffb900;
    border-radius: 7px;
    margin: 0 !important;
    margin-top: 17px !important;
    padding: 12px !important;
    padding-top: 14px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	color: #fff !important;
	background: #46b450;
}

.wpcf7-spinner {
	position: absolute !important;
    top: 16px !important;
    left: -10px !important;
}

/*select*/
.select {
	position: relative;
	z-index: 50000;
    flex: 1 1;
}

.select.show {
	z-index: 700000;
}

.select-name {
	position: relative;
    display: flex;
    align-items: center;
	width: 100%;
    height: 47px;
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
	color: #b0b1b1;
	background: #fff;
	border: 1px solid #fff;
	border-radius: 7px;
	box-shadow: none;
	padding: 0 15px;
    padding-right: 47px;
    cursor: pointer;
	overflow: hidden;
}

@media(max-width: 767px) {
    .select-name {
        font-size: 20px;
        padding-left: 15px;
    }
}

.select-name span {
    display: block;
    /*white-space: nowrap;*/
	margin: 0;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.select-name:after {
	content: url(../img/list_arrow.svg);
	position: absolute;
    width: 17px;
	right: 15px;
    top: 11px;
	transition: .2s;
}

.select.selcl:after, .show .select-name:after {
	transform: rotate(180deg);
}

.select-name.sel, .show .select-name {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select-list {
	position: absolute;
	top: 97%;
    height: 0;
    opacity: 0;
    width: 100%;
    z-index: 100;
	background: #e3f3f9;
	margin-top: 0;
    transition: .3s;
    overflow-y: auto;
}

.show .select-list {
    height: 290px;
    opacity: 1;
    /*display: block;*/
    transition: .3s;
}

.show .select-list.hauto {
	height: auto;
}

.select-list li {
	font-family: 'Helveticaneuecyr-Roman';
	font-size: 16px;
    line-height: 1.3;
	font-weight: 100;
	color: #000;
    border-top: 1px solid rgba(0,0,0,0.25);
	padding: 12px 15px 10px 15px;
	cursor: pointer;
	margin-top: 0;
}

.select-list li:before {
	display: none;
}

@media(max-width: 767px) {
    .select-list li {
		padding-left: 15px;
        padding-right: 15px;
    }
}

.select-list li:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.3);
}

.select-list li:hover, .select-list li.li-active {
	color: #fff;
	background: #016b93;
}
