@charset "utf-8";

@import "map.css" all;

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

html, body {
	height: 100%;
	position: relative;
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	color: #3a3c3e;
	font-weight: 400;
	line-height: 1.2;
	display: flex; /* чтобы прилип футер */
	flex-direction: column; /* чтобы прилип футер */
}

main {
	flex-grow: 2; /* чтобы прилип футер */
}

#portfolio a {
	border-bottom: none;
}

.ruble-sign {
	font-family: 'Roboto', sans-serif;	
}

/*-------------------------------------------- ОБЩИЕ СТИЛИ --------------------------------------------*/

iframe {
	box-sizing: border-box;
}

ul, ol {
	padding: 10px 0 10px 30px;
	list-style-type: circle;
}

li {
	margin-bottom: 14px;
}

li > ul,
li > ol {
	padding-bottom: 0;
	list-style-type: disc;
}

p {
	margin-bottom: 14px;
	line-height: 1.6;
}

strong {
	font-weight: 500;
}

svg {
	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

a {
	text-decoration: none;
	color: #459b77;
	border-bottom: 1px solid #459b77;
	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;

    cursor: pointer;
}

a:HOVER {
	color: #2f6f54;
	border-color: #2f6f54;
}

button {
	cursor: pointer;
}

h1 {
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 28px;
    color: #3a3c3e;
}

h2 {
    margin-bottom: 20px;
    margin-top: 30px;

    font-size: 20px;
}

h3 {
    margin-bottom: 20px;
    margin-top: 30px;

    font-size: 18px;
    color: #459b77;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
}

/* НЕстандартные ссылки */

.no-bb {
	border-bottom: none;
}

.no-bb:HOVER {
	border-bottom: none;
}

.no-bb a {
	border-bottom: none;
}

.no-bb a:HOVER {
	border-bottom: none;
}

/* ОБЕРТКИ */

.bg-lightgrey {
	background-color: #f8f9fa;
	width: 100%;
}

.bg-grey {
	background-color: #4e4e4e;
	width: 100%;
}


/* ТЕКСТОВЫЕ СТИЛИ */

.nowrap {
	white-space: nowrap;
}

.black {
	color: #001a34;
}

.green {
	color: #459b77;
}

.all-caps {
	text-transform: uppercase;
}

.sign-12-grey {
	font-size: 12px;
	color: #808080;
}

.sign-12 {
	font-size: 12px;
}

.sign-14 {
	font-size: 14px;
}

.sign-18 {
	font-size: 18px;
}

.sign-22 {
	font-size: 22px;
}

.sign-24 {
	font-size: 24px;
}

.sign-600 {
	font-weight: 600;
}

.sign-700 {
	font-weight: 700;
}


/* СТИЛИ КНОПОК */

.button {
	font-family: 'Open Sans', sans-serif;
	color: #3a3c3e;

	display: table;
	padding: 10px 20px;

	border: 1px solid;
	border-radius: 3px;

	font-size: 14px;
	font-weight: 400;
	text-decoration: none;
	line-height: 1;
	text-align: center;

	webkit-animation: rainbow1 2s linear 2s infinite;
	animation: rainbow1 1s 0s ease-out infinite;

	cursor: pointer;
}

.button:HOVER {
	-webkit-box-shadow: 7px 11px 25px 0px rgba(86, 86, 86, 0.07);
	-moz-box-shadow: 7px 11px 25px 0px rgba(86, 86, 86, 0.07);
	box-shadow: 7px 11px 25px 0px rgba(86, 86, 86, 0.07);
	-webkit-transition: 0.3s all linear;
	-moz-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	transition: 0.3s all linear;
}

.button.ghost {
	background-color: transparent;
	color: #459b77;
	border-color: #459b77;
}

.button.ghost:hover {
	background-color: #459b77;
	color: #ffffff;
}

.button.green {
	background-color: #459b77;
	color: #ffffff;
	border-color: #459b77;
}

.button.green:hover {
	background-color: #2f6f54;
	border-color: #2f6f54;
	color: #ffffff;
}

.button.darkgreen {
	background-color: #2f6f54;
	color: #ffffff;
	border-color: #2f6f54;
}

.button.darkgreen:hover {
	background-color: #459b77;
	border-color: #459b77;
	color: #ffffff;
}

/* СТИЛИ ИНПУТОВ */

.input {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.2;
    font-size: 14px;

   	box-sizing: border-box;
	padding: 10px 20px;

    border: 1px solid;
    border-radius: 3px;
}

.input.green {
	border-color: #459b77;
}

/* ХЛЕБНЫЕ КРОШКИ */

.breadcrumb {
	padding: 8px 8px;
	padding-left: 0;
	list-style: none;
	margin: 15px 0;
}

.breadcrumb>li {
	display: inline-block;
	margin-left: 0px !important;
	margin-bottom: 6px;
}

.breadcrumb a {
    color: #31383e;
    border-bottom: 1px solid #565656;
}

.breadcrumb>.active {
	color: #565656;
}

/* ТАБЫ */

.tabs-menu {
    padding: 0;
    list-style-type: none;
    display: flex;
}

.tab {
	display: flex;
	border-top: 1px solid #459b77;
}

.tab-content {
    display: none;

    padding: 20px 10px;
}

.tabs-menu li {
	padding: 10px;
	display: table;
	font-size:14px;
	margin-bottom: 0;
}

.tabs-menu li.current {
	position: relative;
	border: 1px solid #459b77;
	border-bottom: none;
}

.tabs-menu li.current:after {
	position: absolute;
	content: "";

	width: 100%;
	height: 1px;

	bottom: -1px;
	left: 0px;

	background-color: #ffffff;
}

.tabs-menu a {
	border-bottom: none;
}

.tabs-menu a:hover {
	border-bottom: none;
}

#haracteristiki {
 	display: block;
}


/* (.icon-item ) */

.icon-item {
	display: flex;
	align-items: center;

	color: #3a3c3e;

	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.icon-item svg {
	width: 24px;
    height: 24px;

    margin-right: 10px;
}

.icon-item:hover {
	fill: #459b77;

	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.icon-item:hover svg {
	fill: #2f6f54;
}

/*-------------------------------------------- ВЫРАВНИВАНИЕ --------------------------------------------*/


.container {
	width: 96%;
	margin: 0 auto;
}

.v-align-center {
	align-self: center;
	align-items: center;
}

.v-align-start {
	align-self: flex-start;
	align-items: flex-start;
}

.v-align-stretch {
	align-self: stretch;
	align-items: stretch;
}

.center {
	text-align: center;
}

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

.mrg-auto {
	margin-left: auto;
	margin-right: auto;
}

.mrgt-main {
	margin-top: 40px;
}

.mrgb-main {
	margin-bottom: 30px;
}

.mrgb-p {
	margin-bottom: 14px; /*как у тега p*/
}

.mrgb-20 {
	margin-bottom: 20px;
}

.mrgb-40 {
	margin-bottom: 40px;
}

.mrgb-60 {
	margin-bottom: 60px;
}

.mrgr-5 {
	margin-right: 5px;
}

.mrgl-5 {
	margin-left: 5px;
}

.mrgl-10 {
	margin-left: 10px !important;
}

.mrgr-10 {
	margin-right: 10px;
}

.mrgr-20 {
	margin-right: 20px;
}

.mrgb-0 {
	margin-bottom: 0 !important;
}

.mrgb-10 {
	margin-bottom: 10px;
}

.pdn-10 {
	padding: 10px;
}

.wrap {
	flex-wrap: wrap;
}

.flex-between {
	display: flex;
	justify-content: space-between;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-around {
	display: flex;
	justify-content: space-around;
}

.flex-start {
	display: flex;
	justify-content: flex-start;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.wid-20 {
	width: 20%;
}

.wid-24 {
	width: 24%;
}

.wid-25 {
	width: 25%;
}

.wid-30 {
	width: 30%;
}

.wid-32 {
	width: 32%;
}

.wid-33 {
	width: 33%;
}

.wid-35 {
	width: 35%;
}

.wid-40 {
	width: 40%;
}

.wid-45 {
	width: 45%;
}

.wid-48 {
	width: 48%;
}

.wid-49 {
	width: 49%;
}

.wid-50 {
	width: 50%;
}

.wid-60 {
	width: 60%;
}

.wid-70 {
	width: 70%;
}

.wid-75 {
	width: 75%;
}

.wid-80 {
	width: 80%;
}

.wid-90 {
	width: 90%;
}

.wid-95 {
	width: 95%;
}

.wid-100 {
	width: 100%;
}

.wid-fit {
	width: fit-content;
}

/*-------------------------------------------- .FORM --------------------------------------------*/

/* обертка */

.form-wrap {
	display: flex;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #f8f8f8;
/*     box-shadow: 0 2px 56px 0 rgba(0, 0, 0, 0.48); */
}

/* форма */

.form-group {
	position: relative;
}

.form-control {
	display: block;

	width: 100%;
	padding: 10px 16px;
	box-sizing: border-box;
	height: 40px;
    margin: 0 auto 16px auto;


	position: relative;
	font-size: 14px;
	line-height: 1.2;
	background-color: #ffffff;
	border-radius: 4px;
	border: solid 1px #d8d8d8;
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow
		ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out
		.15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.form-control::placeholder {
	color: #d8d8d8;
}

label.animated {
	color: #d8d8d8;
	font-size: 14px;
	font-weight: normal;
	position: absolute;
	pointer-events: none;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.2s ease;
}

.form-soglasie {
    display: flex;
    align-items: center;
    justify-content: space-between;

	width: 100%;
	margin: 10px auto;

	font-size: 12px;
	color: #999;
}

.form-soglasie input {
	margin-right: 10px;
	width: 30px;
    height: 30px;
}

.form-wrap .button {
    margin: 20px auto 0 auto;
}

input:focus ~ label.animated, input.used ~ label.animated {
	top: -20px;
	left: 0;
	transform: scale(.75);
	color: #4a89dc;
	background: #fff;
	padding: 5px;
}

.error {
	border-color: #973d3d !important;
	border-style: solid !important;
	background: #f0bebe !important;
	color: #a35959;
}

input.error, textarea.error, select.error, input.error ~ label, textarea.error ~ label, select.error ~ label {
	border-color: #973d3d;
	color: #a35959;
}

textarea.error::placeholder {
	color: #a35959;
}

.info-mess-warning,
.info-mess-warning-modal {
	width: 100%;

	color: #973d3d;
	font-size: 14px;
}

.linkpage {
	height: 0;
	width: 0;
	visibility: hidden;
}

.info-mess-good {
	color: #76d672;
    margin: 0 auto;
}

/* форма с телефоном и фото */

.phone-block {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #ffffff;
	border: solid 1px #d8d8d8;
	border-radius: 4px;
	font-size: 48px;
	color: #956e54;
	margin-bottom: 8px;
}

.form-phone {
	border-bottom: solid 1px #d8d8d8;
	margin-bottom: 20px;
}

.form-phone p {
	margin-bottom: 10px;
}

.zapis-foto {
	width: 215px;
}

.zapis-foto img {
	width: 128px;
	border-radius: 50%;
	border: solid 1px #d8d8d8;
}

.txtarea {
	height: 100px;
    font-family: 'Open Sans', sans-serif;
}

/* cart */

.order-form .form-control {
	margin-right: 0;
	margin-left: 0;
}


.order-form  label {
    margin-bottom: 8px;
    display: inline-block;
    width: 100%;
}

.order-form .txtarea {
    height: 100px;
    width: 100%;
    margin-top: 8px;
}

/*-------------------------------------------- HEADER --------------------------------------------*/

header {
	border-bottom: 1px solid #eaebe6;
}

.attention {
	padding: 10px 0;
	font-size: 14px;
}

.attention p {
	color: #ffffff;
	margin-bottom: 0;
}

.header-top {
	display: flex;
    justify-content: space-between;

    padding: 10px 0;
}

.header-location {
	display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 14px;

    -webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.header-location svg {
	width: 14px;
	height: 14px;

	margin-right: 4px;

	fill: #001a34;
}

.header-location:HOVER {
	color: #459b77;
}

.header-location:HOVER svg {
	fill: #459b77;
}

.header-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 0;

	list-style-type: none;
    font-size: 13px;
}

.header-menu li {
	margin-bottom: 0;
}

.header-menu li:NOT(:LAST-CHILD) {
	margin-right: 16px;
}

.header-menu li a {
    border-bottom: none;
    color: #808d9a;
}

.header-menu li a:HOVER {
    border-bottom: none;
    color: #459b77;
}

.header-bottom {
	display: flex;
    justify-content: space-between;
	align-items: center;

    padding: 10px 0;
    box-sizing: border-box;
}

.header-logo {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    border-bottom: none;

    color: #3a3c3e;
    font-size: 14px;
}

.header-logo:HOVER {
	border-bottom: none;
}

.header-logo img {
	width: 100%;
}

.header-logo span {
	font-size: 19px;
	text-transform: uppercase;
	font-weight: 500;
}

.assort.button.green {
    position: relative;
    font-size: 16px;
    box-sizing: border-box;
    padding: 0;
    width: 34px;
    height: 30px;
	margin-left: 5px;
}

.assort:AFTER {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
    right: 50%;
    background: url(../img/icon-menu.svg) center center no-repeat;
    background-size: contain;
}

.search {
  	flex-grow: 2;
	
	align-self: stretch;

	box-sizing: border-box;
	display: flex;
}

.search .button {
	width: 34px;
	padding: 0;
	box-sizing: border-box;
    background: url(../img/icon-search.svg) center center no-repeat, #459b77;
    background-size: 20px;
    border-radius: 0 3px 3px 0;
}

.search input {
    width: calc(100% - 38px);
	box-sizing: border-box;
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    -webkit-appearance: none;
    padding: 0;
    padding-left: 10px;
    margin: 0;
}

header .number-include {
	font-size: 14px;
}

.menu-fixed {
	position: fixed;
    bottom: 0;
    z-index: 1000;
}

.user-menu {
	display: flex;
	justify-content: space-between;

	padding: 10px 0;

	list-style-type: none;
}

.user-menu li {
	margin-bottom: 0;
}

.user-menu svg {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    fill: #ffffff;
}

.user-menu span {
    color: #ffffff;
    font-size: 12px;
}


header .user-menu li {
	margin-bottom: 0;
}

header .user-menu li:NOT(:LAST-CHILD) {
	margin-right: 20px;
}

.user-menu a {
	display: flex;
	flex-direction: column;
	align-items: center;

	color: #3a3c3e;
	border-bottom: none;
	font-size: 14px;
}

.user-menu a:hover {
	border-bottom: none;
	color: #459b77;
}

.user-menu a:hover svg {
	fill: #459b77;
}

/* HEADER.CLONE */

/*анимация header.clone*/
@keyframes appear { /* назовём анимацию: "go-left-right" */

	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}

}

/* Префикс для Chrome, Opera, Safari */
@-webkit-keyframes appear {

	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.sticky.clone {
	position: fixed;
	top: -1000px;
	border-bottom: 1px solid #eaebe6;
}

body.down .sticky.clone {
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: #ffffff;

	animation: appear .3s 1 linear;
	-webkit-animation: appear .3s 1 linear;
}

/*-------------------------------------------- FOOTER --------------------------------------------*/

footer {
    padding-top: 20px;

	margin-top: 40px;

	background-color: #f8f9fa;
/* 	border-top: 4px solid #4e4e4e;  */

	font-size: 14px;
}

footer .container {
	width: 90%;
}

footer ul {
	padding: 0;

	list-style-type: none;
}

footer li:not(:last-child) {
    margin-bottom: 14px;
}

footer li {
	font-size: 16px;
}

footer li a {
	border-bottom: none;
	font-size: 16px;
}

footer .header-logo {
	justify-content: flex-start;

}

footer .user-menu {
	flex-direction: column;
}

footer .user-menu li {
	margin-right: 0;
}

footer .user-menu a {
	flex-direction: row;
}

footer .user-menu svg {
	margin-bottom: 0;
	margin-right: 10px;
}

footer > .flex-between {
	align-items: flex-start;
}

.footer-contacts {
	width: 100%;
}

.copyright {
	margin-top: 20px;

	padding: 20px 0;

	text-align: center;
	font-size: 11px;
	line-height: 1.5;

	border-top: 2px solid #ffffff;

	margin-bottom: 59px;
}

/*-------------------------------------------- .DOUBLEFORM (index) --------------------------------------------*/

/* .doubleform */

.doubleform {
	padding: 20px;

    background-color: #f2f3f5;
}

.promocode-form {
	display: flex;
}

.promocode-form button {
	background: url(../img/icon-arrowrgt.svg) center center no-repeat, #459b77;
    background-size: 20px;
}

.promocode-block a {
	display: inline-block;
}

.entrance {
	padding-top: 20px;

	border-top: 1px solid #d6dbe0;
}

.entrance .button {
	width: 202px;
}

/*-------------------------------------------- .SLIDER-INDEX --------------------------------------------*/

.slider-index {
	width: 684px;
}


/*-------------------------------------------- .ICONS-LIST (список с иконками index) --------------------------------------------*/

.icons-list {
/*     display: flex; */
/*     justify-content: space-between; */

    padding: 0;

    list-style-type: none;
}

.icons-list li {
	display: flex;
	flex-direction: column;
	align-items: center;

	list-style-type: none;
}

/* горизонтальные пункты с иконками (aktivnoe-dejstvie-dinamic.php index.php.рекомендован)*/

.icons-list.row li {
	flex-direction: row;
	align-items: center;
}

.icons-list.row li.wid-100 /*aktivnoe-dejstvie-dinamic.php*/ {
	margin-bottom: 40px;
}

.icons-list.row li p {
	margin-bottom: 0;
}

.icons-list.row li svg {
    width: 60px;
    height: 60px;

    margin-right: 30px;
    margin-bottom: 0;
}

.icons-list.row.wid-100 svg {
    width: 50px;
    height: 50px;

    margin-right: 30px;
    margin-bottom: 0;
}

.icons-list li span {
	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.icons-list li svg {
	fill: #459b77;

    width: 60px;
    height: 60px;

    margin-bottom: 10px;
}

/*-------------------------------------------- .ANIM-IMG (увеличение картинок) --------------------------------------------*/

.anim-img img {
	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.anim-img > *:hover img {
    transform: scale(1.1);
}

/*-------------------------------------------------- ПРОДУКТ ------------------------------------------------*/

.prices-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px;
    margin-bottom: 14px;

    background-color: #f2f3f5;
}

.prices-wrap.flex-center {
	justify-content: center;
}

.price-main {
	font-size: 20px;
	font-weight: 500;
    color: #459b77;
}

.price-stroke {
	text-decoration: line-through;
	text-decoration-color: #f62008;  
	font-size: 14px;
}

.discount {
    display: flex;
    align-items: center;
    line-height: 20px;
    padding: 0 5px;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: #f62008;
    color: #ffffff;
    font-size: 12px;
}

.product-page.prices-wrap {
	justify-content: center;
}

.product-page .price-main {
	font-size: 24px;
}

.product-page .price-stroke {
	font-size: 16px;
}

.product-page .discount {
	font-size: 16px;
	
    line-height: 24px;
}

.like {
    border-radius: 3px;
	border: 1px solid #f2f3f5;
	background-color: transparent;
    background-color: #f2f3f5;
    
    font-size: 0;
}

.like svg {
	fill: none;
	stroke: #3a3c3e;
	stroke-width: 30px;
}

.like:HOVER svg {
	stroke: #2f6f54;
	cursor: pointer;
}

.like svg.favorite {
	fill: #2f6f54;
	stroke: #2f6f54;
}


.descr {
    display: block;
    font-size: 12px;
}

.rating {
	display: flex;
	align-items: center;
}

.rating span:FIRST-CHILD {
	display: inline-block;

	width: 50px;
    height: 10px;

	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMid' viewBox='0 0 15 15'%3E%3Cpath class='st0' fill='%23d6dbe0' d='M7.5 0l2.3 4.9 5.2.8-3.7 3.8.9 5.4-4.6-2.6L2.9 15l.9-5.4L0 5.7l5.2-.8L7.5 0z'/%3E%3C/svg%3E") repeat-x 0;
}

.rating span:FIRST-CHILD span {
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMid' viewBox='0 0 15 15'%3E%3Cpath class='st0' fill='%23ff8970' d='M7.5 0l2.3 4.9 5.2.8-3.7 3.8.9 5.4-4.6-2.6L2.9 15l.9-5.4L0 5.7l5.2-.8L7.5 0z'/%3E%3C/svg%3E") repeat-x 0;
}

.about {
    display: flex;
    flex-direction: column;
    flex-grow: 2;

    padding: 0 5px;

    color: #3a3c3e;
}

.about .title {
    color: #3a3c3e;
}

.about .title:HOVER {
    color: #2f6f54;
}
.product-choice.menu{
	grid-template-columns: 1fr 1fr 1fr;
}
.product-choice {

	/*     display: flex; */
	/*     justify-content: space-between; */
	/*     flex-wrap: wrap; */

	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-column-gap: 2%;

	padding: 0;
    list-style: none;
    margin-top: 20px;

    padding: 0;
    list-style: none;
    margin-top: 20px;
}

.product-choice li {
	width: 100%;
}

.product-choice input {
	display: none;
}

.product-choice.color label {
	flex-direction: row;
}

.product-choice label,
.product-choice.menu a {
	display: flex;
	flex-direction: column;
	align-items: center;

	padding: 10px 15px;

	border: 2px solid #f2f3f5;
	border-top: 2px solid #459b77;

   	color: #3a3c3e;
}

.product-choice label:HOVER {
	border: 2px solid #459b77;
}

.product-choice input:checked + label {
	padding: 10px 20px;

	border: 2px solid #459b77;
	color: #459b77;
}

.product-choice img {
    width: 30px;

    margin-top: 10px;
    border-radius: 50%;
}

.product-choice.color img {
    margin-right: 10px;
    margin-top: 0;
    border-radius: 50%;
}

/* Карточка продукта (.product.card) */

.product.card {
	display: flex;
	flex-direction: column;
/*     align-self: flex-start; */

    width: 95%;

    margin: 0 auto;

   	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.product.card .border {
	display: flex;
	flex-direction: column;
	flex-grow: 2;
	border: 1px solid #f2f3f5;
	border-bottom: none;
}

.product.card  .image {
	display: block;

	font-size: 0;
}

.product.card  .image img {
	width: 100%;
}

.product.card .title {
    flex-grow: 2;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 12px;
}

.product.card .rating {
    display: flex;
    padding: 0 5px;
    flex-direction: column;
    font-size: 12px;
}

/* Страница продукта (.product) */

.product-gallery {
	width: 44%;
}

.product-desc {
	width: 50%;
}

.product-title {
	vertical-align: baseline;
}

.product-title h1 {
    font-size: 23px;
    margin-bottom: 10px;
}

.product button.icon {
	font-size: 0;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
}

.product button.icon svg {
    width: 30px;
    height: 26px;
}

.slider-product img, .slider-product-nav img {
	width: 100%;
}

.slider-product-nav {
	margin-top: 20px;
}

.slider-product-nav .slick-slide {
	margin: 0 10px;
}

.slider-cards .slick-track {
	display: flex;

/* 	padding-top: 35px; */
}

.slider_one img {
	width: 100%;
}

.slider-cards.slick-initialized .slick-slide {
	display: flex;
	height: auto;
}

/* .slider-cards .slick-prev { */
/* 	left: -30px; */
/* } */

/* .slider-cards .slick-next { */
/* 	right: -30px; */
/* } */

.zoom {
    background-color: rgb(0, 0, 0);
}

/* Карточка продукта в каталоге (.catalog .product.card) */

.catalog .product.card {
    width: 48%;
    margin: 0;
    margin-bottom: 40px;
}

.catalog .product.card:HOVER {
	transform: scale(1);
}

.catalog .product .descr {
	font-size: 14px;
}

.catalog .rating span {
	font-size: 14px;
}

.catalog .rating span:first-child {
    width: 75px;
    height: 15px;
}

.filters-title {
	position: relative;
	text-align: center;
	display: inline-block;
	padding-right: 29px;
	font-size: 20px;
	font-weight: 500;

	margin-top: 20px;
    margin-bottom: 20px;
}

.filters-title:AFTER {
    content: "";
    width: 19px;
    height: 19px;
    background: url(../img/plus.svg) no-repeat;
    right: 0;
    display: block;
    position: absolute;
    background-size: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.filters-title.opened:AFTER {
	background: url(../img/minus.svg) no-repeat;
	background-size: 19px;
}

.filters .product-choice {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 5px;

	margin-bottom: 5px;
	margin-top: 8px;
}

.filters .product-choice.vert {
    display: flex;
    flex-direction: column;
}

.filters .product-choice.size {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}
.filters .product-choice.foot-size {
    grid-template-columns: 1fr 1fr 1fr;
}

.filters .product-choice.color {
    grid-template-columns: 1fr 1fr;
}

.filters .product-choice.klass {
    grid-template-columns: 1fr 1fr;
}

.filters  .product-choice li {
	margin-right: 0;
}

.filters .product-choice label {
	padding: 10px 8px;
	background-color: #ffffff;
}

.filters  .product-choice input:checked + label {
    padding: 10px;
    border: 2px solid #459b77;
    background-color: #459b77;
    color: #ffffff;
}

.filters .size li {
/* 	width: 23%; */
	box-sizing: border-box;
}

.filters .color li {
/* 	width: 48%; */
	box-sizing: border-box;
}

.filters .color label {
    padding: 10px 5px;
}

.filters .klass li {
	box-sizing: border-box;
}

.catalog  .card.nothing {
	width: 100%;
	text-align: center;
	font-size: 18px;
}


/*-------------------------------------------- КОРЗИНА --------------------------------------------*/

.cart-page {
	align-items: stretch;
}

.cart-item {
/* 	display: flex; */
/* 	justify-content: space-between; */
/* 	align-items: center; */

	padding-bottom: 20px;
	margin-bottom: 40px;

	font-size: 12px;
    border-bottom: 1px solid #e8e8e8;
}

.cart-item img {
	width: 16%;
	margin-right: 20px;
}

.cart-item ul {
	padding: 0;

	list-style-type: none;
}

.cart-item ul li:LAST-CHILD {
	margin-bottom: 0;
}

.item {
	display: flex;
	align-items: flex-start;
}

.quantity {
	display: flex;

    margin-bottom: 10px;

  	font-size: 12px;

  	font-weight: 300;
}

.input-number {
	display: flex;

	margin-left: 10px;
}

.input-number input {
	border: none;
	width: 20px;
	text-align: center;
}

.input-number .minus, .input-number .plus {
	position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 17px;
    width: 17px;

    background-color: transparent;
}

.input-number .minus:before, .input-number .plus:before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 4px;
    top: 7px;
}

.input-number .minus:after, .input-number .plus:after, .input-number .plus:before {
    background: #000;
    content: '';
    display: block;
    height: 1px;
    left: 4px;
    position: absolute;
    top: 7px;
    width: 7px;
}

ul.item-sale {
	padding: 50px 20px;

	border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.item-price {
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    /* align-items: center; */
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-left: calc(16% + 20px);
}

.cart-item .favorite,
.cart-item .delete {
	background-color: transparent;
	border: none;

	color: #459b77;
}

.cart-item .favorite {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 1px solid #d6dbe0;
}

.receipt-wrap {
	width: 35%;
	position: relative;
}

.receipt {
/*     position: sticky; */
/*     top: 130px; */

	display: flex;
	flex-direction: column;

    padding: 20px 10px;
    margin-top: 20px;
    margin-bottom: 20px;

	width: 100%;
	box-sizing: border-box;

    border: 2px solid #f2f3f5;
    border-top: 2px solid #459b77;
}

.item-info li {
	margin-bottom: 10px;
}

.receipt .button {

	box-sizing: border-box;

	text-align: center;
}

.order {
	display: flex;
	flex-direction: column;
	align-items: center;

    margin-top: 16px;
}

.order-info {
	padding: 0;
	list-style-type: none;

	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #d6dbe0;
}

.cart-promokod {
	align-items: center;
}

.cart-promokod input {
    font-size: 17px;
    line-height: 0;
    margin: 0 15px;
    margin-right: 0;
    width: 160px;
}

.cart-promokod .button {
    background: url(../img/icon-arrowrgt.svg) center center no-repeat;
    padding: 10px;
    background-color: #459b77;
    background-size: 14px;
    border-radius: 0 3px 3px 0;
}

.order-info li {
	display: flex;
	justify-content: space-between;
}


.order-info li:NOT(:FIRST-CHILD) {
	font-size: 12px;

}

.order-result {
	padding: 0;
	list-style-type: none;
	font-size: 16px;
}

.order-result li {
	display: flex;
	justify-content: space-between;
    align-items: center;

	margin-bottom: 0;
}

.order-result span {
	color: #459b77;
	font-weight: 600;

    font-size: 24px;
}

/*------------------------------------------- КОНТАКТЫ (KONTAKTS.PHP KONTAKTS-BLOCK) -------------------------------------------*/

.kontakts-block {
    padding: 0;
    margin-bottom: 40px;
}

.kontakts-block li {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.kontakts-block iframe {
	margin-top: 14px;
	margin-bottom: 14px;
}

.kontakts-block svg {
	width: 20px;
	height: 20px;
	fill: #459b77;
	margin-right: 5px;
}

/*------------------------------------------- .article-preview -------------------------------------------*/

.article-preview {
	border: 1px solid #f2f3f5;
}

.article-preview:hover {
	border: 1px solid #f2f3f5;
}

.article-preview .text {
    box-sizing: border-box;
    width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.article-preview .text a {
	text-align: right;
}


.article-preview .anons {
	font-size: 13px;
	flex-grow: 2;
}

.article-preview .article-img {
	width: 40%;

	font-size: 0;
	border-bottom: none;


	display: block;
	overflow: hidden;
}

.article-preview img {
	width: 100%;

	-webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.article-preview:HOVER img {
    transform: scale(1.1);
}

/* kontakts.php пункты выдачи */

.points {
	list-style-type: none;
	padding-left: 0;
}

.points .title {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.points .title svg {
    width: 20px;
    height: 20px;
    fill: #459b77;
    margin-right: 5px;
}

.points .title > span {
    display: block;
    width: calc(100% - 25px);
}

.points .sublist {
	list-style-type: none;
}

.points .sublist li {
	margin-bottom: 6px;
}

.sublist .flex-start {
	align-items: center;
}

.sublist .flex-start svg {
	width: 6px;
	height: 6px;
	margin-right: 5px;
}

.metro-blue {
	fill: #0078c9;
}

.metro-green {
	fill: #009a49;
}

/* -------------------------------------------- attention-block --------------------------------------------*/

.attention-block {
	position: relative;

	width: 90%;
	padding: 30px;
	box-sizing: border-box;
    margin-top: 30px;

    background-color: #f8f9fa;
}

.attention-block p:LAST-CHILD {
	margin-bottom: 0;
}

.attention-block img {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
}

.attention-block li:LAST-CHILD {
	margin-bottom: 0;
}



.price {
	flex-grow: 2;
	font-size: 20px;
	font-weight: 600;
}

.rating {
	display: flex;
	align-items: center;
}

.rating span:FIRST-CHILD {
	display: inline-block;
    width: 100px;
    height: 20px;

	margin-right: 10px;

	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMid' viewBox='0 0 15 15'%3E%3Cpath class='st0' fill='%23d6dbe0' d='M7.5 0l2.3 4.9 5.2.8-3.7 3.8.9 5.4-4.6-2.6L2.9 15l.9-5.4L0 5.7l5.2-.8L7.5 0z'/%3E%3C/svg%3E") repeat-x 0;
}

.rating span:FIRST-CHILD span {
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMid' viewBox='0 0 15 15'%3E%3Cpath class='st0' fill='%23ff8970' d='M7.5 0l2.3 4.9 5.2.8-3.7 3.8.9 5.4-4.6-2.6L2.9 15l.9-5.4L0 5.7l5.2-.8L7.5 0z'/%3E%3C/svg%3E") repeat-x 0;
}


/* -------------------------------------------- стили таблиц --------------------------------------------*/

.tablehovered {
	width: 80%;
	border: 1px solid #fff;
	border-collapse: collapse;
	border-spacing: 5px;
	margin: 40px 0px 20px 0px;
}

.tablehovered th {
	background: #2f6f54; /* Цвет фона ячеек заголовка */
	color: #fff; /* Цвет текста */
	font-weight: 400;
}

.tablehovered tr {
	background: #f8f9fa; /* Цвет фона ячеек */
	font-size: 10px;
	font-weight: 400;
}

.tablehovered td, th {
	padding: 3px; /* Поля в ячейках */
	text-align: center;
}

.tablehovered td:FIRST-CHILD {
	text-align: left;
}

.tablehovered tbody tr:hover {
	background: #459b77;
	color: #fff;
}

/* .cookies-box  */

.cookies-box {
    position: fixed;
    z-index: 1001;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 62px;
	bottom: 41px;
    left: 0;
    right: 0;
    padding: 6px 0 10px 12px;
    font-size: 12px;
    line-height: 1.28571429;
    border-radius: 8px 8px 0 0;
    box-sizing: border-box;
    background-color: rgba(34,34,34,0.9);
    color: #fff;
    box-shadow: 2px 8px 24px 0 rgb(0 0 0 / 16%);
}

.cookies-box p {
	margin-bottom: 0;
}

.cookies-cross {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    padding: 12px;
    box-sizing: content-box;
    color: currentColor;
    border-bottom: none;
    background-color: transparent;
    border: none;
}

.cookies-box a {
	color: #ffffff;
	border-color: #ffffff;
}

.cookies-box a:HOVER {
	color: #ffffff;
	opacity: 0.6;
	border-color: #ffffff;
}

.cookies-cross::before,
.cookies-cross::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1px;
    top: 23px;
    left: 12px;
    background-color: #ffffff;
    
    -webkit-transition: 0.3s all linear;
    -moz-transition: 0.3s all linear;
    -o-transition: 0.3s all linear;
    transition: 0.3s all linear;
}

.cookies-cross::before {
	transform: rotate(45deg);
}

.cookies-cross::after {
	transform: rotate(-45deg);
}

.cookies-cross:HOVER::before, .cookies-cross:HOVER::after {
	opacity: 0.6;
}

@media (max-width : 374px) {
	.cookies-box p {
	    font-size: 10px;
	}
}

@media (min-width: 640px){
	.cookies-box {
	    font-size: 14px;
	    left: 15px;
	    max-width: 471px;
	    padding: 8px 0 8px 16px;
	    border-radius: 4px;
 	 	bottom: 20px;
	}
}