/* --------------- reset.css --------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, sub, sup, b, u, i,  dl, dt, dd, ol, ul, li, fieldset, form, label, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;                               /* обнуляем отступы и убираем бордюры */
	vertical-align: baseline;          /* приводим все к одной базовой линии */
	background: transparent;      /* чтобы не проскакивали левые фоны, установленные по умолчанию */
	font-size: 100%;                     /* размер шрифта всем одинаковый */
}
a {                                      	     /* ссылка не в общем списке чтобы не сбрасывать outline по умолчанию */
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
	outline:none;
}
table {						/* устраняем отступы между ячейками таблицы */
	border-collapse: collapse; 
	border-spacing: 0;
}
td, td img {
	vertical-align: middle;			/* возвращаем привычное вертикальное выравнивание */
} 
input, select, button, textarea {
	margin: 0; 				/* убираем отступы по умолчанию для элементов форм (в частности для checkbox и radio) */
	font-size: 100%; 			/* делаем размер шрифтов везде одинаковым */
	outline: none;
}
input[type="text"], input[type="password"], textarea {
	padding: 0; 				/* убираем внутренние отступы для текстовых полей */
}
input[type="checkbox"] { 		/* вертикальное выравнивание чекбоксов и радиобатонов относительно меток */
	vertical-align: bottom;
}
input[type="radio"] {
	vertical-align: text-bottom;
}
sub {
	vertical-align: sub;
	font-size: smaller;
}
sup {
	vertical-align: super;
	font-size: smaller;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display:block;
}
nav ul {
	 list-style:none;
}
/* --------------- /reset.css --------------- */

/* --------------- базовые настройки ---------*/
html {
	min-height:100%; /* всегда показываем вертикальную полосу прокрутки  */
}
body {
	background: #f3eee8;
	color: #4f504c;
	text-align: left;
	font-size: 15px; /* используем безопасные шрифтовые CSS стеки */
	min-height:100%;
	min-width: 1024px;
	font-family: 'Open Sans', sans-serif;
	/*   font-family: 'PT Serif Caption', serif;   */
}
h1 {
	font-size: 33px;
	margin-bottom: 30px;
	font-weight: 500;
	color: #646464;
	line-height: 36.3px;
	font-family: 'Roboto Slab', serif;
}
h2 {
	font-size: 24px;
	margin-bottom: 15px;
	font-weight: 500;
	color: #646464;
	font-family: 'Roboto Slab', serif;
}
h3 {
	text-align: center;
	margin-bottom: 20px;
	font-weight: 500;
	color: #646464;
	font-family: 'Roboto Slab', serif;
}
h4 {
	font-weight: 500;
	margin-bottom: 10px;
	font-family: 'Roboto Slab', serif;
}
a, a:visited { /* порядок правил для ссылок имеет значение */
	color: #7db609;
}
a:hover {
	text-decoration:none;
}
a:focus a:active {
	color: #7db609;
	text-decoration: underline;
}
strong {
	font-weight: 600;
}
img{
	max-width:100%;
	vertical-align: middle;
}
iframe {
	vertical-align: middle;
}
.clear{
	clear:both;
}
.clearfix:after {
    clear: both;
    content: "";
    display: table;
}
/* --------------- /базовые настройки ---------*/

/* --------------- базовые элементы ---------*/
.center-block-main {
	max-width: 1000px;
	margin: 0 auto;
}
.center-block-main-large {
	max-width: 1150px;
	margin: 0 auto;
}
.center-block-main-small {
	max-width: 900px;
	margin: 0 auto;
}
.center-block-main-2x {
	max-width: 840px;
	margin: 0 auto;
}
.center-block-main-2x-small {
	max-width: 500px;
	margin: 0 auto;
}
.center-block-main-4x-small {
	max-width: 60px;
	margin: 0 auto;
}
.box-shadow-middle {
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}
.box-shadow-small {
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
}
.button {
	background: #7db609;
	padding: 7px 20px;
	margin: 15px auto 0 auto;
	box-sizing: border-box;
	display: block;
	border: none;
	border-radius: 3px;
	color: #fff !important;
	text-decoration: none;
}
.button:hover {
	cursor: pointer;
background: rgb(191,210,85); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(191,210,85,1) 0%, rgba(142,185,42,1) 50%, rgba(114,170,0,1) 51%, rgba(158,203,45,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	text-decoration: none;
}
.button-center {
	width: 230px;
	margin: 30px auto 0 auto;
	text-align: center;
}
.section {
	padding: 20px 0;
}
.text-par {
	margin-bottom: 10px;
	font-size: 14px;
}
.resize-right-wrapper {
	float: left;
	width: 100%;
}
.resize-right {
	margin-right: 500px;
}
.fixed-right {
	float: left;
	margin-left: -500px;
	width: 500px;
	padding-left: 20px;
	box-sizing: border-box;
}
.text-center {
	text-align: center;
}
.block-1-main article {
	width: 98%;
	margin: 0 1%;
	box-sizing: border-box;
}
.block-2-main article {
	width: 48%;
	float: left;
	margin: 0 1%;
	box-sizing: border-box;
}
.block-2-main div {
	width: 48%;
	float: left;
	margin: 0 1%;
	box-sizing: border-box;
}
.block-3-main article {
	width: 31.6%;
	float: left;
	margin-left: 2.6%;
	text-align: center;
	box-sizing: border-box;
}
.block-3-main article:nth-child(3n+1) {
	margin-left: 0;
}
.block-4-main article {
	width: 23%;
	margin-left: 2.66666666666666666667%;
	float: left;
	text-align: center;
	box-sizing: border-box;
}
.block-4-main article:nth-child(4n+1) {
	margin-left: 0;
}
.block-5-main article {
	width: 18%;
	float: left;
	text-align: center;
	box-sizing: border-box;
	margin: 0 1%;
}
.block-5-main p {
	width: 18%;
	float: left;
	text-align: center;
	box-sizing: border-box;
	margin: 0 1%;
}
.color-white {
	color: #fff;
}
.no-margin {
	margin: 0;
}
.no-margin-top{
	margin-top: 0 !important;
}
.margin-top-20 {
	margin-top: 20px !important;
}
.margin-bottom-20 {
	margin-bottom: 20px;
}
.input {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}
.input label, .textarea label {
	display: block;
	font-weight: 600;
	margin-bottom: 5px;
}
.input input {
	width: 100%;
	height: 35px;
	padding-left: 5px;
	box-sizing: border-box;
	border-radius: 3px;
	border: 2px solid #875e05;
	background: #fcfcf2;
}
.textarea textarea {
	width: 100%;
	height: 100px;
	box-sizing: border-box;
	padding: 5px;
	resize: none;
	border-radius: 3px;
	border: 2px solid #875e05;
	background: #fcfcf2;
}
.input input:focus, .textarea textarea:focus {
	border: 2px solid #829926;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(17, 202, 38, 0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(17, 202, 38, 0.75);
	box-shadow: 0px 0px 10px 0px rgba(17, 202, 38, 0.75);
	background: #e3fbe6;
	color: #013808;
}
.pagination {
	display: table;
	margin: 20px auto;
	list-style: none;
	font-size: 18px;
	color: #fff;
}
.current {
	color: #fff;
	padding: 2px 8px;
	border-radius: 5px;
	background: #7db609;
	
	-webkit-box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
	-moz-box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
	box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
}
.pagination span {
	margin: 0 5px;
}
.pagination span a {
	color: #7db609 !important;
	background: #fff;
	padding: 2px 8px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	text-decoration: none;
}
.pagination span a:hover {
	color: #fff !important;
	background: #7db609;
	padding: 2px 8px;
	border-radius: 5px;
	text-decoration: none;
}
.pagination-button a:hover {
	background: #7db609 !important;
	color: #fff !important;
}
.button-padding-10 {
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 18px;
}
.text-main-color {
	color: #7db609;
}
.section-middle {
	padding: 40px 0;
}
.catalog-wrapper {
	float: left;
	width: 100%;
}
.catalog-content {
	margin: 0 0 0 250px;
	padding: 0 40px 0 0;
}
.left-nav {
	width: 250px;
	float: left;
	margin-left: -100%;
	padding: 0 40px 0 20px;
	box-sizing: border-box;
}
.border-radius-5 {
	border-radius: 5px;
}
.empty-items {
	margin: 100px 0;
	color: #7db609;
}
.hidden {
	display: none;
}
.extra {
	color: red;
}
.margin-top-30 {
	margin-top: 30px;
}
.button-width-300 {
	width: 300px;
	margin: 15px 0 0 0;
	text-align: center;
}
.item-checked { 
	-webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
	-moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
	box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
	border-bottom-color: #7db609;
}
.item-checked:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
	-moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
	box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75) !important;
}
.block {
	display: block;
	width: 100%;
}
/* --------------- /базовые элементы ---------*/

/* --------------- меню ---------*/
#header {
	background: #7db609;
}
#topMenu {
	z-index: 10;
	position: relative;
}
.top-menu  {
	display: table-row;
}
.top-menu li {
	display: table-cell;
	width: auto;
	text-align: center;
	vertical-align: bottom;
	border-left: 1px solid #92c412;
	border-right: 1px solid #658d02;
	position: relative;
}
.top-menu li:first-child {
	border-left: none;
}
.top-menu li:last-child {
	border-right: none;
}
.top-menu li:hover {
	border-left-color: rgb(191,210,85);
}
.top-menu li a {
	color: #fff;
	display: table-cell;
	width: 1000px;
	font-size: 14px;
	padding: 11px 0 11px 0;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	text-decoration: none;
}
.top-menu li a:hover {
	background: rgb(191,210,85);
	background: -moz-linear-gradient(top,  rgba(191,210,85,1) 0%, rgba(142,185,42,1) 50%, rgba(114,170,0,1) 51%, rgba(158,203,45,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%);
	background: linear-gradient(to bottom,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%);
	text-decoration: none;
}
.menu-active {
	background: rgb(191,210,85);
	background: -moz-linear-gradient(top,  rgba(191,210,85,1) 0%, rgba(142,185,42,1) 50%, rgba(114,170,0,1) 51%, rgba(158,203,45,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%);
	background: linear-gradient(to bottom,  rgba(191,210,85,1) 0%,rgba(142,185,42,1) 50%,rgba(114,170,0,1) 51%,rgba(158,203,45,1) 100%);
}
.submenu {
	position: absolute;
	bottom: -146px;
	left: -9999999px;
	width: 200px;
	background: #7db609;
	opacity: 0;
}
.top-menu li:hover .submenu {
	left: 0;
	opacity: 1;
}
.submenu li {
	float: left;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid #658d02;
	border-top: 1px solid #92c412;
}
.submenu li:first-child {
	border-top: none;
}
.submenu li:last-child {
	border-bottom: none;
}
/* --------------- /меню ---------*/

/* --------------- Шапка ---------*/
#topInfo {
	z-index: 1;
	position: relative;
	min-height: 800px;
}

/*** слайдер ***/
#topInfo .my-slider {
	min-height: 800px;
	width: 100%;
	position: absolute;

}
#topInfo .my-slider li {
	min-height: 800px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
}
#topInfo .my-slider li .slider-info {
	position: absolute;
	bottom: 30px;
	right: 30px;
	color: #fff;
	background: rgba(0,0,0, .7);
	padding: 10px;
	font-size: 18px;
}
.unslider-nav {
	width: 100%;
	position: absolute;
	bottom: 0;
}
/*** /слайдер ***/

.header-wrapper {
	padding-top: 30px;
}

.header {
	position: relative;
	z-index: 100;
	display: table;
	margin: 0 auto;
	background-color: rgba(243,238,232, 0.85);
	box-sizing: border-box;
	padding: 15px 30px;;
	border-radius: 5px;
	cursor: pointer;
}
.header img {
	width: 300px;
}
.header #topPhone {
	font-size: 24px;
	font-weight: 700;
	color: #ea8208;
	text-align: center;
	margin-top: 10px;
}
.header .hidden-header {
	max-width: 300px;
	margin-top: 15px;
	font-style: italic;
	display: none;
}
.header .hidden-header #topText {
	
}
.header .hidden-header #topSlogan {
	font-size: 18px;
	color: #6a8016;
	text-transform: uppercase;
	font-weight: 700;
	padding: 20px 0 120px 0;
	background: url(../img/quality.png) no-repeat center 0px;
}

/* --------------- /Шапка ---------*/

/* --------------- Акции ---------*/
#mainActions {
	padding: 40px 0 0px 0;
}
.action-img-wrapper img {
	border-radius: 5px 5px 0 0;
	width: 100%;
}
.action-main {
	margin-bottom: 10px;
	background: #fff;
	border-radius: 5px;
	border-bottom: 7px solid #ccc;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	position: relative;
}
.action-main a {
	text-decoration: none;
	color: #444;
}
.action-title {
	padding-bottom: 5px;
	font-size: 18px;
	margin-top: 10px;
}
.action-main-text {
	padding: 0 10px;
	height: 50px;
}
.action-main-info {
	font-size: 12px;
	font-style: italic;
	color: #999;
	margin-bottom: 10px;
	margin-top: 20px;
}
.action-main:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	border-bottom-color: #7db609;
}
.action-logo {
	position: absolute;
	top: 5px;
	left: 8px;
}
/* --------------- /Акции ---------*/

/* --------------- О компании ---------*/
#mainAbout {
	color: #000;
}
#videoAbout {
	width: 440px;
	height: 248px;
	margin-bottom: 86px;
}
.about {
	background: url(../img/paper.png);
	padding: 20px 30px 10px 30px;
	border-radius: 12px;
	overflow: scroll;
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	position: relative;
}
.video-wrapper {
	background: url(../img/imac.png) no-repeat;
	background-size: 480px;
	padding: 20.5px 20.5px 20.3px 20.3px;
	border-radius: 5px;
}
.video-icon {
	display: table;
	margin: 30px auto 0 auto;
	opacity: 0.7;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	font-size: 38px;
	text-decoration: none;
	color: #444 !important;
	text-transform: uppercase;
	font-weight: 600;
}
.video-icon img {
	margin-right: 20px;
}
.video-icon:hover {
	opacity: 1;
	cursor: pointer;
}
/* --------------- /О компании ---------*/

/* --------------- Проекты на главной ---------*/
#mainProjects {
	background: url(../img/project-bg.jpg);
	background-size: cover;
}
.project-main-item {
	background: #f3eee8;
	border-radius: 5px;
	text-align: center;
	box-sizing: border-box;
	padding: 0  10px 20px 10px;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.project-main-item a {
	text-decoration: none;
}
.project-main-item-img {
	width: 70% !important;
	float: left !important;
	margin: 0 !important;
}
.project-main-item-title {
	font-size: 20px;
	padding: 10px 0;
	height: 30px;
}
.project-main-material-img {
	margin: 0 !important;
	float: left !important;
	width: 30% !important;
	text-align: center;
}
.project-main-item:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
	-moz-box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
	box-shadow: 0px 0px 20px 0px rgba(239, 234, 154, 1);
}
/* --------------- /Проекты на главной ---------*/

/* --------------- Преимущества ---------*/
.reason-text-wrapper {
	width: 100%;
	float: left;
}
.reason-text {
	margin: 0 0 0 500px;
}
.reasons {
	margin-left: -100%;
	width: 500px;
	float: left;
	list-style: none;
}
.reason-text-content {
	margin: 0 0 0 20px;
	border-radius: 5px;
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	padding: 20px;
	height: 437px;
}
.reason-item {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	border-radius: 5px;
	margin-bottom: 10px;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 7px 0px rgba(50, 50, 50, 0.75);
	padding: 5px 10px;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	position: relative;
}
.reason-item:last-child {
	margin-bottom: 0;
}
.reason-item:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
	-moz-box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
	box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
}
.reason-item:hover span .fa {
	color: #8fc800;
}
.reason-item-img img {
	padding-left: 30px;
}
.reasons img {
	width: 70px;
	float: left;
	margin: 0 10px;
}
.reason-item-title {
	padding: 19px 0;
	display: block;
	font-size: 14px;
	font-weight: 600;
	position: relative;
}
.reason-item-title .fa {
	position: absolute;
	top: 16px;
	right: 10px;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
}
.reason-text-head {
	font-size: 18px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
}
.reason-text-img {
	float: left;
	margin-right: 15px;
}
.reason-text-content p {
	font-size: 16px;
}
.reason-number {
	background: #7db609;
	display: inline !important;
	float: left;
	color: #fff;
	border-radius: 100px;
	text-align: center;
	padding: 3px 9px !important;
	position: absolute;
	top: 23px;
	left: 10px;
}
/* --------------- /Преимцущества ---------*/

/* --------------- статистика ---------*/
.statistic-content {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	border-radius: 5px;
	padding: 10px 20px;
	box-sizing: border-box;
}
.static-bg {
	background: url(../img/static-item-bg.png) no-repeat center center;
	height: 160px;
}
.statistic-text {
	padding-top: 62px;
	color: #fff;
	font-size: 26px;
	text-shadow: 3px 3px 2px rgba(0, 0, 0, 1);
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
}
.static-info {
	letter-spacing: 1px;
	padding: 5px 0;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(100, 100, 100, 0.5);
	background: #dea34b;
	border-radius: 3px;
	float: none !important;
	width: 100% !important;
	margin: 0 0 20px 0 !important;
}
/* --------------- /статистика ---------*/

/* --------------- видео ---------*/
#videos {
	background:  #eee1d2;
	padding: 30px 0;
}
.allvideos {
	width: 100%;
	height: 200px;
}
.allvideos-item {
	margin-bottom: 15px;
}
/* --------------- /видео ---------*/

/* --------------- новости и опрос ---------*/
#newsOpros {
	padding-top: 40px;
	border-top: 4px solid #d9be97;
}
.opros-wrapper {
	float: left;
	width: 100%;
}
.opros {
	margin: 0 0 0 500px;
}
.main-news {
	float: left;
	width: 500px;
	margin-left: -100%;
	box-sizing: border-box;
	padding: 0 50px 0 0;
}
.main-news-item {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	border-radius: 3px;
	margin-bottom: 10px;
	padding: 20px;
	box-sizing: border-box;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	position: relative;
}
.main-news-item a {
	text-decoration: none;
	color: #444;
}
.main-news-item:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
	-moz-box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
	box-shadow: 0px 0px 7px 0px rgba(239, 234, 154, 1);
}
.main-news-item .fa {
	position: absolute;
	bottom: 10px;
	right: 10px;
	color: #666;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.main-news-item:hover .fa {
	color: #8fc800;
}
.main-news-date {
	color: #fff;
	width: 80px;
	text-align: center;
	border-radius: 3px;
	margin-top: 10px;
	background: #7db609;
	font-size: 12px;
}
.main-news-title a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
}
#opros-form {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	padding: 38px 20px;
	border-radius: 3px;
}
.opros-button {
	width: 200px;
	padding: 15px 0;
	margin: 0;
}
/* --------------- /новости и опрос ---------*/

/* --------------- карточка акции ---------*/
.action-card {
	position: relative;
	background: #fff;
	border-radius: 5px;
	padding: 20px 0;
}
.action-card-content-wrapper {
	width: 100%;
	float: left;
}
.action-card-content {
	margin: 0 0 0 400px;
	padding: 0 20px;
	position: relative;
	min-height: 300px;
}
.action-card p {
	font-size: 18px;
}
.action-extra-line {
	position: absolute;
	bottom: 0;
	width: 100%;
}
.action-button {
	width: 260px;
	margin: 20px auto 0 auto;
}
.action-card-created {
	margin: 25px 0 0 0;
	font-size: 16px !important;
	color: #666;
	text-align: center;
}
.action-card-img {
	float: left;
	width: 400px;
	margin-left: -100%;
	min-height: 300px;
}
/* --------------- /карточка акции ---------*/

/* --------------- страница проектов ---------*/
.projects-sub-nav {
	margin-bottom: 20px;
}
.sub-nav-item {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #444 !important;
	background: #fff;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 5px;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.sub-nav-item:hover {
	background: rgb(249,252,247);
	background: -moz-linear-gradient(top,  rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); 
	background: -webkit-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	cursor: pointer;
}
.sub-nav-item img {
	width: 140px;
}
.sub-nav-item-title {
	text-align: center;
}
.left-nav-head {
	background: #fff;
	border-radius: 5px;
	padding: 5px 0;
	font-size: 18px;
	margin-bottom: 10px;
	color: #666 !important;
	background: rgb(254,252,234);
	background: -moz-linear-gradient(top,  rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%);
	background: linear-gradient(to bottom,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); 
}
#projectsNav li {
	margin-bottom: 10px;
}
#projectsNav li:last-child {
	margin-bottom: 0;
}
.projects-nav {
	list-style: none;
}
.projects-nav-item {
	text-decoration: none;
	display: block;
	position: relative;
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 10px;
	text-align: center;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	height: 220px;
}
.projects-nav-item:hover {
	background: rgb(249,252,247);
	background: -moz-linear-gradient(top,  rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); 
	background: -webkit-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	cursor: pointer;
}
.projects-nav-item a {
	text-decoration: none;
}
.item-title {
	display: block;
	text-align: center;
	color: #444 !important;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	padding-top: 10px;
	font-size: 14px;
}
.projects-catalog {
	background: #fff;
	border-radius: 5px;
	box-sizing: border-box;
	padding: 10px 5px;
}
.project-item {
	border: 1px solid #ccc;
	border-radius: 5px;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	margin-bottom: 10px;
	height: 240px;
}
.project-item a {
	text-decoration: none;
	color: #444;
}
.project-item:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
}
.project-item-img {
	box-sizing: border-box;
	padding: 10px;
}
.project-item-img img {
	width: 270px;
	height: auto;
}
.project-item-title {
	padding-bottom: 10px;
	font-weight: 600;
}
/* --------------- /страница проектов ---------*/

/* --------------- карточка проекта ---------*/
#projectItem {
	padding-bottom: 40px;
}
.project-card {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	border-radius: 5px;
	padding: 40px 0;
}
.project-card-img {
	background: #fff;
	padding: 10px;
	border-radius: 5px;
}
.project-card-img img {
	width: 420px;
}
.project-thumbs {
	margin-top: 10px;
	width: 100% !important;
	margin-top: 10px !important;
}
.thumb-item {
	background: #fff;
	padding: 5px;
	box-sizing: border-box;
	border: 1px solid #fff;
	-moz-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}
.thumb-item:hover {
	border: 1px solid #7db609;
	cursor: pointer;
}
.thumb-item img {
	width: 70px;
}
.project-params {
	margin-top: 10px;
	float: none !important;
	width: 100% !important;
}
.project-param-line {
	font-size: 20px;
	margin-bottom: 10px;
	text-align: center;
}
.project-prices {
	margin-top: 20px;
	float: none !important;
	width: 100% !important;
}
/* --------------- карточка проекта ---------*/

/* --------------- галлерея ---------*/
#gallery {
	min-height: 40vh;
}
.photo-item {
	background: #fff;
	padding: 5px;
	border-radius: 5px;
	margin-bottom: 15px;
	height: 200px;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-transition: all 0.1s ease-out;
	-o-transition: all 0.1s ease-out;
	-webkit-transition: all 0.1s ease-out;
}
.photo-item:nth-child(4n+1){
	margin-left: 0;
}
.photo-item a {
	text-decoration: none;
	color: #444;
}
.photo-wrapper {
    height: 170px;
}
.photo-item:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75);
	-webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	-o-transform: scale(1.01);
}
/* --------------- /галлерея ---------*/

/* --------------- статьи ---------*/
.article-item {
	background: #fff;
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.article-img {
	width: 200px;
	float: left;
	margin-right: 15px;
}
.article-full-img {
	width: 400px;
	float: left;
	margin-right: 15px;
}
.article-title a {
	color: #666;
	text-decoration: none;
	font-size: 18px;
}
.article-text {
	margin: 10px 0;
}
.article-created {
	font-style: italic;
	color: #aaa;
	display: table;
	margin: 10px auto;
}
.article-full-created {
	display: table;
	margin: 10px auto;
	color: #999;
}
/* --------------- /статьи ---------*/

/* --------------- услуги ---------*/
.service-item {
	text-align: center;
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	border-radius: 5px;
	padding: 20px 0;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.service-item:hover {
	background: rgb(249,252,247);
	background: -moz-linear-gradient(top,  rgba(249,252,247,1) 0%, rgba(245,249,240,1) 100%); 
	background: -webkit-linear-gradient(top,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(249,252,247,1) 0%,rgba(245,249,240,1) 100%);
	cursor: pointer;
}
.service-item a {
	text-decoration: none;
	color: #444;
}
.service-item-title {
	margin: 10px 0 0 0;
	font-size: 20px;
}
#productionVideo {
	width: 100%;
	height: 310px;
}
.production-row {
	margin-bottom: 20px;
}
.production-number {
	background: #7db609;
	display: inline-block !important;
	float: left;
	color: #fff;
	border-radius: 100px;
	text-align: center;
	padding: 7px 14px 7px 16px !important;
	margin-right: 10px;
	margin-top: 5px;
	font-size: 20px;
}
.production-img {
	width: 150px;
	float: left;
	margin-right: 10px;
}
.production-list {
	margin-left: 180px;
	list-style-image: url(../img/li-icon.png);
	margin-bottom: 10px;
}
.production-list li {
	margin-left: 20px;
	padding-bottom: 5px;
}

.page-imgs {
	margin-top: 30px;
}
.page-imgs article {
	margin-bottom: 25px;
}
/* --------------- /услуги ---------*/

/* --------------- цены ---------*/
.price-about-pre {
	margin-bottom: 20px;
	font-size: 18px;
}

.price-table-cont {
	margin-bottom: 20px;
}
.price-table-title {
	margin-bottom: 5px;
}
.price-tabel {
	font-size: 12px;
	text-align: center;
	border: 1px solid #ccc;
	width: 100%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}
.price-tabel th {
	font-weight: 600;
	border: 1px solid #ccc;
	padding: 15px 0;
	vertical-align: middle;
	background: #eee;
}
.price-tabel td {
	border: 1px solid #ccc;
	padding: 10px 0;
	vertical-align: middle;
	background: #fff;
	box-sizing: border-box;
}
.price-dia {
	width: 50px !important;
}
.timber-type-dia {
	font-size: 20px;
}
/* --------------- /цены ---------*/

/* --------------- контакты ---------*/
#contacts {
	padding-bottom: 40px;
}
.map-wrapper {
	float: left;
	width: 100%;
}
.map {
	margin-left: 400px;
	border-radius: 5px;
}
.map iframe {
	border-radius: 5px;
}
.contacts-info {
	width: 400px;
	float: left;
	margin-left: -100%;
}
.contacts {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	height: 400px;
	margin-right: 20px;
	border-radius: 5px;
	padding: 20px 15px;
	box-sizing: border-box;
}
.inc-title {
	text-align: center;
	font-size: 18px !important;
	margin-bottom: 20px !important;
}
.contacts p {
	text-align: center;
	margin-bottom: 10px;
	font-size: 16px;
}
.contacts .fa {
	margin-right: 10px;
}
.contacts a {
	color: #4f504c;
}
.time {
	text-align: center;
	margin-top: 30px;
}
/* --------------- /контакты ---------*/

/* --------------- футер ---------*/
#footer {
	color: #666;
	background: #efefef;
}
.footer-menu-line {
	background: #d9d9d9;
}
#footerMenu {
	display: table-row;
}
#footerMenu li {
	display: table-cell;
	width: auto;
	text-align: center;
	vertical-align: bottom;
}
#footerMenu li a {
	padding: 15px 0;
	display: table-cell;
	width: 1000px;
	font-weight: 400;
	letter-spacing: 1px;
	text-decoration: underline;
	color: #666;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
#footerMenu li a:hover {
	text-decoration: none;
}
#footerContacts {
	padding: 20px 0;
	text-align: left;
	line-height: 1.7;
}
#footerContacts a {
	color: #666;
}
.footer-contacts-line {
	margin-bottom: 10px;
}
#footerProjects {
	padding: 20px 0;
	line-height: 1.7;
}
#footerProjects h4 {
	text-transform: uppercase;
	margin-bottom: 10px;
}
.footer-projects li {
}
.footer-projects li a {
	color: #666;
}
/* --------------- /футер ---------*/
#webMaster {
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ddd;
}

/* --------------- модалка ---------*/
.modal {
	display: none;
}
.lightcase-inlineWrap {
	background: rgb(247,247,242); 
	background: -moz-linear-gradient(top,  rgba(247,247,242,1) 0%, rgba(254,252,234,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
	background: linear-gradient(to bottom,  rgba(247,247,242,1) 0%,rgba(254,252,234,1) 100%);
}
.modal-text {
	font-size: 16px;
	margin-bottom: 15px;
}
.input-send-file label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
}
/* --------------- /модалка ---------*/

/* --------------- калькулятор ---------*/
.calc-intro {
	padding-bottom: 20px;
	font-size: 16px;
	line-height: 1.6;
}
.step {
	padding-bottom: 20px;
	background: #fff;
	margin-bottom: 20px;
	padding: 20px 20px;
	box-sizing: border-box;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}
.step-title {
	color: #444;
	padding-top: 6px;
}
.calc-input input {
	width: 265px;
	float: left;
	font-size: 22px;
}
.calc-input span {
	font-weight: 600;
	font-size: 24px;
	margin-left: 10px;
}
.step-info {
	font-size: 18px;
	font-weight: 600;
}
#priceSquare, #priceSquareItog {
	color: #7db609;
}
.calc-item {
	border-radius: 5px;
	background: #fff;
	padding-top: 10px;
	border: 1px solid #999;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	margin-bottom: 10px !important;
	text-align: center;
	position: relative;
}
.calc-item:hover {
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	cursor: pointer;
}
.calc-item .fa {
	position: absolute;
	top: 7px;
	left: 13px;
	color: green;
	display: none;
}
.calc-button {
	border-radius: 5px;
	background: rgb(254,252,234);
	background: -moz-linear-gradient(top,  rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%);
	background: linear-gradient(to bottom,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); 
	text-align: center;
	font-size: 22px;
	padding: 10px 0;
	-webkit-box-shadow: 0px 0px 1px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 1px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 1px 0px rgba(50, 50, 50, 0.75);
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	position: relative;
}
.calc-button:hover {
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
}
.calc-button .fa {
	position: absolute;
	top: 3px;
	left: 13px;
	color: green;
	display: none;
}
#step-10 > div > .calc-item, #step-11 > div > .calc-item {
	height: 290px;
}
#secondFlorPerek {
	display: none;
	margin-bottom: 20px;
}
/* --------------- /калькулятор ---------*/

#toTop {
	border: 1px solid #7db609;
	color: #fff;
	background: #7db609;
	padding: 6px 8px 7px 8px;
	border-radius: 10px;
	opacity: 0.3;
	position: fixed;
	bottom: 10px;
	right: 10px;
	display: none;
}
#toTop:hover {
	cursor: pointer;
	opacity: 0.8;
}

.fixed-button {
	font-family: 'Roboto Slab', serif;
	text-align: center;
	position: fixed;
	z-index: 20;
	right: -61px;
	top: 420px;
	-webkit-transform: rotate(-90deg); /* Chrome y Safari */
	-moz-transform: rotate(-90deg); /* Firefox */
	-o-transform: rotate(-90deg); /* Opera */
	color: #000 !important;
	background: rgb(254,252,234);
	background: -moz-linear-gradient(top,  rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%);
	background: linear-gradient(to bottom,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); 
	text-decoration: none;
	padding: 7px 10px 7px 10px;
	border-radius: 5px 5px 0 0;
	letter-spacing: 1px;
}
.fixed-button:hover, .fixed-button-2:hover {
	color: #fff !important;
	background: #7db609;
}

.fixed-button-2 {
	font-family: 'Roboto Slab', serif;
	text-align: center;
	position: fixed;
	z-index: 20;
	right: -66px;
	top: 220px;
	-webkit-transform: rotate(-90deg); /* Chrome y Safari */
	-moz-transform: rotate(-90deg); /* Firefox */
	-o-transform: rotate(-90deg); /* Opera */
	color: #000 !important;
	background: rgb(254,252,234);
	background: -moz-linear-gradient(top,  rgba(254,252,234,1) 0%, rgba(241,218,54,1) 100%);
	background: -webkit-linear-gradient(top,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%);
	background: linear-gradient(to bottom,  rgba(254,252,234,1) 0%,rgba(241,218,54,1) 100%); 
	text-decoration: none;
	padding: 7px 10px 7px 10px;
	border-radius: 5px 5px 0 0;
	letter-spacing: 1px;
}

/* --------------- /вход в админку ---------*/
.login-form {
	background: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
}

.flash-ok {
	background: #f9ffec;
	color: #666;
	text-align: center;
	border-radius: 3px;
	font-size: 18px;
	padding: 10px 0;
	max-width: 1150px;
	margin: 20px auto 0 auto;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
}

.flash-bad {
	background: #e95555;
	color: #fff;
	text-align: center;
	border-radius: 3px;
	font-size: 18px;
	padding: 10px 0;
	max-width: 1150px;
	margin: 20px auto 0 auto;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
	box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.75);
}
.required > label::after {
    color: red;
    content: "*";
}
.error-text {
	color: red;
}
.input-error {
	border: 2px solid red !important;
}
.success-modal {
	text-align: center;
}

