* {
	margin: 0;
	padding: 0;
	border: none;
	box-sizing: border-box;
}

body{
    font-family: 'Roboto Condensed Regular';
	font-size: 18px;
	background-color: #ffffff;
	position: relative;
}

a {
	text-decoration: none;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.container {
	padding: 0 15px;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
}

.section-title {
	font-size: 54px;
	font-family: 'Roboto Condensed Bold';
	color: #09152e;
	text-transform: uppercase;
	text-align: center;
}

.section-subtitle {
	font-size: 44px;
	font-family: 'Roboto Condensed Bold';
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 35px;
}

.send-error {
	display: none;
	font-size: 16px;
	color: #d83f13;
}

.send-success {
	display: none;
	font-size: 16px;
	color: #61D20C;
}

.scrolloff {
	pointer-events: none;
}

.back-top {
	display: block;
	background: url(../img/arrow_top.png) center no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	position: fixed;
	bottom: 5%;
	right: 3%;
	z-index: 10;
	opacity: 0;
	-webkit-transition: ease .3s all;
	-moz-transition: ease .3s all;
	-o-transition: ease .3s all;
	transition: ease .3s all;
}

.back-top:hover {
	background: url(../img/arrow_top_hover.png) center no-repeat;
	background-size: contain;
	-webkit-transition: ease .3s all;
	-moz-transition: ease .3s all;
	-o-transition: ease .3s all;
	transition: ease .3s all;
}

.visible{
	opacity:1;
	-webkit-transition: ease .3s all;
	-moz-transition: ease .3s all;
	-o-transition: ease .3s all;
	transition: ease .3s all;
}

.hidden{
	opacity: 0;
	-webkit-transition: ease .3s all;
	-moz-transition: ease .3s all;
	-o-transition: ease .3s all;
	transition: ease .3s all;
}

.color_orange {
	color: #fe9c00;
}
	

/*
*************** Header ***************
*/

header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: solid 1px #7e7e7e;
	line-height: 1;
}

.navbar {
	font-size: 0;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	background: #fe9c00;
	-webkit-transition: ease .5s all;
	-moz-transition: ease .5s all;
	-o-transition: ease .5s all;
	transition: ease 0.5s all;
}

.navbar__item {
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: ease .25s all;
	-moz-transition: ease .25s all;
	-o-transition: ease .25s all;
	transition: ease 0.25s all;
}

.navbar__item a {
	display: block;
	font-size: 18px;
	font-family: 'Roboto Condensed Bold';
	color: #202325;
	padding: 25px 35px;
	text-transform: uppercase;
	-webkit-transition: ease .25s all;
	-moz-transition: ease .25s all;
	-o-transition: ease .25s all;
	transition: ease 0.25s all;
}

.resized {
	font-size: 17px !important;
	padding: 20px 22px !important;
	-webkit-transition: ease .4s all !important;
	-moz-transition: ease .4s all !important;
	-o-transition: ease .4s all !important;
	transition: ease 0.4s all !important;
}

.navbar__item a:hover {
	color: #ffffff;
	-webkit-transition: ease .25s all;
	-moz-transition: ease .25s all;
	-o-transition: ease .25s all;
	transition: ease 0.25s all;
}

.show-menu {
	text-decoration: none;
	text-align: right;
	padding: 25px 10px;
	display: none;
	height: 20px;
	width: 20px;
	margin: 0 10px;
    background: url(../img/menu_open.png) center no-repeat;
	background-size: contain;
}

.show-menu:hover {
	cursor: pointer;
}

input[type=checkbox]{
    display: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

input[type=checkbox]:checked ~ .navbar{
    display: block;
	-webkit-transition: ease .5s all;
	-moz-transition: ease .5s all;
	-o-transition: ease .5s all;
	transition: ease 0.5s all;
}

.header-container {
	background: #202325; 
}

.header-line {
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
	height: 88px;
	padding: 25px 10px 15px;
	-webkit-transition: linear .2s all;
	-moz-transition: linear .2s all;
	-o-transition: linear .2s all;
	transition: linear 0.2s all;
}

.header-line__logo {
	position: absolute;
	left: 15px;
	bottom: 20px;
}

.header-line__title {
	text-align: center;
	color: #acacac;
	font-size: 48px;
	text-transform: uppercase;
	letter-spacing: 10px;
	position: absolute;
    width: 100%;
    left: 0;
    bottom: 15px;
}

.header-line__contacts {
	position: absolute;
	right: 15px;
	bottom: 20px;
}

.header-line__phone {
	display: block;
	color: #ffffff;
	font-family: Calibri;
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 5px;
}


.header-line__callback {
	text-align: right;
}

.header-line__callback a {
	color: #fe9c00;
	font-family: Calibri;
	font-size: 16px;
	border-bottom: 1px dashed #fe9c00;
	text-align: right;
}


.popd {
	display: block;
	color: #ffffff;
	font-family: Calibri;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 5px;
}


.popd a {
	color: #fe9c00;
	font-family: Calibri;
	font-size: 16px;
	border-bottom: 1px dashed #fe9c00;
	text-align: right;
}


/*
*************** Top ***************
*/

.top-section__container {
	background: url(../img/top_bg.jpg) top center no-repeat;
	background-size: cover;
	position: relative;
	padding: 72px 0 0 0;
	height: 100vh;
}

.top-section__title {
	display: inline-block;
    margin-top: 15%;
    margin-left: 6%;
    font-size: 0;
    max-width: 760px;
}

.top-section__title span {
	display: inline-block;
	font-family: 'Roboto Condensed Bold';
	color: #ffffff;
}

.top-section__title span:first-child {
	background: rgba(0,0,0,0.4);
	padding: 0 30px;
	font-size: 100px;
	text-transform: uppercase;
}

.top-section__title span:last-child {
	background: rgba(0,0,0,0.4);
	padding: 0 30px 20px;
	font-size: 72px;
}


/*
*************** Partners ***************
*/

.service-container {
    padding: 0 15px;
    max-width: 1390px;
    margin: 40px auto 0;
}

.service {
	max-width: 1390px;
	margin: 0 auto;
	padding: 80px 10px;
	background: #f6f6f6;
	text-align: left;
}

.service p {
	max-width: 1175px;
	margin: 0 auto;
}

.section-text {
	font-size: 18px;
}

.service .section-title {
	margin: 0 auto 80px;
}





/*
*************** How it works ***************
*/

.section-title_work {
	margin: 75px 0 0;
}

table, tr, td, th {
  position: relative;
}

.table-container {
    background: #f6f6f6;
    position: absolute;
    top: 320px;
    left: -1095px;
    padding: 15px;
    width: 2000px;
}

.table-container .section-title {
	padding: 15px 0 30px 895px;
}

.table-wrapper {
	border-bottom: solid 2px #fe9c00;
}

.steps-table {
    color: #fff;
    font-size: 20px;
    font-family: Calibri;
    font-weight: 700;
    position: relative;
    float: right;
}

.text_vertical {
	color: #000000;
	transform-origin: 0 50%;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 200px;
}

.background_orange {
	background: #fe9c00;
}

.background_blue {
	background: #4b9dc7;
}

.background_green {
	background: #69bb4f;
}

.steps-table__td-1 {
    height: 200px;
    width: 75px;
}

.steps-table__td-2 {
    height: 200px;
    text-align: center;
    width: 130px;
}

.steps-table__td-3 {
	width: 130px;
}

.steps-table__td-3 span {
	left: 80%;
    bottom: 0%;
}

.steps-table__td-4 {
    height: 40px;
    font-size: 20px;
    padding: 0 0 0 40px;
    width: 310px;
}

.steps-table__td-5 {
	height: 50px;
    font-size: 20px;
    padding: 0 0 0 40px;
    width: 310px;
}

.steps-table__td-6 {
	width: 130px;
    height: 110px;
    text-align: center;
}

.steps-table__td-7 {
    width: 180px;
    height: 110px;
}

.steps-table__td-8 {
	height: 200px;
    width: 150px;
}

.steps-table__td-8 span {
    left: 50%;
    bottom: -19%;
}

.steps-table__td-9 {
    width: 100px;
	text-align: center;
}

.price-table {
	position: relative;
	width: 1220px;
	height: 900px;
	margin: 0 auto;
}

.work {
	position: relative;
	width: 100%;
	height: 100%;
}

.work__item {
	display: block;
}

.work__img {
	position: absolute;
	width: 150px;
}

.work__img img {
	width: 150px;
}

.work__text {
	position: absolute;
	font-size: 16px;
	font-family: Calibri;
	font-weight: 700;
    width: 320px;
    padding: 0 10px;
}

.work__img_1 {
	top: 0;
    left: 10px;
}

.work__img_2 {
	top: 95px;
    left: 340px;
    width: 173px;
}

.work__img_2 img {
    width: 173px;
}

.work__img_3 {
	top: 0;
	left: 760px;
}

.work__img_4 {
	top: 290px;
    left: 960px;
}

.work__img_5 {
    top: 700px;
    left: 860px;
}

.work__img_6 {
    top: 680px;
    left: 308px;
    width: 170px;
}

.work__img_6 img {
    width: 170px;
}

.work__text_1 {
    top: 170px;
    left: 0;
}


.work__text_2 {
    top: 160px;
    left: 490px;
}

.work__text_2 > span:nth-child(1) {
	display: block;
	font-size: 20px;
	text-transform: uppercase;
	padding: 0 0 10px;
}

.work__text_2 p {
    position: relative;
    padding: 0 0 0 15px;
}

.work__text_2 p span {
    position: absolute;
    top: 0;
	left: 0;
}


.work__text_3 {
    top: 70px;
    left: 913px;
}

.work__text_3 span {
	text-transform: uppercase;
}


.work__text_4 {
	top: 455px;
    left: 905px;
}

.work__text_4 span {
	text-transform: uppercase;
}

.work__text_5 {
    top: 760px;
    left: 540px;
}


.work__text_6 {
    top: 740px;
    left: 15px;
}

.steps-table-min {
	width: 100%;
	display: none;
}

.steps-table-min td {
	padding: 10px;
}

.points {
	display: block;
	position: absolute;
}

.points_1 {
    top: 80px;
    left: 168px;
}

.points_2 {
    top: 95px;
    left: 632px;
}

.points_3 {
	top: 148px;
    left: 877px;
}

.points_4 {
    top: 544px;
    left: 944px;
}

.points_5 {
    top: 802px;
    left: 445px;
}





/*
*************** Sliders ***************
*/ 

.swiper-container {
	width: 100%;
	height: 350px;
	max-width: 1360px;
	margin: 0 auto;
}

.swiper-slide {
	background-color: #ffffff;
	background-position: center;
	background-size: cover;
}

.wrapper {
	position: absolute;
	left: 0;
	top: 0;
	padding: 45px 45px 30px;
}




/*
*************** Decision ***************
*/

.decision {
	padding: 75px 0 75px;
}

.swiper-container_decision {
	width: 100%;
	height: 350px;
}

.decision .section-title {
	padding: 0 0 55px;
}

.decision .section-text {
	max-width: 975px;
	padding: 0 15px;
	text-align: center;
	margin: 0 auto;
}

.decision-title {
	font-family: Calibri;
	font-size: 40px;
	font-weight: 700;
	padding: 80px 0;
	text-align: center;
}

.decision-slider {
	font-size: 0;
	text-align: center;
}

.decision-slider__item {
	display: inline-block;
	max-width: 320px;
	vertical-align: top;
}

.decision-slider__img {
	display: block;
	height: 130px;
	margin: 0 auto;
}

.decision-slider__text {
	display: block;
	font-size: 18px;
	text-align: center;
	padding: 55px 0
}





/*
*************** Order ***************
*/

.order {
	padding: 65px 15px;
	border: 7px solid #f6f6f6;
	max-width: 1390px;
	margin: 0 auto;
}

.order .section-title {
	padding: 0 0 40px;
}


.order .section-text {
	max-width: 1140px;
	padding: 0 0 30px;
	margin: 0 auto;
}




/*
*************** Investor ***************
*/

.investor {
	padding: 70px 0 50px;
}

.investor .section-title {
	padding: 0 0 40px;
}

.investor .section-text {
	max-width: 1100px;
	padding: 0 15px 30px;
	margin: 0 auto;
	text-align: left;
}

.swiper-container_investor {
	height: 640px;
}

.investor-title {
	text-align: center;
	text-transform: uppercase;
	font-family: Calibri;
	font-size: 20px;
	font-weight: 700;
	padding: 35px 0 45px;
}

.investor-slider__item {
	display: inline-block;
}

.investor-slider__description {
	text-align: center;
	font-size: 0;
	margin: 0 0 40px;
}

.investor-slider__number {
	display: inline-block;
	vertical-align: middle;
	font-size: 80px;
	font-family: 'Roboto Condensed Bold';
	color: #fe9c00;
	margin: 0 15px 0 0;
}

.investor-slider__text {
	display: inline-block;
	vertical-align: middle;
	max-width:345px;
	font-size: 18px;
	text-align: left;
}

.investor-slider__img {
	display: block;
	margin: 0 auto;
	max-height: 70%
}




/*
*************** Low list ***************
*/

.low-container {
	margin: 0 auto;
	padding: 0 15px;
	max-width: 1390px;
}

.low {
	background: #f6f6f6;
	padding: 60px 0;
}

.low .section-title {
	padding: 0 0 70px;
}

.low-list {
	margin: 0 auto;
	max-width: 1200px;
}

.low-list__item {
	display: block;
	width: 100%;
	position: relative;
	transition: ease 0.25s all;
}

.low-list__item:before {
	display: block;
	position: absolute;
	left: 7px;
	top: -6px;
    content: ".";
    color: #cacaca;
	font-size: 40px;
}

.low-list__item a {
	display: block;
	padding: 15px 10px 15px 25px;
    color: #202325;
	font-size: 24px;
	font-family: Calibri;
	outline: none;
}

.low-list__item:hover {
	background: #202325;
	transition: ease 0.25s all;
}

.low-list__item:hover a {
	color: #ffffff;
}

.low-list__item:hover:before{
    color: #fe9c00;
}

.low-items {
	display: none;
	width: 100%;
	max-width: 768px;
}





/*
*************** Partners ***************
*/

.partners {
	padding: 75px 15px;
	max-width: 1390px;
	margin: 0 auto;
}

.partners .swiper-container {
	max-width: 1170px;
	height: 200px;
}

.partners .section-title {
	margin: 0 0 80px;
}

.partners-slider__text {
	font-size: 18px;
}

.partners-slider__item {
	width: 195px !important;
	padding: 0 15px;
	list-style-type: none;
}





/*
*************** Features ***************
*/

.features-list {
	text-align: center;
	padding: 100px 15px 50px;
	font-size: 0;
}

.features-list__item {
    display: inline-block;
    vertical-align: top;
    width: 20%;
	min-width: 250px;
    margin: 0 0 50px;
}

.features-list__img {
	display: block;
	margin: 0 auto 50px;
	height: 55px;
}

.features-list__text {
	margin: 0 auto;
	display: block;
	width: 250px;
	font-size: 18px;
	font-family: Calibri;
}







/*
*************** Callback section ***************
*/

.callback-section {
	background: url(../img/left_bg.jpg) top left no-repeat;
	background-size: cover;
	padding: 40px 0 50px;
}

.callback-section .section-title {
	color: #fe9c00;
	margin: 0 0 70px;
}

.callback-section form {
	background: transparent;
	display: block;
	position: relative;
	margin: 0 auto;
	left: auto;
	top: auto;
	z-index: 2;
	text-align: center;
}



/*
*************** Callback form ***************
*/

.overlay {
	display: none;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}

.error {
	font-style: italic;
	color: #d83f13;
	display: block !important;
    font-size: 14px;
}

.callback {
	display: none;
	width: 32%;
	max-width: 400px;
	min-width: 280px;
	padding: 20px;
	position: fixed;
	top: 10%;
	left: calc((100% - 0.32*(100vw))/2);
	background: #1a2233;
	z-index: 15;
	color: #ffffff;
	text-align: center;
}

.callback_bot {
	display: block;
	position: relative;
	margin: 0 auto;
	left: auto;
	top: auto;
	z-index: 2;
}

.show {
	display: block;
	transition: ease 0.5s all;
}

.input-group {
    display: inline-block;
	vertical-align: top;
    width: 300px;
    margin: 0 15px 25px;
}

form input {
    font-size: 16px;
    color: #ffffff;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid #f99901;
    border-radius: 50px;
	width: 100%;
    margin: 0 0 10px;
	background: rgba(0,0,0,0.45);
}

form input:focus {
	outline: none;
}

form input::-webkit-input-placeholder {
	font-family: 'Roboto Condensed Light';
	font-size: 14px;
	color: #ffffff;
}
form input::-moz-placeholder {
	font-family: 'Roboto Condensed Light';
	font-size: 14px;
	color: #ffffff;
}
form input:-ms-input-placeholder {
	font-family: 'Roboto Condensed Light';
	font-size: 14px;
	color: #ffffff;
}
form input:-moz-placeholder {
	font-family: 'Roboto Condensed Light';
	font-size: 14px;
	color: #ffffff;
}

input[type="submit"] {
    font-size: 18px;
    text-transform: uppercase;
    display: block;
    border-radius: 75px;
    padding: 30px 90px;
    font-family: 'Roboto Condensed Regular';
    background: #fe9c00;
    border: none;
    color: #000000;
    margin: 30px auto 20px;
    width: auto;
    transition: ease 0.4s all;
}

input[type="submit"]:hover {
	cursor: pointer;
	background: #ffffff;
	color: #fe9c00;
	transition: ease 0.4s all;
}

.map {
	width: 100%;
}



/*
*************** Adaptive styles ***************
*/
@media screen and (max-width: 1366px) {
	.navbar__item a {
		padding: 25px 30px;
	}
	.header-line__logo {
		width: 130px;
	}
	.header-line__title {
		font-size: 31px;
	}
	.header-line__phone {
		font-size: 22px;
	}
	.header-line__callback a {
		font-size: 12px;
	}
	.header-line {
		height: 70px;
	}
	.features-list__item {
		width: 33%;
	}
}

@media screen and (max-width: 1279px) {
	.price-table {
		width: 100%;
		height: auto;
		text-align: center;
	}
	.work {
		padding: 0 15px;
	}
	.work__item {
		text-align: center;
		display: inline-block;
		vertical-align: top;
	}
	.work__img,
	.work__text {
		position: relative;
		top: auto;
		left: auto;
		display: block;
		margin: 0 auto;
		text-align: left;
	}
	.work__img {
		height: 190px;
	}
	.work__img img {
		display: block;
		position: absolute;
		bottom: 30px;
	}
	.work__text {
		margin: 0 0 20px;
	}
	.table-container {
		display: inline-block;
		position: relative;
		top: auto;
		left: auto;
		padding: 15px;
		width: auto;
		margin: 50px 0 0;
	}
	.table-container .section-title {
		padding: 15px 0 30px;
	}
	.steps-table {
		float: none;
	}
	.points {
		display: none;
	}
}

@media screen and (max-width: 1280px) {
	.swiper-container_decision {
		height: 675px;
	}
}
	
@media screen and (max-width: 1200px) {
	.navbar__item a {
		font-size: 15px;
		padding: 22px 25px;
	}
	.decision-slider__text {
		margin: 0 auto;
		max-width: 320px;
	}
}
	
@media screen and (max-width: 1024px) {
	header .container {
		padding: 0;
	}
	.navbar {
		display: none;
		position: relative;
		transition: ease 0.5s all;
	}
	.navbar__item {
		display: block;
		padding: 0;
	}
	.navbar__item a {
		border-bottom: solid 1px #7e7e7e;
		padding: 15px 10px;
	}
	.header-line {
		padding: 0;
		height: 0;
	}
	.header-line__title,
	.header-line__contacts {
		display: none;
	}
	.header-line__logo {
		right: 15px;
		bottom: -40px;
		left: initial;
		width: 100px;
	}
	.show-menu {
		display:block;
		transition: ease 0.5s all;
	}
	input[type=checkbox]:checked + .show-menu {
		background: url(../img/menu_close.png) center no-repeat;
		background-size: contain;
	}
	.partners {
	    padding: 20px 0;
	    position: relative;
	    bottom: auto;
	    left: auto;
	}
	.display-none {
		top: auto;
		height: auto;
	}
}

@media screen and (max-width: 978px) {
	.section-title {
		font-size: 39px;
	}
	.product__description,
	.product__slider,
	.map,
	.contacts {
		float: none;
		width: 100%;
	}
	.wrapper {
		position: initial;
		padding: 30px 45px;
	}
	.product__text {
		max-width: 100%;
	}
	#modal-form input[type="submit"] {
		padding: 20px 40px;
	}
	.top-section__title span:first-child {
		font-size: 90px;
	}
	.top-section__title span:last-child {
		font-size: 64px;
	}
	.section-subtitle {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	.wrapper,
	.section-title {
		text-align: center;
	}
	#modal-form {
		width: 295px;
		left: calc((100% - 295px)/2);
	}
	.top-section__title {
		margin: 15% auto 0;
		max-width: 600px;
	}
	.top-section__title span:first-child {
		font-size: 50px;
	}
	.top-section__title span:last-child {
		font-size: 35px;
	}
	.top-section__title {
		margin: 100px auto 0;
		text-align: center;
	}
	.top-section__container {
		height: auto;
		padding: 0 0 60px;
	}
	.steps-table {
		display: none;
	}
	.steps-table-min {
		display: table;
	}
} 
@media screen and (max-width: 640px) {
	.investor-slider__number {
		font-size: 60px;
		margin: 0 5px 0 0;
	}
	.investor-slider__text {
		max-width: 255px;
		font-size: 13px;
		padding: 0 5px 0 2px;
	}
	.investor-slider__img {
		width: 300px;
	}
	.swiper-container_investor {
		height: 460px;
	}
	.investor-slider__img {
		max-height: auto;
	}
	.swiper-container_decision {
		height: 1300px;
	}
} 
@media screen and (max-width: 480px) {
	.wrapper {
		position: relative;
		padding: 15px 25px;
	}
	.section-title {
		font-size: 30px;
	}
	.top-section__title span:first-child {
		font-size: 35px;
	}
	.top-section__title span:last-child {
		font-size: 25px;
	}
	.input-group {
		width: auto;
	}
	.section-subtitle {
		font-size: 24px;
	}
}


.display-none {
    top: -150px;
    height: 0;
    padding: 0;
	-webkit-transition: ease .2s all;
	-moz-transition: ease .2s all;
	-o-transition: ease .2s all;
	transition: ease 0.2s all;
}



















 /* 10.05.19  */

 
.open-button {
    position: fixed;
    bottom: 22px;
    left: 26px;
    width: 330px;
	background-color: #FE9C00;
	text-align: center;
    .. }

	
/* Стили модального окна и содержания 
-------------------------------------------------------------------------------*/
 
/* слой затемнения */
 
.dm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
/* активируем модальное окно */
 
.dm-overlay:target {
    display: block;
    -webkit-animation: fade .6s;
    -moz-animation: fade .6s;
    animation: fade .6s;
}
/* блочная таблица */
 
.dm-table {
    display: table;
    width: 100%;
    height: 100%;
}
/* ячейка блочной таблицы */
 
.dm-cell {
    display: table-cell;
    padding: 0 1em;
    vertical-align: middle;
    text-align: center;
}
/* модальный блок */
 
.dm-modal {
    display: inline-block;
    padding: 0px;
    max-width: 50em;
	width: 30em;
    background: #FE9C00;
    -webkit-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.22), 0px 19px 60px rgba(0, 0, 0, 0.3);
    color: #cfd8dc;
    text-align: left;
}

/* рисуем кнопарь закрытия */
 
.close {
    z-index: 9999;
    float: right;
    width: 30px;
    height: 30px;
    color: #cfd8dc;
    text-align: center;
    text-decoration: none;
    line-height: 26px;
    cursor: pointer;
}
.close:after {
    display: block;
    border: 2px solid #cfd8dc;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: 'X';
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    transform: scale(0.85);
}
/* кнопка закрытия при наведении */
 
.close:hover:after {
    border-color: #fff;
    color: #fff;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
/* варианты фонвой заливки модального блока */
 
.green {
    background: #388e3c!important;
}
.cyan {
    background: #0097a7!important;
}
.teal {
    background: #00796b!important;
}
/* движуха при появлении блоков с содержанием */
 
@-moz-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}
@-webkit-keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}
@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1
    }
}
