/*Кнопка быстрого заказа*/
.button-bystryi-zakaz {
	display: block;
	background-color: #1B9103;
	width: 120px;
	height: 26px;
	border: none;
	border-radius: 3px;
	color: #fff;
	text-align: center;
	line-height: 26px;
	margin-top: 15px;
	transition: 0.3s;
}
.button-bystryi-zakaz:hover {
	color: #fff;
  text-decoration: none;
  background-color: #A1A1A1;
}
.button-bystryi-zakaz:focus {
	color: #fff;
	text-decoration: none;
}
/*Конец Кнопка быстрого заказа*/

/*Для всплывающего окна Popup*/
.hidden {
	display: none;
}

form.popup {
	padding: 10px 25px 25px 25px;
	background-color: #fff;
	max-width: 400px;
	margin: auto;
	position: relative;
	border-radius: 5px;
	text-align: center;
	display: block;
}

.popup .popap-zag {
	font: 400 20px/20px Franklin, Arial, sans-serif;
	color: #383838;
	margin: 20px 0;
}

.popup input.phone {
	margin: 0 auto;
	display: block;
	width: 70%;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #b1b1b1;
  background-color: transparent;
  text-align: center;
  color: #1e1e1e;
  font-size: 15px;
  line-height: 30px;
  margin-bottom: 20px;
  cursor: auto;
  transition: 0.3s;
}

.popup button.button {
	width: 71%;
  height: 40px;
  background-color: #1B9103;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  margin: 0;
  transition: 0.3s;
}
.popup button.button:hover {
	margin: 0;
}

.mfp-bg {
	opacity: 0.7;
}
/*Конец Для всплывающего окна Popup*/

/*Для сообщений об отправке заявки*/
.otpravka-zayavki,
.zayavka-otpravlena {
	font: 400 20px/20px Franklin, Arial, sans-serif;
	color: #383838;
	margin: 40px 0 25px 0;
}
/*Конец Для сообщений об отправке заявки*/

/*Анимация для попап окон*/
.my-mfp-zoom-in .popup {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out; 
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out; 
	transition: all 0.2s ease-in-out; 
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
}

.my-mfp-zoom-in.mfp-ready .popup {
	opacity: 1;
	-webkit-transform: scale(1); 
	-moz-transform: scale(1); 
	-ms-transform: scale(1); 
	-o-transform: scale(1); 
	transform: scale(1); 
}

.my-mfp-zoom-in.mfp-removing .popup {
	-webkit-transform: scale(0.8); 
	-moz-transform: scale(0.8); 
	-ms-transform: scale(0.8); 
	-o-transform: scale(0.8); 
	transform: scale(0.8); 
	opacity: 0;
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out; 
	-moz-transition: opacity 0.3s ease-out; 
	-o-transition: opacity 0.3s ease-out; 
	transition: opacity 0.3s ease-out;
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8;
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0;
}
/*Конец анимация для попап окон*/