body{
	font-family: 'Roboto', sans-serif;
	color:#fff;
	/*background:url(https://stopfiresystems.com/images/bg-stopfire.jpg) top center no-repeat #000;*/
	margin: 0;
	padding: 0;
	background-image: url('https://stopfiresystems.com/images/bg-stopfire.jpg');
	background-size: cover;        /* масштабирует картинку на всю площадь */
	background-position: center;   /* центрирует картинку */
	background-repeat: no-repeat;  /* не повторяет */
	background-attachment: fixed;  /* фон фиксирован при скролле (опционально) */
	height: 100vh;                 /* гарантирует высоту */
}

.overlay{
	/*background: rgba(45, 1, 1, 0.35);*/
	background: rgba(0, 0, 0, 0.30);
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	z-index:-1;
	overflow:hidden;
}

@media (min-width: 1200px){
	.container {
		/*width:1000px;*/
		/*width:1170px;*/
		/*position: absolute;*/
		/*top: 50%;*/
		/*left: 50%;*/
		/*transform: translate(-50%, -50%);*/
	}
}

#wrap{
	min-height: 100vh;
	display: flex;
	justify-content: center; /* центрируем контейнер по горизонтали */

/*	position:absolute;
	left:0;
	top:0;
	bottom:0;
	right:0;
	width:100%;
	height:100%;
	display:table;
	z-index:10000;*/
}

.container {
	width: 100%;
	max-width: 1200px; /* по желанию */
	min-height: 100vh;

	display: flex;
	flex-direction: column; /* вертикальная раскладка */
}

/* 🔝 Верхний блок */
.container-top {
	display: flex;
	/*align-items: flex-start; !* содержимое сверху *!*/
	flex-direction: column;   /* ← ВАЖНО: вертикально */
	align-items: center;      /* горизонтальное выравнивание */
	justify-content: center;  /* вертикальное выравнивание */
	text-align: center;       /* чтобы заголовки были по центру */
}

/* 🎯 Центральный блок */
.container-body {
	flex: 1; /* занимает всё свободное пространство */
	display: flex;
	flex-direction: column;   /* ← ВАЖНО: вертикально */
	align-items: center;      /* горизонтальное выравнивание */
	justify-content: center;  /* вертикальное выравнивание */
	text-align: center;       /* чтобы заголовки были по центру */
	/*background-color: rgba(0, 0, 0, 0.58);*/
}


/* 🔻 Нижний блок */
.container-footer {
	display: flex;
	flex-direction: column;   /* ← ВАЖНО: вертикально */
	align-items: center; /* содержимое снизу */
	justify-content: center;  /* вертикальное выравнивание */
	text-align: center;       /* чтобы заголовки были по центру */
}

/* 🔻 Нижний блок дно*/
.container-footer-bottom {
	width: 100%;
	display: flex;
	justify-content: space-between; /* разносит блоки влево и вправо */
	align-items: center;
	background: rgba(0, 0, 0, 0.78);
}



#defaultCountdown{
	z-index:2;
	margin:0 auto;
	display:table;
	position:relative;
	margin-top: 30px;
}

.countdown-row {
	margin:0 auto;
	width:100%;
	display:table;
	text-align:center;
}

.countdown-section {
	display: block;
	float: left;
	text-align: center;
	width:120px;
	height:120px;
	border-radius:50%;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	color: #fa2e13;
	background-color: rgba(0, 0, 0, 0.75);
	border:solid 1px #fa2e13;
	text-align:center;
	margin:40px 20px;
}

.countdown-amount {
    font-size: 60px;
	font-weight:700;
	line-height:120px;
}
.countdown-period {
    display: block;
	line-height:60px;
	color: #ffffff;
	font-size:18px;
	font-weight:100;
}

.image-align{
	margin:0 auto;
	text-align:center;
	display:block;
	padding-top: 10px;
}

h1{
	font-size:32px;
	font-weight:300;
	text-align:center;
	line-height: 1.25em;
	margin: 30px 0 10px 0;
}

h1 span{
	font-size:32px;
}

h2{
	font-size:30px;
	font-weight:300;
	text-align:center;
	line-height: 1.5em;
	margin: 10px 0 10px 0;
}

h3{
	font-size:24px;
	font-weight:300;
	text-align:center;
	line-height: 1.5em;
	margin: 10px 0 10px 0;
}

.flame1{
	color: #A33B3E;
	font-size:27px;
}

.fire{
	color: #fa2e13;
	/*font-size:38px;*/
	font-weight: 300
}

.yellow{
	color:#ff9c00;
	font-size:38px;
}
.yellow-small{
	color:#ff9c00;
	font-size:42px;
}

.bg {
	/*background-color: rgba(38, 1, 1, 0.28);*/
}
.border-bottom {
	border-bottom: 1px solid #fa2e13;
}

p{
	font-size:16px;
	line-height:30px;
	text-align:center;
	font-weight:100;
}

form{
	margin:0 auto;
	display:table;
	margin-top:50px;
}

input[type="text"]{
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	background:rgba(255,255,255,.1);
	-webkit-background-clip: padding-box !important;
	background-clip: padding-box !important;
	border:none;
	border: 1px solid rgba(255, 255, 255, 0.2);
	height:53px;
	color:#fff;
	font-family:'Oswald', Arial;
	font-size:16px;
	padding-left:20px;
	width:265px;
}

input[type="submit"]{
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	font-family: 'Oswald', Arial;
	background: #ff9c00;
	color: #000;
	border: none;
	font-size: 24px;
	font-weight: 500;
	padding: 12px 30px;
	position: relative;
	top: 3px;
	left: -10px;
	-webkit-transition: all .3s ease;
	-moz-transition: 	all .3s ease;
	-ms-transition: 	all .3s ease;
	-o-transition: 		all .3s ease;
	transition: 		all .3s ease;
}

input[type="submit"]:hover{
	color: #FFF;
}

a{
color:#fff;
text-decoration:underline;
}

p.copyright{
font-size:18px;
margin-top:70px;
}
.unline-no {
	padding-right: 25px;
}
i.fa {
	margin-right: 7px;
}

/*------------------------------------------------*/
/* Responsive styles */
/*------------------------------------------------*/

@media (min-width: 561px) and (max-width: 720px) {
	
	.countdown-section {
		margin:5px;
	}

}

@media (max-width: 600px){
	
	.countdown-section {
		display: block;
		float: left;
		text-align: center;
		width:75px;
		height:75px;
		margin:6px;
	}
	
	.countdown-amount {
		font-size: 32px;
		font-weight:700;
		line-height:74px;
	}
	
}

@media (max-width: 420px){
	
	.countdown-section {
		display: block;
		float: left;
		text-align: center;
		width:56px;
		height:56px;
		margin:2px;
	}
	
	.countdown-amount {
		font-size: 24px;
		font-weight:700;
		line-height:58px;
	}
	
	.image-align{
		padding-top: 20px;
		width:30%;
	}
	
	h1,.yellow{
		font-size:32px;
	}	
	
	h1 span{
	font-size:18px;
	}
	
	input[type="text"]{
		width:150px;
		font-size:14px;
		padding-left:5px;
	}	
	
	input[type="submit"]{
		left:-3px;
		top:5px;
	}
	
}