#feedback-form { /* вся форма */ 
  width:100%;
  padding: 3%;
  border-radius: 0px 0px 3px 3px;
  background: #f1f1f1; /*цвет фона*/
  border: #3320D9;
box-sizing: border-box;box-shadow:  0 16px 20px rgba(0,0,0,0.2);
}
#feedback-form label { /* наименование полей */ 
  float: left;
  display: block;
  clear: right;
  font-size:14px
}
#feedback-form .w100 { /* поля */ 
  float: right;
  max-width:250px;
  width:70%;
  margin-bottom: 1em;
  padding: 0.5%;
}
#feedback-form .border { /* граница полей */ 
  border-radius: 1px;
  border-width: 1px;
  border-style: solid;
  border-color: #C0C0C0 #D9D9D9 #D9D9D9;
  box-shadow: 0 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-color: #7eb4ea #97cdea #97cdea;
}
#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;
}
#submitFF { /* кнопка "Отправить" */ 
  padding: 2%;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
  background: #5C1ED0;
  color: #fff;
}
#feedback-form br {
  height: 0;
  clear: both;
}
#submitFF:hover {
  background: #5c90c2;
}
#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);
}
.header {    color:#ffffff;
    font-size:2em;
 text-decoration: none; /* убирать подчёркивание у ссылок */
  user-select: none; /* убирать выделение текста */
  background: #5C1ED0; /* фон кнопки */
  padding: .2em .3em; /* отступ от текста */
text-align: center;
  outline: none; /* убирать контур в Mozilla */
border-radius: 3px 3px 0px 0px;
  width: 100%;
}
.footer {
font-size:0.8em;}
.modalDialog {
		position: fixed;
		font-family: Arial, Helvetica, sans-serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		z-index: 99999;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		display: none;
		pointer-events: none;
	}

	.modalDialog:target {
	overflow-y: auto;
	display: block;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 50%;
		position: relative;
		margin: 5% auto;
		padding: 5px 20px 13px 20px;
		border-radius: 10px;
		background: #fff;
		background: -moz-linear-gradient(#fff, #999);
		background: -webkit-linear-gradient(#fff, #999);
		background: -o-linear-gradient(#fff, #999);
	}

	.close {
		background: #606061;
		color: #FFFFFF;
		line-height: 25px;
		position: absolute;
		right: -12px;
		text-align: center;
		top: -10px;
		width: 24px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		-moz-box-shadow: 1px 1px 3px #000;
		-webkit-box-shadow: 1px 1px 3px #000;
		box-shadow: 1px 1px 3px #000;
	}

	.close:hover { background: #00d9ff; }
