/* свойства модального окна по умолчанию */ 
.modal { 	position: fixed; /* фиксированное положение */ 	top: 0; 	right: 0; 	bottom: 0; 	left: 0; /* цвет фона */ 	z-index: 99999; 	opacity: 0; /* по умолчанию модальное окно прозрачно */ 	-webkit-transition: opacity 200ms ease-in; 	-moz-transition: opacity 200ms ease-in; 	transition: opacity 200ms ease-in; /* анимация перехода */ 	pointer-events: none; /* элемент невидим для событий мыши */ 	margin: 0; 	padding: 0; 	background-color: rgba(0,0,0,0.9); } 
/* при отображении модального окно */ 
.modal:target { 	opacity: 1; /* делаем окно видимым */ 	pointer-events: auto; /* элемент видим для событий мыши */ 	overflow-y: auto; } 
/* ширина модального окна и его отступы от экрана */ 
.modal-dialog { 	position: relative; 	width: 100%; 	margin: 0px; 	float: left; 	padding: 0px; } 
@media (min-width: 576px) {   .modal-dialog { 	max-width: 100%; 	margin-right: auto; 	margin-left: auto; 	position: relative; 	float: left; } } 
/* свойства для блока, содержащего контент модального окна */ 
.modal-content { 	position: relative; 	display: -webkit-box; 	display: -webkit-flex; 	display: -ms-flexbox; 	-webkit-box-orient: vertical; 	-webkit-box-direction: normal; 	-webkit-flex-direction: column; 	-ms-flex-direction: column; 	flex-direction: column; 	background-color: #fff; 	-webkit-background-clip: padding-box; 	background-clip: padding-box; 	border: 1px solid rgba(0,0,0,.2);  border-radius: .3rem; 			outline: 0; } 
@media (min-width: 768px) {   
.modal-content { 	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5); 	box-shadow: 0 5px 15px rgba(0,0,0,.7); 	width: 420px; 	margin-right: auto; 	margin-left: auto; 	float: none; 	padding: 0px; 	margin-top: 8%; 	background-color: rgba(255,255,255,0.8); } } 
/* свойства для заголовка модального окна */ 
.modal-header {     display: -webkit-box;     display: -webkit-flex;     display: -ms-flexbox;     display: flex;     -webkit-box-align: center;     -webkit-align-items: center;     -ms-flex-align: center;     align-items: center;     -webkit-box-pack: justify;     -webkit-justify-content: space-between;     -ms-flex-pack: justify;     justify-content: space-between;     padding: 15px;     border-bottom: 1px solid #eceeef; } 
.modal-title {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.2;
	font-size: 40px;
	font-weight: bold;
	color: #050609;
	font-family: "Century Gothic";
	margin-right: auto;
	margin-left: auto;
	text-shadow: 3px 3px 3px #666;
	text-transform: none;
}
/* свойства для кнопки "Закрыть" */ 
.close { 	float: right; 	font-family: sans-serif; 	font-size: 1px; 	line-height: 1; 	text-shadow: 0 1px 0 #fff; 	opacity: .5; 	text-decoration: none; 	background-image: url(../image/imgs-arrow/lightbox-icon-close-compact.png); 	height: 30px; 	width: 30px; } 
/* свойства для кнопки "Закрыть" при нахождении её в фокусе или наведении */ 
.close:focus, .close:hover { 	color: #FFF; 	text-decoration: none; 	cursor: pointer; 	opacity: .75; } /* свойства для блока, содержащего основное содержимое окна */ 
.modal-body { 	position: relative; 	-webkit-box-flex: 1; 	-webkit-flex: 1 1 auto; 	-ms-flex: 1 1 auto; 	flex: 1 1 auto; 	padding: 0px; 	overflow: auto; }
/*form*/ 
#feedback-form { /* вся форма */ 	border-radius: 3px; 	font-family: "Century Gothic"; 	font-size: 10px; 	color: #050609; 	background-color: rgba(0,0,0,0.9); 	width: 100%; 	height: 100%; 	padding-top: 10px; 	padding-right: 0px; 	padding-bottom: 10px; 	padding-left: 0px; } 
#feedback-form a{ 	font-family: "Century Gothic"; 	font-size: 10px; 	color: #FFF; } 
#feedback-form a:hover{ 	font-size: 10px; 	color: #F90; } 
#feedback-form label { /* наименование полей */ 	display: block; 	clear: right; 	float: none; } 
#feedback-form .w100 { /* поля */ 	max-width: 400px; 	width: 90%; 	margin-bottom: 10px; 	padding: 1%; 	font-family: "Century Gothic"; 	font-size: 16px; 	background-color: rgba(255,255,255,0.8); 	color: #000; 	margin-right: auto; 	margin-left: auto; } 
#feedback-form .border { /* граница полей */ 	border-radius: 1px; 	border-width: 1px; 	border-style: solid; 	border-color: #333333; 	box-shadow: 0px 1px 1px rgba(255,255,255,.5),0 1px 1px rgba(0,0,0,.1) inset; } 
#feedback-form .border:focus { 	outline: none; 	border-color: #abd9f1 #bfe3f7 #bfe3f7; } 
#feedback-form .border:hover { 	border: 1px solid #FF9900; } 
#feedback-form .border:focus::-moz-placeholder { /* убрать при фокусе первоначальный текст поля */   color: transparent; } 
#feedback-form .border:focus::-webkit-input-placeholder {   color: transparent; } 
#feedback-form .border:not(:focus):not(:hover):valid { /* правильно заполненные поля */   opacity: .8; } 
.box-check { 	height: 40px; 	width: 90%; 	margin-top: 5px; 	margin-bottom: 5px; 	padding-bottom: 5px; 	color: #FFF; 	margin-right: auto; 	margin-left: auto; }  
.check { 	height: 30px; 	width: 30px; 	display: inline-block; 	float: left; 	cursor: pointer; }  
.file { 	font-family: "Century Gothic"; 	font-size: 14px; 	color: #000; 	width: 92%; 	height: auto; 	background-color: rgba(255,255,255,0.5); 	font-weight: bold; 	cursor: pointer; 	margin-bottom: 10px; 	margin-left: auto; 	margin-right: auto; }  
.check-txt { 	height: auto; 	width: 80%; 	display: inline-block; 	vertical-align: top; 	font-family: "Century Gothic"; 	font-size: 10px; 	color: #FFF; 	margin-bottom: 10px; 	margin-right: auto; 	margin-left: auto; }  
#submitFF { /* кнопка "Отправить" */ 	border: 1px solid #666; 	border-radius: 3px; 	box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset; 	font-size: 14px; 	font-family: "Century Gothic"; 	font-weight: bold; 	padding-top: 2%; 	padding-right: 5%; 	padding-bottom: 2%; 	padding-left: 5%; 	background-color: #FFF; 	cursor: pointer; } 
#submitFF:hover { 	background-color: rgba(255,153,0,0.9); 	border: 1px solid #F90; } 
#feedback-form br {   height: 0;   clear: both; } 
#submitFF:focus { 	box-shadow: 0 1px 1px #fff, inset 0 1px 2px rgba(0,0,0,.8), inset 0 -1px 0 rgba(0,0,0,.05); }
.grecaptcha-badge{ 	display: none; }
