.button {
	display: inline-block;
	color: #2b2b2b;
	font-family: Roboto;
	font-weight: 400;
	font-size: 15px;
	text-transform: uppercase;
	background-color: #fee152;
	border: 0;
	padding: 0 30px;
	height: 40px;
	line-height: 40px;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	cursor: pointer;
	width: 90%;
	max-width: 300px;
	box-sizing: border-box;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
}
.button.submit {
	font-weight: 500;
}
.button:hover {
	background-color: #fac32c;
}
.button:disabled {
	background-color: #FEF1AE !important;
	color: #666666 !important;
	cursor: default !important;
}
label {
	display: block;
	color: #000;
	font-family: Roboto;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 3px;
}
.form-row {
	display: flex;
	display: -moz-flex;
	display: -webkit-flex;
	justify-content: space-between;
	-moz-justify-content: space-between;
	-webkit-justify-content: space-between;
}
.form-column {
	width: 47%;
	text-align: left;
}
.form-field {
	margin-bottom: 15px;
}
.form-desciption p {
	color: #000;
	font-family: Roboto;
	font-weight: 300;
	font-size: 14px;
	margin-bottom: 15px;
}
.form-field input[type="text"],
.form-field textarea {
	display: block;
	color: #000;
	font-family: Roboto;
	font-weight: 300;
	font-size: 16px;
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	border: 1px solid #c4c4c4;
	width: 100%;
	box-sizing: border-box;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
}
.form-field textarea {
	resize: none;
	height: 120px;
	line-height: normal;
	padding-top: 10px;
	padding-bottom: 10px;
}
.form-field input[type="text"]:focus,
.form-field textarea:focus {
	border-color: #333;
}
.form-field input[type="text"]._error,
.form-field textarea._error {
	border-color: #FF0000 !important;
}
.form-file {
	display: inline-block;
	color: #2b2b2b;
	font-size: 13px;
	font-weight: 400;
	background: #fee152;
	padding: 0 15px;
	height: 40px;
	line-height: 40px;
	text-transform: uppercase;
	cursor: pointer;
}
.form-file:hover {
	background: #fac32c;
}
.form-file__list {
	padding-left: 15px;
	font-size: 13px;
	font-weight: 100;
	color: #999;
}
.form-file__list input {
    display: none;
}
.form-file__list li {
	margin-bottom: 5px;
}
.form-file__list li:last-child {
	margin-bottom: 0;
}
.form-file__list li i {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: transparent url('../images/file_delete.png') center no-repeat;
    background-size: contain;
    padding-left: 10px;
    margin-bottom: -3px;
    cursor: pointer;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
    opacity: 0.5;
    -moz-opacity: 0.5;
    -webkit-opacity: 0.5;
}
.form-file__list li i:hover {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
}
.answer {
	margin: 10px 0 15px;
	font-size: 15px;
	font-weight: 900;
	color: #339900;
}
.answer._error {
	font-size: 13px;
	font-weight: 100;
	color: #FF0000;
}
.contacts {
	width: 100%;
	height: 500px;
	border-top: 2px solid #222222;
}
.header-phone {
	font-size: 20px;
	font-weight: 600;
	color: #dedada;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 5px;
}
.t228__imglogo {
	height: 93px;
}
.phones {
	border-top: 2px solid #fac32c;
	padding: 50px 0;
	background: #222222;
}
.phones-caption {
	margin-bottom: 40px;
	text-align: center;
	font-size: 42px;
	line-height: 1.23;
	color: #fac32c;
	font-family: 'Roboto', Arial, sans-serif;
}
.phones-list {
	width: 100%;
	display: flex;
	display: -moz-flex;
	display: -webkit-flex;
	flex-direction: column;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	align-items: center;
	-moz-align-items: center;
	-webkit-align-items: center;
}
.phones-list__item {
	font-size: 16px;
	font-family: 'Roboto', Arial, sans-serif;
	margin-bottom: 10px;
	color: #fff;
}
.phones-list__item:last-child {
	margin-bottom: 0;
}
.phones-list__item._address {
	font-size: 14px;
	margin-top: 10px;
	font-weight: 300;
}

@media (max-width: 480px) {
	.form-row {
		flex-wrap: wrap;
		-moz-flex-wrap: wrap;
		-webkit-flex-wrap: wrap;
	}
	.form-column {
		width: 100%;
	}
	label {
		font-size: 12px;
	}
	.form-field input[type="text"] {
		height: 35px;
		padding-left: 10px;
		padding-right: 10px;
		line-height: 35px;
	}
	.form-field textarea {
		height: 80px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.form-desciption {
		display: none;
	}
}

/* ---------------- POPUP ---------------- */

.popup-overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1000;
}
.popup {
	display: block;
	position: fixed;
	left: 50%;
	top: 50%;
	width: 90%;
	max-width: 700px;
	height: auto;
	z-index: 1100;
	font-family: 'Roboto', 'Arial', sans-serif;
	transform: translate(-50%, -50%) scale(0.8);
	-moz-transform: translate(-50%, -50%) scale(0.8);
	-webkit-transform: translate(-50%, -50%) scale(0.8);
	background: #fff;
	transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	opacity: 0;
	-moz-opacity: 0;
	-webkit-opacity: 0;
	visibility: hidden;
}
.popup._show {
	transform: translate(-50%, -50%), scale(1);
	-moz-transform: translate(-50%, -50%) scale(1);
	-webkit-transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	visibility: visible;
}
.popup-close {
	position: absolute;
	right: 30px;
	top: 50%;
	line-height: normal;
	transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	cursor: pointer;
}
.popup-close svg polygon,
.popup-close svg path {
	fill: #424242;
	transition: 0.3s;
	-moz-transition: 0.3s;
	-webkit-transition: 0.3s;
}
.popup-close:hover svg polygon,
.popup-close:hover svg path {
	fill: #000;
}
.popup-head {
	text-align: left;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 900;
	color: #000;
	background: #FEE152;
	padding: 30px 90px 30px 30px;
	position: relative;
}
.popup-body {
	padding: 30px;
}

@media (max-width: 480px) {
	.popup-head {
		padding: 20px 70px 20px 20px;
		font-size: 17px;
	}
	.popup-close svg {
		width: 20px;
		height: auto;
	}
}

/* ---------------- /POPUP ---------------- */