@font-face {
  font-weight: 400; /* Соответствует значению normal */
  font-family: Roboto;
  src: url("/fonts/Roboto-Regular.ttf");
}

@font-face {
  font-weight: 700; /* Соответствует значению bold */
  font-family: Roboto;
  src: url("/fonts/Roboto-Bold.ttf");
}

@font-face {
  font-weight: 300;
  font-family: Roboto;
  src: url("/fonts/Roboto-Light.ttf");
}

/*
#113742 синий
#C5001A красный
#2AB000 зеленый
#00051E темно-синий
#E3E3DB светлый серый
#C6BEBB бетон
*/

html,body {
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
	font-family: Roboto, serif;
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
.wrapper{
	box-sizing: border-box;
	display: block;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px;
}

a {
	color: #000;
	text-decoration: none;
}

@media screen and (min-width: 440px) {
  .wrapper {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1240px) {
	.wrapper {
    padding: 0;
  }
}












.menu-burger {
	width: 40px;
	padding: 10px;
	display: inline-block;
  padding-top: 20px;
  vertical-align: top;
}
.burger-checkbox {
  position: absolute;
  visibility: hidden;
}
.burger {
  position: relative;
  cursor: pointer;
  display: block;
  position: relative;
  border: none;
  background: transparent;
  width: 30px;
  height: 20px;
}
.burger::before,
.burger::after {
  content: '';
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background: #000;
}
.burger::before {
  top: 0;
  box-shadow: 0 9px 0 #000;
  transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}
.burger::after {
  bottom: 0;
  transition: bottom .3s .15s, transform .3s;
}
.burger-checkbox:checked + .burger::before {
  top: 9px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(0,0,0,0);
  transition: box-shadow .15s, top .3s, transform .3s .15s;
}
.burger-checkbox:checked + .burger::after {
/*	top: 5px;*/
  bottom: 9px;
  transform: rotate(-45deg);
  transition: bottom .3s, transform .3s .15s;
}
.menu-list {
	z-index: 99999;
  top: 60px;
  left: 0;
  bottom: 0;
  position: fixed;
  padding: 20px 0;
  margin: 0;
  background: #fff;
  list-style-type: none;
  transform: translateX(-100%);
  transition: .3s;
  width: 100%;
  overflow: auto;
  border-right: 1px solid #d3d3d3;
}
.menu-list a {
  display: block;
  padding: 10px 20px;
  color: #000;
  line-height: 30px;
  font-size: 18px;
  text-decoration: none;
}
.menu-list a:hover {
  background: rgba(255,255,255,.2)
}
.menu-list a.active {
	background: #C5001A;
	color: #fff;
}
.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

.menu-list .lvl2 {
	padding-left: 20px;
}















.mainHeader {
	width: 100%;
	z-index: 9999;
	background: #fff;
	color: #434343;
	border-bottom: 1px solid #D3D3D3;
}
.mainHeader .wrapper {
	height: 60px;
	line-height: 60px;
	display: flex;
	justify-content: space-between;
}
#logo {
	flex-grow: 1;
	display: inline-block;
	vertical-align: top;
	min-width: 170px;
	height: 100%;
	background: url("/images/logo-big.svg") center no-repeat ;
	background-size: 150px;
}

.mainMenu {
	display: none;
	vertical-align: middle;
}
.mainMenu li {
	list-style: none;
	display: inline-block;
	vertical-align: middle;
}
.mainMenu a {
	padding: 0 10px;
}
.mainMenu a:hover {
	color: #C5001A;
}
.mainMenu a.active {
	color: #C5001A;
}
#phone {
	display: none;
	flex-direction: column;
	justify-content: center;
	min-width: 160px;
	height: 100%;
	line-height: 20px;
	margin: auto 0;
	padding: 0 40px;
	font-size: 18px;
	text-align: center;
	color: #000;
}
#phone .info {
	font-size: 12px;
}
/*#time {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	width: 120px;
	height: 40px;
	line-height: 20px;
	margin: auto 0;
	text-align: center;
	color: #444444;
}*/
#search {
	display: none;
	flex-grow: 1;
	vertical-align: middle;
	box-sizing: border-box;
	min-width: 270px;
	height: 40px;
	line-height: 40px;
	margin: auto 0;
	padding: 0 20px;
}
#search2 {
	display: block;
	flex-grow: 1;
	vertical-align: middle;
	box-sizing: border-box;
	min-width: 270px;
	height: 40px;
	line-height: 40px;
	margin: auto 0;
	padding: 0 20px;
}
.searchInput {
	box-sizing: border-box;
	width: 100%;
	height: 40px;
	padding: 0 10px;
	font-size: 16px;
	line-height: 16px;
	border: 0;
	border: 1px solid #D3D3D3;
	border-radius: 5px;
}
.searchBtn {
	display: inline-block;
	vertical-align: middle;
	width: 38px;
	height: 38px;
	margin-left: -39px;
	background: #ccc;
	border:0;
	background: url("/images/template/search.svg") center no-repeat;
/*	background-color: #ccc;*/
  	background-size: 25px;
  	border: none;
/*  	border: 1px solid #000;*/
  	cursor: pointer;
}


#phoneBtn {
	display: none;
	min-width: 40px;
	height: 100%;
	background-image: url("/images/template/phone.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px;
}

#cartBtn {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	min-width: 40px;
	height: 100%;
	cursor: pointer;
	position: relative;
/*	background-color: #DFDFDF;*/
/*	border-left: 1px solid #E3E3E3;*/
/*	border-right: 1px solid #ccc;*/
	float: right;
}
#cartBtn:hover .cartIcon {
	background-image: url("/images/template/basket.svg");
}

#countCart {
	position: absolute;
	bottom: 50%;
	left: 60%;
	background-color: #F02D3A;
	color: #fff;
	height: 20px;
	line-height: 20px;
	padding: 0 8px;
	border-radius: 10px;
	text-align: center;
	font-size: 12px;
}

.cartIcon {
	display: block;
	vertical-align: middle;
	width: 60px;
	height: 100%;
	margin: auto;
	background: url("/images/template/basket.svg") center no-repeat;
	background-size: 25px;
}
.cartInfo {
	display: block;
	vertical-align: top;
	height: 20px;
	line-height: 20px;
	text-align: center;
/*	padding: 20px 0 20px 0px;*/
}

.cartBtn p {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
}
#cartPrice {
	font-size: 16px;
	font-weight: bold;
}
.cartBtn span {
	font-size: 14px;
	font-weight: normal;
}



#push {
/*	display: none;*/
	z-index: 99999;
	position: absolute;
	top: 30px;
	left: -70px;
	width: 200px;
	height: 50px;
	line-height: 50px;
	background: #05900D;
	color: #fff;
	text-align: center;
	-webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.5);
	-moz-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.5);
	box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.5);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
#push.active {
/*	display: block;*/
	top: 100px;
	-webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media screen and (min-width: 360px) {
	#phoneBtn {
		display: block;
	}
}
@media screen and (min-width: 640px) {
	#search {
		display: block;
	}
	#search2 {
		display: none;
	}
}



@media screen and (min-width: 730px) {
	.menu-burger	{
		padding-top: 30px;
	}
	.menu-list {
  	top: 80px;
  	width: 320px;
  }
	.mainHeader .wrapper {
		height: 80px;
		line-height: 80px;
	}
	#logo {
		background-size: 200px;
		min-width: 240px;
	}
	#phoneBtn {
		min-width: 60px;
		background-size: 30px;
	}
	#cartBtn {
		min-width: 60px;
	}
	.cartIcon {
		background-size: 35px;
	}
}
@media screen and (min-width: 910px) {
	#phone {
		display: flex;
	}
	#phoneBtn {
		display: none;
	}
}

@media screen and (min-width: 1240px) {
	.menu-burger {
		display: none;
	}
	.mainMenu {
		display: inline-block;
	}
}













.catalogMenu {
/*	background: #272636;*/
	
}
.catalogMenu .wrapper {
	position: relative;
}

.catalogMenu nav ul {
	display: none;
	justify-content: space-between;
	text-align: center;
	width: 100%;
	height: 50px;
}
.catalogMenu li {
	list-style: none;
  flex-basis: auto;
  flex-grow: 1;
	vertical-align: top;
}
.catalogMenu a {
	display: block;
	padding: 0 10px;
	font-size: 14px;
	height: 50px;
	line-height: 50px;
	color: #fff;
}
.catalogMenu a:hover {
	background: #C5001A;
}
.catalogMenu a.active {
	background: #C5001A;
}
.catalogMenu li:first-child a {
	background: rgba(0,0,0,0.2);
}


@media screen and (min-width: 730px) {
	.mainHeader {
		border: 0;
	}

	.catalogMenu nav ul{
		display: flex;
	}

	.catalogMenu {
		height: 50px;
		line-height: 50px;
		background: rgb(57,55,78);
		background: linear-gradient(90deg, rgba(57,55,78,1) 0%, rgba(39,38,54,1) 100%);
	}
}

@media screen and (min-width: 810px) {
	.catalogMenu a {
		font-size: 16px;
	}
}
@media screen and (min-width: 980px) {
	.catalogMenu a {
		padding: 0 20px;
	}
}






/*.catalogMenu a:first-child {
	border-radius: 5px;
	height: 30px;
	line-height: 30px;
	margin: 10px auto;
}*/








.breadcrumbs {
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	color: #a3a3a3;
	line-height: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
	font-size: 12px;
}
.breadcrumbs span {
	color: #a3a3a3;
	padding: 0 10px;
}
.breadcrumbs a {
	color: #a3a3a3;
}
.breadcrumbs a:hover {
	color: #000;
}
.breadcrumbs p {
	display: inline;
}





.title {
	font-size: 34px;
	line-height: 50px;
	margin: 0 auto;
	padding-top: 20px;
	padding-bottom: 20px;
}


/*.content {
	min-height: 800px;
}*/






main {
	min-height: 600px;
}


















footer {
	padding: 20px 0;
	background: #262635;
	color: #fff;
}
footer li {
	list-style: none;
}



.topFooter {
	display: flex;
	justify-content: space-around;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
}
.topFooter div.timeFooter {
	min-width: 205px;
	line-height: 20px;
}


.topFooter .header {
	display: block;
	line-height: 100px;
	font-size: 30px;
}
.topFooter a {
	display: block;
	line-height: 20px;
	margin-bottom: 10px;
	color: #d1d1d1;
}
.topFooter a:hover {
	color: #fff;
	text-decoration: underline;
}

.topFooter span {
	font-size: 14px;
}
.bottomFooter {
	display: flex;
	flex-direction: column-reverse;
	margin-top: 50px;
	border-top: 1px solid #4d4d4d;
	text-align: center;
}
.bottomFooter div{
	padding: 10px 0;
	vertical-align: middle;
}

@media screen and (min-width: 520px) {
	.topFooter {
		flex-direction: row;
	}
	.topFooter > div {
		width: 40%;
	}
}

@media screen and (min-width: 980px) {
	.topFooter {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.topFooter > div {
		width: 30%;
	}

	.bottomFooter {
		text-align: left;
		flex-direction: row;
	}

	.bottomFooter > div {
		display: inline-block;
		width: 50%;
	}
}





























#loadScreen {
	display: none;
	z-index: 999999999;
	
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
}
#loadScreen.active {
	display: block;
}


#floatingCirclesG{
	position: absolute;
	width:144px;
	height:144px;
	top: 50%;
	left: 50%;
	margin: -72px 0 0 -72px;
	transform:scale(0.6);
		-o-transform:scale(0.6);
		-ms-transform:scale(0.6);
		-webkit-transform:scale(0.6);
		-moz-transform:scale(0.6);
}

.f_circleG{
	position:absolute;
	background-color:rgb(255,255,255);
	height:26px;
	width:26px;
	border-radius:14px;
		-o-border-radius:14px;
		-ms-border-radius:14px;
		-webkit-border-radius:14px;
		-moz-border-radius:14px;
	animation-name:f_fadeG;
		-o-animation-name:f_fadeG;
		-ms-animation-name:f_fadeG;
		-webkit-animation-name:f_fadeG;
		-moz-animation-name:f_fadeG;
	animation-duration:1.2s;
		-o-animation-duration:1.2s;
		-ms-animation-duration:1.2s;
		-webkit-animation-duration:1.2s;
		-moz-animation-duration:1.2s;
	animation-iteration-count:infinite;
		-o-animation-iteration-count:infinite;
		-ms-animation-iteration-count:infinite;
		-webkit-animation-iteration-count:infinite;
		-moz-animation-iteration-count:infinite;
	animation-direction:normal;
		-o-animation-direction:normal;
		-ms-animation-direction:normal;
		-webkit-animation-direction:normal;
		-moz-animation-direction:normal;
}

#frotateG_01{
	left:0;
	top:59px;
	animation-delay:0.45s;
		-o-animation-delay:0.45s;
		-ms-animation-delay:0.45s;
		-webkit-animation-delay:0.45s;
		-moz-animation-delay:0.45s;
}

#frotateG_02{
	left:17px;
	top:17px;
	animation-delay:0.6s;
		-o-animation-delay:0.6s;
		-ms-animation-delay:0.6s;
		-webkit-animation-delay:0.6s;
		-moz-animation-delay:0.6s;
}

#frotateG_03{
	left:59px;
	top:0;
	animation-delay:0.75s;
		-o-animation-delay:0.75s;
		-ms-animation-delay:0.75s;
		-webkit-animation-delay:0.75s;
		-moz-animation-delay:0.75s;
}

#frotateG_04{
	right:17px;
	top:17px;
	animation-delay:0.9s;
		-o-animation-delay:0.9s;
		-ms-animation-delay:0.9s;
		-webkit-animation-delay:0.9s;
		-moz-animation-delay:0.9s;
}

#frotateG_05{
	right:0;
	top:59px;
	animation-delay:1.05s;
		-o-animation-delay:1.05s;
		-ms-animation-delay:1.05s;
		-webkit-animation-delay:1.05s;
		-moz-animation-delay:1.05s;
}

#frotateG_06{
	right:17px;
	bottom:17px;
	animation-delay:1.2s;
		-o-animation-delay:1.2s;
		-ms-animation-delay:1.2s;
		-webkit-animation-delay:1.2s;
		-moz-animation-delay:1.2s;
}

#frotateG_07{
	left:59px;
	bottom:0;
	animation-delay:1.35s;
		-o-animation-delay:1.35s;
		-ms-animation-delay:1.35s;
		-webkit-animation-delay:1.35s;
		-moz-animation-delay:1.35s;
}

#frotateG_08{
	left:17px;
	bottom:17px;
	animation-delay:1.5s;
		-o-animation-delay:1.5s;
		-ms-animation-delay:1.5s;
		-webkit-animation-delay:1.5s;
		-moz-animation-delay:1.5s;
}



@keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-o-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-ms-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-webkit-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}

@-moz-keyframes f_fadeG{
	0%{
		background-color:rgb(0,0,0);
	}

	100%{
		background-color:rgb(255,255,255);
	}
}
