.language {
    /*visibility: hidden;*/
}
/* Базовые */
/* Скелет */
/* Кнопка "На верх" */
/* Выбор города в шапке */
.subscribe #subscribe_name {
    display: none;
}
.main-text {
    margin-top: 60px;
}
.product-layout {
    margin-bottom: 30px;
}
.address .header-info a {
    color: #310000;
}
/*.address .header-info a > span:last-child {
    color: var(--main-dark);
}*/
.language button {
    border: 0;
    background: transparent;
    padding: 7px;
    cursor: pointer;
}
.subscribe span.text{
	font-size: 16px;
	padding-left: 10px;
	display: none;
}

.subscribe span.text.error{
	color: #ff0000;
}

.subscribe span.text.ok {
    color: #fff;
    grid-column-start: 1;
    grid-column-end: 4;
    text-align: center;
    padding-top: 5px;
}
.subscribe span.text.ok svg {
    width: 20px;
    color: #ffffff;
}

marquee {
    padding: 10px 0 5px;
    font-size: 18px;
}



.instock, .material {
    font-size: 14px;
    color: #00769d;
    margin-bottom: 10px;
}
.instock span, .material span {
    font-weight: bold;
}


/* Базовые */
:root {
  --main-color: #02A6D0;
  --main-dark: #00769d;
  --link-color: #d90f0f;
}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: 'Lato', sans-serif;
	margin: 0;
	width: 100%;
	background: #f9f9f9;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
.bottom-h1 {
    font-size: 19px;
}
h2 {
    font-size: 1.5em;
}
h3 {
	font-size: 1.4em;
}
h4 {
	font-size: 1.3em;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1em;
}
a {
    background-color: transparent;
    color: var(--main-color);
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
.clearfix {
    clear: both;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* Скелет */

.container {
    max-width: 1200px;
    margin: 0 auto 15px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

header {
    margin-top: 20px;
    font-size: 14px;
}

header a {
    text-decoration: none;
}

.header {
    display: grid;
    grid-template-columns: 3.2fr 2fr 3.5fr 2fr;
    grid-template-rows: 1fr auto;
    grid-template-areas:
        "logo city address phones"
        "logo search search cart";
}
.logo {
    grid-area: logo;
    max-width: 300px;
}
.mail {
	grid-area: mail;
	display: flex;
	font-size: 13px;
}
.address {
	grid-area: address;
	display: flex;
	font-size: 16px;
	align-self: end;
}

.phones {
    grid-area: phones;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.search {
    grid-area: search;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search #search {
    width: 100%;
}

.other_choice {
    display: flex;
    grid-area: city;
    align-self: end;
}

.other_choice, .address, .phones {
    margin-bottom: 15px;
}

.city {
    color: #00769D;
    font-size: 16px;
    font-weight: 600;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    -ms-line-clamp: 2;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    display: -webkit-box;
    display: box;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
    box-orient: vertical;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.btn-group.open {
    position: relative;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
#wishlist-total, #compare-total {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 10px;
}
#topnav.sticky #wishlist-total {
    margin: 0;
}
#wishlist-total i, #compare-total i {
    font-size: 27px;
    transition: .1s;
}

#wishlist-total:hover i, #compare-total:hover i {
    color: #d90f0f;
}

.wish-text span {
    position: absolute;
    font-size: 10px;
    background: #d90f0f;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: -10px;
    right: -10px;
    transition: .1s;
}

#topnav .cart .wish-text span {
    top: 11px;
    right: 0;
}

#wishlist-total:hover .wish-text span, #compare-total:hover .wish-text span {
    background: var(--main-color);
}
.cart {
	grid-area: cart;
    display: flex;
    justify-content: flex-end;
}

.cart > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

#search .search-block {
    display: flex;
}

.search-block input {
    border: 1px solid #c2c2c2;
    border-right-width: 0;
    padding: 11px 15px;
    width: calc(100% - 36px);
}

.search-block button {
    background: #fff;
    border: 1px solid #c2c2c2;
    border-left-width: 0;
    padding: 11px;
}

.mob_menu {
    display: flex;
}

#topnav .main-menu {
    position: relative;
    display: flex;
}

#topnav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

#topnav a {
    color: #fff;
    padding: 20px 12px;
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    text-decoration: none;
    transition: .2s;
}

#topnav a.price {
    display: flex;
    gap: 5px;
}

#topnav a:hover {
    background: var(--main-dark);
}

#topnav .dropdown-category {
    position: relative;
    display: inline-block;
    background: var(--main-dark);
    color: #fff;
    padding: 21px 15px;
    min-width: 200px;
    font-size: 16px;
    margin-right: 20px;
}

#topnav .dropdown-category:hover {
    background: #026282;
}

#topnav .dropdown-category .category-btn i {
    padding: 0 10px 0 10px;
}

#topnav .dropdown-category:hover .dropdown-category-list,
#topnav .dropdown-category:focus .dropdown-category-list {
    display: flex;
}

#topnav .dropdown-category .dropdown-category-list {
    position: absolute;
    display: none;
    flex-direction: column;
    width: max-content;
    top: 60px;
    left: 0;
    min-width: 270px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 9;
}
#topnav.sticky .dropdown-category .dropdown-category-list {
        top: 45px;
}

#topnav .dropdown-category .dropdown-category-list a {
    background: #fff;
    color: var(--main-dark);
    padding: 10px 0 10px 18px;
    text-transform: initial;
    font-size: 15px;
    width: 100%;
    display: flex;

}

#topnav .dropdown-category .dropdown-category-list a > i {
    float: right;
    padding-right: 18px;
    color: #333;
}

#topnav .dropdown-category .dropdown-category-list a img {
    width: 15px;
    vertical-align: top;
    margin-right: 5px;
    display: none;
}

#topnav .dropdown-category .dropdown-category-list a:hover {
    background: #d5f8ff;
}

#topnav .dropdown-category .dropdown-category-list .children {
    color: #333;
    padding-left: 20px;
    font-size: 14px;
}

#topnav .container .main-menu .icon {
    display: none;
}

.top-line {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    padding: 10px 0px;
}

.top-line p {
    margin: 0;
}

.top-line i {
    padding-right: 5px;
    color: var(--main-color);
}

.topnav {
    background-color: var(--main-color);
    /*margin-bottom: 20px;*/
	z-index: 999;
}

.header-icon {
    padding: 0 10px;
}

.header-icon i {
    color: #71737a;
    font-size: 20px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-info span {
    display: block;
}

.header-info a {
    color: var(--main-dark);
}

.phones .header-info a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-dark);
    transition: .2s;
}

.phones .header-info a:hover {
    color: #d90f0f;
}

.phones .header-info:last-child a {
    font-size: 14px;
    font-weight: 500;
}

.phones .header-info a span {
	/*font-size: 17px;*/
	
}

/* Кнопка "На верх" */

.backtotop {
    position: fixed;
    z-index: 9999;
    bottom: 3vh;
    right: 2vw;
    height: 50px;
    width: 50px;
    opacity: 1;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
    background: #02a6d0;
    border-radius: 50%;
    transition: .2s;
}

.backtotop:hover {
    opacity: .8;
}

.backtotop i {
    opacity: 1;
    padding: 0;
    position: relative;
}

/* Выбор города в шапке */

.select_city {
    position: relative;
    cursor: pointer;
    text-align: left;
    margin-left: 0px;
    width: 100%;
}

.select_city span {
    color: #2F3034;
    text-overflow: ellipsis;
    font-size: 13px;
    font-weight: 500;
}

.address a span:first-child {
    font-size: 13px;
}

.select_city:hover span{

}

.select_city .other_city.open {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
}

.select_city .other_city{
	display: none;
	position: absolute;
    top: 20px;
    left: 16px;
    background: #fff;
    border: solid 1px #e6e6e6;
    z-index: 100;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.1);
}

.select_city .other_city a{
	display: block;
    padding: 5px;
    min-width: 150px;
    text-decoration: none;
    color: #5b6186;
    text-align: left;
}

.select_city .other_city a:hover{
	color: #fff;
	background: #3b436d;
}

#cart {
    position: relative;
}

#cart .dropdown-cart {
    position: absolute;
    z-index: 999;
    background: #fff;
    display: none;
}

div#cart.btn-group.btn-block.open .dropdown-cart {
    display: block;
    min-width: 325px;
    padding-left: 0;
    margin: 0;
    list-style: none;
    right: 0;
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.5);
}

.cart-btn {
    background: transparent;
    border: 0;
    max-width: 230px;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: .2s;
    display: inline-flex;
    text-align: left;
    align-items: center;
    height: 100%;
    margin-left: 10px;
    padding: 0;
}

.cart-btn > span:nth-child(2) {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.overall {
    display: none;
    text-align: right;
    width: 55%;
    font-size: 17px;
    font-weight: bold;
}

#cart-total i {
    font-size: 24px;
    float: left;
    color: #fff;
}

#cart-total {
    font-size: 10px;
    line-height: 1;
    color: #fff;
    background: var(--link-color);
    width: 20px;
    height: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: inherit;
    position: absolute;
    right: 0;
    top: -2px;
}
.cart-btn:hover #cart-total {
    background: var(--main-color);
}
#cart-total-price {
    font-size: 16px;
    color: #fff;
    text-transform: inherit;
	display: block;
	float: right;
	margin-top: -5px;
}

.cart-btn:active, .cart-btn:focus {
    outline: 0;
}

#cart button i {
    font-size: 30px;
    color: var(--link-color);
    display: block;
    float: left;
}

.cart-header {
    border-bottom: 1px solid #E8E8E8;
    padding: 15px;
    color: #777;
}

.cart-header #cart-total {
    color: #22294f;
    font-size: 14px;
    line-height: 1.8;
}

.cart-header #cart-totals {
    color: #22294f;
    font-size: 14px;
    line-height: 1.8;
    text-transform: inherit;
    display: none;
    float: right;
}
.modal .text {
    text-align: center;
}

.cart-header i {
    color: var(--link-color);
    font-size: 20px;
    vertical-align: text-bottom;
}

.dropdown-cart ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.left-category {
    background: #f4f4f4;
    padding: 10px 0;
}

a.list-group-item.main:not(.active) {
    font-weight: bold;
    background: #02a6d0;
    color: #fff !important;
}

#accordionz a {
    text-decoration: none;
}

#accordionz > a, #accordionz div a {
    padding: 8px 12px;
}

#accordionz div a {
    padding-left: 40px;
    font-size: 14px;
}

#accordionz > a {
    color: #2F3034;
    font-size: 15px;
    cursor: pointer;
    /*text-transform: uppercase;*/
    padding: 10px 12px 10px 20px;
    transition: .2s;
}

/*#accordionz > a:not(.thirdlevel):before {
    content: '';
    background-image: url(/image/catalog/favicon_.png);
    background-size: 100%;
    display: block;
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 5px;
}*/
.form1 span {
    font-size: 12px;
    margin-top: -10px;
    display: block;
}
#accordionz > a.thirdlevel {
    padding-left: 20px;
}

#accordionz > a.active {
    background: #d5f8ff;
    border-left: 5px solid #02a6d0;
}

#accordionz > a.thirdlevel {
    font-size: 13px;
    padding: 10px 20px 10px 35px;
    line-height: 1.7;
    font-weight: normal;
}

#accordionz>a.childz {
    font-weight: 400;
    text-transform: unset;
    line-height: 1.3;
}

.delivery-table td:first-child {
    width: 240px;
}

#content.information p, #content.information ul, #content.information ol {
    line-height: 1.4;
}

.left-category > .accordionz-content {
    display: block !important;
}

.accordionz-toggle i {
    float: right;
    margin-top: 0;
    font-size: 20px;
    color: #787878;
    -o-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -khtml-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

.fa-acc-rotating {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -o-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -khtml-transition: all 200ms ease;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
}

#accordionz > a:hover, #accordionz .accordionz-content > a:hover {
    background: #d5f8ff;
    color: #2F3034 !important;
}

.two-banners {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.two-banners div {
    width: 49%;
}

.two-banners img {
    width: 100%;
}

.module-heading {
    text-align: center;
}

.module-heading h2 {
    font-size: 33px;
    font-weight: normal;
    width: max-content;
    margin: .83em auto;
}

.fancybox-content {
    width: 80vw;
}

/*.module-heading h2:after, .module-heading h2:before {
    content: '';
    display: block;
    border-right: 2px solid;
    width: 2px;
    height: 40px;
}

.module-heading h2:after {
    float: right;
    margin-left: 20px;
    
}

.module-heading h2:before {
    float: left;
    margin-right: 20px;
}*/

.blue-color {
    color: var(--main-dark);
}

.red-color {
    color: var(--link-color);
}

.category-rows {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.category-item {
    max-height: 315px;
    overflow: hidden;
}

.category-item img {
    width: 100%;
    max-width: 234px;
    border: 6px solid #fff;
}

.category-item:hover img {
    border: 6px solid var(--main-dark);
}

.category-item:hover .category-item-name {
    background: var(--main-dark);
    color: #fff;
    /*max-width: none;*/
    padding: 0px 15px;
}

.category-item a {
    position: relative;
    text-decoration: none;
}

.category-item a .category-item-name {
    position: relative;
    bottom: 100px;
    width: 100%;
    max-width: 200px;
    height: 56px;
    text-align: center;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.warranty {
    padding-bottom: 30px;
    border-bottom: 3px solid var(--main-color);
}

.warranty-list {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    text-align: center;
    font-size: 14px;
    color: #00769d;
    line-height: 1.5;
}

.warranty-list > div {
    width: 14%;
    padding: 0 5px;
}

.warranty-img {
    width: 74px;
    height: 85px;
    background-image: url(/image/warr.png);
    margin: 20px auto 15px;
}

.warranty-1 {
    background-position-x: -243px;
}

.warranty-2 {
    background-position-x: 0;
}

.warranty-3 {
    background-position-x: -159px;
    width: 84px;
}

.warranty-4 {
    background-position-x: -75px;
    width: 81px;
}

.warranty-5 {
    background-position-x: 172px;
    width: 80px;
}

.warranty-6 {
    background-position-x: 92px;
    width: 85px;
}

.warranty-7 {
    background-position-x: 235px;
    width: 62px;
}

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

.newest-product-item {
    max-width: 370px;
    border: 1px solid #eee;
    padding: 10px;
    display: flex;
    margin-bottom: 30px;
}

.newest-product-item a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding-top: 15px;
}

.newest-product-item img {
    margin-right: 10px;
}

.subscribe {
    background: var(--main-color);
    color: #fff;
    margin-top: 30px;
}

.subscribe-block {
    display: flex;
    justify-content: space-between;
    padding: 25px 0;
    margin: 60px 0 30px;
    align-items: center;
}

.subscribe-block > div {
    width: 50%;
}

.sub_text {
    font-size: 22px;
    text-transform: uppercase;
}

.subscribe input[type="email"]::placeholder {
    font-size: 14px;
    color: #71737a;
}

.subscribe input[type="email"] {
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 5px;
    width: calc(100% - 160px);
}

input[type="submit"] {
    background: var(--link-color);
    color: #fff;
    border: 1px solid transparent;
    font-size: 16px;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 5px;
    margin-left: -10px;
}

.newest-product-item a span {
    color: var(--main-color);
    text-decoration: underline;
}

.list-unstyled {
    padding: 0;
    list-style: none;
}

.list-unstyled, .list-unstyled a {
    color: #71737a;
    text-decoration: none;
}

footer .list-unstyled {
    font-size: 14px;
    line-height: 30px;
}

footer h5 {
    font-size: 16px;
    text-transform: uppercase;
    color: #2f3034;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.company-info i {
    width: 15px;
    margin-right: 5px;
}

.company-info img {
    margin-top: 10px;
}

.bottom-line {
    color: #71737a;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.bottom-line .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-line .container .copyright {
    font-size: 14px;
}

.bottom-line .container .copyright a {
    font-size: 14px;
}
.bottom-line .container div a {
    font-size: 14px;
}

.bottom-line .container .payments {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
}

.bottom-line .container .payments img {
    margin-left: 20px;
}

#blok_tel p {
    margin: 0;
}

#blok_tel .form1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal {

/* Слой перекрытия */
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0,0,0,0.5);
z-index: 10000;

/* Трансформации прозрачности при открытии  */
-webkit-transition: opacity 500ms ease-in;
-moz-transition: opacity 500ms ease-in;
transition: opacity 500ms ease-in;

/* Скрываем изначально */
opacity: 0;
pointer-events: none;
}

/* Показываем модальное окно */
.modal:target {
opacity: 1;
pointer-events: auto;
}

/* Содержание */
.modal > div {
width: 300px;
background: #ffffff;
position: relative;
margin: 10% auto;

/* По умолчанию минимизируем анимацию */
-webkit-animation: minimise 500ms linear;

/* Придаем хороший вид */
padding: 30px;
-moz-border-radius: 7px;
border-radius: 7px;
-webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
-moz-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
box-shadow: 0 3px 20px rgba(0,0,0,0.9);
text-shadow: 0 1px 0 #fff;
}

/* Изменяем анимацию при открытии модального окна*/
.modal:target > div {
-webkit-animation-name: bounce;
}

.modal h2 {
font-size: 36px;
padding: 0 0 20px;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale3d(0.1,0.1,1);
    -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
  55% {
    -webkit-transform: scale3d(1.08,1.08,1);
    -webkit-box-shadow: 0 10px 20px rgba(0,0,0,0);
  }
  75% {
    -webkit-transform: scale3d(0.95,0.95,1);
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.9);
  }
  100% {
    -webkit-transform: scale3d(1,1,1);
    -webkit-box-shadow: 0 3px 20px rgba(0,0,0,0.9);
  }
}

@-webkit-keyframes minimise {
  0% {
    -webkit-transform: scale3d(1,1,1);
  }
  100% {
    -webkit-transform: scale3d(0.1,0.1,1);
  }
}

/* Ссылка на кнопку Закрыть */
.modal a[href="#close"] {
position: absolute;
right: 0;
top: 0;
color: transparent;
}

/* Сбрасываем изменения */
.modal a[href="#close"]:focus {
outline: none;
}

.modal a[href="#close"]:after {
    content: 'x';
    display: block;
    position: absolute;
    right: -10px;
    top: -10px;
    width: 25px;
    height: 25px;
    padding: 0px 1px 1px 2px;
    text-decoration: none;
    text-shadow: none;
    text-align: center;
    background: #22294f;
    color: #fff;
    border: 3px solid #ffffff;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.modal a[href="#close"]:focus:after,
.modal a[href="#close"]:hover:after {
    background: #38437d;
}

.modal a[href="#close"]:focus:after {
outline: 0px solid #2F3034;
}

.breadcrumb {
    padding: 10px 0 10px 7px;
    list-style: none;
    display: inline-flex;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    padding: 5px;
    display: block;
}

.category-name {
    font-size: 28px;
    font-weight: normal;
    color: var(--main-dark);
    margin-top: 0;
}

.product-main-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 30px;
    border-bottom: 2px solid #Ddd;
    padding-bottom: 30px;
    row-gap: 30px;
}

.product-main-grid img {
    width: 100%;
}

.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
    width: 100%;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list
{
    background: #fff url('../image/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.vert-carousel .slick-prev {
    left: 0;
    top: 6px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.vert-carousel .slick-next {
    left: 0;
    bottom: -10px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.slick-prev:before, .slick-next:before {
    transform: rotate(90deg);
    display: block;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    /*background: transparent;*/
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.reverse-block {
    display: flex;
    flex-flow: row-reverse;
    flex-direction: column;
}

.image-main {
    margin-bottom: 10px;
}

.image-add .slick-slide {
    margin-right: 5px;
}

.account-wishlist .table-bordered thead tr td {
    border-bottom: 1px solid #ccc;
}
.account-wishlist .table-bordered tr td {
    border: none;
}

.product-page h1 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: normal;
}

.share-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 1em;
}

.product-description {
    margin-bottom: 1em;
}

#agreement_checkbox input[type="checkbox"] {
    margin-right: 10px;
}

#content .attention {
    border: 1px solid #02a6d0;
    padding: 7px;
    font-size: 13px;
    color: #02a6d0;
}

.share-btns div:last-child {
    display: flex;
    gap: 10px;
}

.share-btns button {
    border: 1px solid #02a6d0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #02a6d0;
    background: #fff;
    cursor: pointer;
    transition: .2s;
}

.share-btns button:first-child {
    margin-right: 5px;
}

.share-btns button:hover {
    background: #02a6d0;
    color: #fff;
}

.price-list {
    list-style: none;
    padding: 0;
    font-size: 24px;
    color: var(--main-dark);
}

.price-list p,
.price-list {
    margin: 0;
}

.contacts-page i {
    color: #71737a;
    font-size: 24px;
    min-width: 24px;
    text-align: center;
    margin-right: 10px;
}

.main-contacts > div {
    margin-bottom: 20px;
}

.main-contacts a {
    display: block;
    margin-bottom: 10px;
    color: #2F3034;
    text-decoration: none;
    transition: .2s;
}

.main-contacts a:hover {
    color: #02a6d0;
}

.schedule {
    display: flex;
}

.blacktext {
    font-weight: bold;
}

.redtext {
    color: red;
    font-weight: bold;
}

#product .owq-option table {
    width: 100%;
    border-collapse: collapse;
}

#product .owq-option table thead {
    color: var(--main-dark);
    font-weight: bold;
    font-size: 14px;
}

#product .owq-option table td {
    padding: 5px 10px;
}

#product .owq-option table tr:nth-child(odd) {
    background: #fff;
}

#product .owq-option table thead tr {
    background: transparent !important;
}

.col-quantity .owq-quantity {
    display: flex;
}

.col-quantity .owq-sub, .col-quantity .owq-add {
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
    transition: .2s;
}

.col-quantity .owq-sub:hover, .col-quantity .owq-add:hover {
    background: var(--main-color);
    color: #fff;
}

.col-quantity .owq-input {
    border: 0;
    padding: 5px;
    max-width: 50px;
    text-align: center;
    margin: 0 10px;
    background: transparent;
}

.basket-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
}

.basket-item-img {
    padding-left: 15px;
}

.basket-item-name {
    padding: 10px;
    min-width: 120px;
}

.basket-item-total {
    min-width: 90px;
    padding: 10px;
    font-weight: bold;
    color: #f60606;
    font-size: 16px;
}

.basket-item-del {
    margin-top: 5px;
}

.basket-item-img img {
    padding: 0;
}

.basket-item-name a {
    text-decoration: none;
    color: #2F3034;
    line-height: 14px;
    font-size: 12px;
}

.basket-item-name .quantity {
    display: block;
    font-size: 11px;
    color: rgba(34, 41, 79, 0.6);
    font-weight: bold;
}

.basket-item-del button {
    background: transparent;
    border: 0;
    cursor: pointer;
}

#cart .basket-item-del button i {
    color: var(--main-dark);
    border: 1px solid var(--main-dark);
    border-radius: 14px;
    padding: 5px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    transition: .2s;
}

#cart .basket-item-del button i:hover {
    color: #fff;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.sale-basket li {
    padding: 0 15px;
}

.tablez {
    width: 100%;
    font-size: 14px;
    border-top: 1px solid rgba(0, 118, 157, 0.2);
    color: var(--main-dark);
}

.tablez td {
    padding: 5px;
}

.cart-header a {
    display: inline-block;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    padding: 10px;
    float: right;
    transition: .2s;
}

.cart-header a:hover {
    background: var(--main-dark);
}

.alert.alert-success {
    background: #fff;
    position: relative;
    z-index: 99;
    width: fit-content;
    font-size: 14px;
}

.alert.alert-success a {
    color: var(--main-dark);
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.alert .close {
    /*float: right;*/
    border: 0;
    background: #fff;
    /*border-radius: 50%;*/
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

.alert .close:hover {
    background: rgb(2 166 208);
    color: #fff;
}

.name-product {
    text-align: center;
}
.name-product a {
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-layout:hover .name-product a {
    color: var(--main-dark);
}

.product-thumb .price {
    text-align: center;
    font-size: 25px;
    color: #cd1212;
    margin-top: 0px;
    margin-bottom: 14px;
}

.btn-add, .button_oc.btn {
    background: var(--link-color);
    color: #fff;
    border: 1px solid transparent;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.text-danger {
    padding: 5px 30px;
    margin-top: 5px;
    color: var(--link-color);
    border: 1px solid var(--link-color);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

.information-contact form fieldset {
    background: transparent;
    /*box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);*/
    border: 1px solid transparent;
}

.information-contact form fieldset legend {
    text-transform: uppercase;
    color: var(--main-dark);
    font-weight: bold;
    /*background: #fff;*/
    padding: 15px 30px;
    margin: 0 auto;
}

.information-contact form fieldset .form-group {
    width: 100%;
    max-width: none;
    margin: 0 auto;
}
.information-contact form fieldset input[type="submit"] {
    width: 100%;
}

.information-contact form fieldset .form-group label {
    width: 100%;
    color: #333;
    font-size: 14px;
    margin: 20px 0 10px;
    display: block;
}

.information-contact form fieldset .form-group input, .information-contact form fieldset .form-group textarea {
    width: 100%;
    border: 1px solid #d6d5d5;
    padding: 10px;
    font-size: 14px;
}

.information-contact form fieldset .buttons {
    margin-top: 20px;
    text-align: center;
}

.information-contact form fieldset .buttons {
    margin: 30px 0 20px;
    text-align: center;
}

.h2 {
    font-size: 20px;
    color: var(--main-dark);
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 10px;
}

.delivery-table tr td {
    border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.delivery-table td {
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
}

.delivery-table img {
    width: 100%;
    min-width: 200px;
}

.product-thumb .image {
    max-width: 268px;
    /*max-height: 268px;*/
    overflow: hidden;
    margin-bottom: 25px;
    margin: 0 auto 25px;
    position: relative;
}

.btns {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.btns button {
    background: var(--main-dark);
    color: #fff;
    border: 1px solid transparent;
    font-size: 13px;
    padding: 0 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: .2s;
}

.product_more {
    background: var(--main-dark);
    color: #fff;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px 40px;
    border-radius: 3px;
    margin: auto;
    display: table;
    transition: .2s;
}

.product_more:hover,
.btns button:hover {
    background: var(--link-color);
}

.information-news-info h1 {
    /*font-size: 22px;
    color: var(--main-dark);
    font-weight: normal;
    margin: 0 0 20px;*/
}

.information-news h4 {
    font-size: 16px;
}

.information-news h4 a {
    text-decoration: none;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child):after {
    display: inline-block;
    content: '>';
    float: right;
    color: var(--main-dark);
}

.breadcrumb li:last-child span {
    margin-left: 2px;
    color: #51a6d3;
}

.left-category > .accordionz-content:first-child {
    display: block !important;
}

.dropdown-category-list ul li > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.dropdown-category-list ul li > div .parent-sub {
    background: transparent;
    border: 0;
    color: var(--main-dark);
    width: 33px;
    cursor: pointer;
}

.dropdown-category-list ul li {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content;
    max-width: 270px;
}

.dropdown-category-list ul {
    padding: 10px 0 10px 0;
    margin: 0;
    background: #fff;
}

.dropdown-category-list .child-sub {
    display: none;
    grid-column-start: 1;
    grid-column-end: 3;
    position: absolute;
    width: 270px;
    right: -270px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    z-index: 1;
}

.dropdown-category-list ul .parent:hover .child-sub {
    display: block;
}

#topnav .dropdown-category .dropdown-category-list .parent-sub {
    background: #f4f4f4;
    border: 0;
    cursor: pointer;
    transition: .2s;
}

#topnav .dropdown-category .dropdown-category-list .parent-sub:hover {
	background: var(--main-color);
	color: #fff;
}

.product-main-item {
    text-align: center;
}

.product-main-item a {
    text-decoration: none;
    color: #2F3034;
    font-size: 14px;
    padding: 0 5px;
    display: block;
}

.product-main-item a span {
    margin-top: 10px;
    display: block;
    transition: .2s;
}

.product-main-item a img {
    transition: .2s;
}

.product-thumb .image a img {
    margin: 0 auto;
}

.product-main-item a:hover span {
    color: var(--main-dark);
}

.product-main-item a:hover img {
    opacity: .8;
}

.simplecheckout-button-block {
	background: transparent !important;
}

.product-layout .product-thumb {
    border: 1px solid transparent;
    padding: 10px;
    transition: .2s;
}

.product-layout .product-thumb:hover {
    border-color: var(--main-color);
}

.name-product {
    text-align: center;
    min-height: 56px;
}

/*  Стикеры */

.xd_stickers_wrapper {
    top: 0 !important;
    right: 0 !important;
    left: auto;
    position: absolute;
    z-index: 999;
    width: 0;
    height: 0;
    border-top: 100px solid red;
    font-weight: normal !important;
    text-transform: none !important;
}

.xd_stickers {
    padding: 0 10px;
    margin-bottom: 5px;
}

.xd_stickers.xd_sticker_0:before {
    content: '';
    background-image: url(/image/new.png);
    display: block;
    position: absolute;
    top: -100px;
    right: -1px;
    width: 76px;
    height: 76px;
}

.xd_stickers.xd_sticker_1:before {
    content: '';
    background-image: url(/image/sale.png);
    display: block;
    position: absolute;
    top: -100px;
    right: -1px;
    width: 76px;
    height: 76px;
}

.image-main .xd_stickers_wrapper .xd_stickers:before {
    right: -11px;
    top: -110px;
}

.slick-slider {
    padding: 0;
    width: 100%;
}

.slick-slide.slick-active {
    max-width: 93px !important;
}

.quantity .btn-block .btn-primary, .quantity .btn-block .btn-danger {
    border: 0;
    color: #fff;
    font-size: 12px;
    display: inline-block;
    width: 31px;
    height: 31px;
    cursor: pointer;
    transition: .2s;
}

.quantity .btn-block .btn-primary {
	background: var(--main-color);
}

.quantity .btn-block .btn-danger {
	background: var(--link-color);
}

.quantity .btn-block .btn-primary:hover, .quantity .btn-block .btn-danger:hover {
    background: var(--main-dark);
}

#simplecheckout_cart .form-control {
    width: 100% !important;
    max-width: 50px !important;
    padding: 6px;
    border: 1px solid transparent;
    border-bottom-color: var(--main-color);
}

.row.search-pagination.clearfix {
    padding-top: 20px;
}

.image-main > .xd_stickers_wrapper {
    display: none;
}

.image-main .thumbnails .xd_stickers_wrapper {
    top: 10px !important;
    right: 10px !important;
}
.more-btn {
    text-align: center;
    margin: 30px 0 50px;
    display: block;
}

.more-btn a {
    background: var(--link-color);
    color: #fff;
    border: 1px solid transparent;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
    display: inline-block;
}

.news .caption {
    min-height: 73px;
    font-size: 14px;
    line-height: 20px;
}

.news-info-text > div:last-child {
    text-align: right;
}

.news-info-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 30px;
}

.simple-content fieldset .control-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.simple-content fieldset .control-btns a i {
    display: inline-block;
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.simple-content fieldset .control-btns a {
    text-decoration: none;
}

.simple-content fieldset .control-btns a:hover {
    text-decoration: underline;
}

.color-designs .horz-carousel .slick-slide img {
    max-width: 100px;
    height: 100px;
    display: block;
}
.color-designs .horz-carousel .slick-slide {
    width: 100px !important;
    max-width: 100px !important;
    margin: 0 3px;
}
.color-designs .horz-carousel .slick-slide div li a {
    margin: 0 5px;
    display: block;
}
.color-designs .h2 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00769d;
}

.color-designs .h2 span {
    font-size: 14px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #00769d;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 2px;
    cursor: pointer;
    transition: .2s;
    position: relative;
    top: -10px;
    left: -5px;
    color: #fff;
    font-weight: 100;
}

#simplecheckout_cart #total_shipping {
    display: none;
}

.wpg-copyright {
    border: none;
    width: initial;
    border-collapse: collapse;
    font-family: sans-serif;
    text-align: left;
}

.wpg-copyright .wpg-logo {
    padding: 0;
    padding-right: 8px;
    vertical-align: middle;
}

.wpg-copyright .wpg-logo img {
    height: 28px;
}

.wpg-copyright .wpg-url {
    line-height: 14px!important;
    margin-bottom: 2px;
    display: block;
    color: #2F3034;
    text-decoration: none!important;
    font-size: 14px!important;
    position: relative;
    height: 14px;
    overflow: hidden;
    margin-right: 10px;
}

.wpg-copyright .wpg-url:before {
    /*content: 'Web Project Group';
    width: 100%;
    color: #d7662c;
    display: block;*/
}

.wpg-copyright .wpg-text {
    margin: 0;
    line-height: 13px;
    font-size: 13px;
}

footer .bottom-line .container.copy {
    justify-content: flex-end;
}

.information-sitemap #content a {
    text-decoration: none;
    line-height: 1.7;
}

.information-sitemap #content a:hover {
    text-decoration: underline;
}

.payments {
    padding: 10px 10px;
    text-align: center;
    border: 1px solid #eee;
    background: #eee;
}

.payments p {
    margin: 0;
    text-align: center;
    margin-bottom: 10px;
    color: #71737a;
}

.review-product .product-heading {
    font-size: 24px;
    font-weight: normal;
}

#review .table-review {
    width: 100%;
    border: 1px solid #eee;
    padding: 10px 20px;
}

#review .table-review .name-reviewer {
    color: #00769d;
}

#review .table-review .fa-stack {
    color: #ffc800;
    width: 1em;
}

.rev-form {
    max-width: 400px;
}

.rev-form label {
    color: #777;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.rev-form-back {
    background: url(/image/feed.jpg) no-repeat;
    background-position-x: 90%;
    background-size: contain;
    background-origin: content-box;
    border: 2px solid #eee;
    padding: 0;
    overflow: hidden;
    height: 0;
    transition: height .2s ease-in;
}
.rev-form-back.open {
    height: auto;
    padding: 20px;
}

#review_toggle {
    font-size: 18px;
    border: 1px solid;
    display: inline-block;
    border-radius: 4px;
    padding: 5px 20px;
    cursor: pointer;
    transition: .2s;
}

#review_toggle.active, #review_toggle:hover {
    background: #02a6d0;
    color: #fff;
    border-color: #02a6d0;
}
.rev-form input[type=text], .rev-form textarea {
    border: 1px solid #eee;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 5px 10px;
    width: 100%;
}

.rating-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
}

.rev-form .buttons {
    text-align:center;
}

.rev-form button {
    background: var(--link-color);
    color: #fff;
    border: 1px solid transparent;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    width: 90%;
}

input.sizes {
    background: transparent;
    border: 1px solid #02a6d0;
    color: #02a6d0;
    padding: 5px 10px;
    transition: .2s;
    cursor: pointer;
}

input.sizes:hover {
    background: #02a6d0;
    color: #fff;
}

.modalwin {
    max-height: 100%;
    width: fit-content;
    max-width: 100%;
    border: 3px outset gray;
    background: #fff;
    top: 20%;
    right: 0;
    left: 0;
    font-size: 14px;
    margin: 0 auto;
    z-index: 2;
    display: none;
    position: fixed;
    padding: 15px;
    border: 1px solid #383838;
    box-shadow: 0px 6px 24px rgb(0 0 0 / 0.2), 6px 0px 12px rgb(0 0 0 / 0.2);
}

table.razmer {
    width: 100%;
    padding: 0px;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.razmer tr {
    text-align: center;
}

.razmer tr:first-child {
    border-bottom: 2px solid #22294f;
}

.razmer td {
    padding: 8px 0;
}

.razmer tr:nth-child(even) {
    background: #f5f5f5;
}

#shadow {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #2F3034;
    opacity: 0.5;
    left: 0;
    top: 0;
}

.compare-table {
    border: 0;
}

.compare-table thead td {
    border: 0 !important;
    background: #02a6d0;
    color: #fff;
}
.compare-table td {
    border: 1px solid #e8e8e8 !important;
}

.btn-remove {
    color: #d90f0f;
    border: 1px solid #d90f0f;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: .2s;
}

.btn-remove:hover {
    color: #fff;
    background: #d90f0f;
}

.cart_head_sticky {
    position: fixed;
    z-index: 1000;
    right: 0px;
    top: 0px;
}

.cart_head_sticky .cart-btn {
    border: 0px;
}

.cart_head_sticky .cart-btn {
    max-height: 60px;
}

.inf {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.inf .ya-share2 {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-self: flex-end;
}

.reg_list {
    column-count: 6;
}

.fancybox-can-swipe #regions.fancybox-content {
    cursor: default;
}

.regions-popup .box-title {
    font-size: 27px;
    margin-top: 0;
}

.sym_block {
    position: relative;
    margin-bottom: 10px;
}

/*.sym_block:before {
    content: '';
    border-left: 2px solid transparent;
    position: absolute;
    left: -10px;
    top: 0;
    display: block;
    height: 100%;
    transition: .2s;
}

.sym_block:hover:before {
    border-color: #000;
}*/

.regions-popup .symbol {
    font-size: 22px;
    /*margin-top: 20px;
    margin-bottom: 10px;*/
}

.regions-popup .list {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.regions-popup .region {
    display: block;
    padding: 0 0 10px 0;
    color: #303030;
        text-decoration: none;
}

.regions-popup .region:focus-visible {
    outline: none;
}

.regions-popup .region:hover, .regions-popup .region.active {
    color: var(--main-color);
}

.select_city .fa-location-arrow {
    color: #feb159;
}

#popupWin .heading {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ccc;
    margin-top: 0;
    padding-bottom: 15px;
}

#popupWin .attention {
    font-weight: bold;
}

#topnav.sticky .main-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#topnav.sticky a {
    font-size: 12px;
    padding: 15px 10px;
}
#topnav.sticky .dropdown-category {
    min-width: 200px;
    padding: 15px 10px;
    font-size: 12px;
    cursor: pointer;
}
#topnav .cart {
    display: inline-flex;
    align-items: center;
}
#topnav .main-menu .text_cart,
#topnav .main-menu .overall {
    display: none;
}
#topnav .cart .cart-btn {
    min-width: unset;
    padding: 6px 10px;
}
#topnav #cart button {
    background: transparent;
}
#topnav #cart button i {
    color: #fff;
        font-size: 24px;
}
#topnav #cart button #cart-total {
    position: absolute;
    right: 0px;
    width: 20px;
    height: 20px;
    top: 0;
}

.bottom-line .container div:not(.copyright) {
    display: flex;
}

#topnav .main-menu img {
    display: block;
    width: 20px;
    height: 18px;
    filter: invert(1);
}

#blok_tel .cb {
    text-transform: uppercase;
    color: var(--main-dark);
    font-weight: bold;
    background: #fff;
    padding: 0;
    margin: 0 auto;
}

.inputbox {
    width: 100%;
    border: 1px solid #d6d5d5;
    padding: 10px;
    font-size: 14px;
}

.form1 span {
    width: 100%;
    color: #333;
    font-size: 14px;
    margin: -10px 0 10px;
    display: block;
}
.flex-img {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.main-contacts {
    column-count: 2;
    margin-bottom: 20px;
}

.main-contacts p:first-child {
    margin-top: 0;
}

.main-contacts p:nth-child(5) {
    margin-bottom: 0;
}

.carousel_btns button {
    border: 0;
    background: transparent;
    font-size: 12px;
    cursor: pointer;
    transition: .2s;
}

.carousel_btns button:hover {
    color: #02a6d0;
}

.carousel_btns {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}

.cat_description {
    line-height: 1.5;
    margin: 65px 0 20px;
}

ol, ul {
    padding-left: 20px;
}

.paginations {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px;
}

.pagination {
    margin: 0;
}

.pagination * {
    transition: .2s;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #02a6d0;
    border-color: #02a6d0;
}

.pagination > li > a, .pagination > li > span {
    color: rgb(0 118 157 / 80%);
}

.pagination > li > a, .pagination > li > span {
    color: rgb(0 118 157 / 80%);
    background-color: transparent;
    border: 1px solid rgb(0 118 157 / 8%);
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    color: #f9f9f9;
    background-color: rgb(2 166 208 / 50%);
    border-color: transparent;
}














.alert {
    position: fixed !important;
    background: #fff;
    padding: 20px 70px 20px 40px;
    top: 73px;
    right: 1vw;
    max-width: 30vw;
    z-index: 9999 !important;
    display: block;
    /*align-items: center;*/
    gap: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.alert.alert-success i {
    color: #1dbb05;
    font-size: 30px;
}

.alert .text {
    display: flex;
    gap: 15px;
    font-size: 15px;
    line-height: 1.5;
    align-items: center;
    padding: 20px;
}
.alert .close {
    padding: 20px;
    border-left: 1px solid rgb(2 166 208 / 20%);
    margin-left: 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.product-layout .product-thumb .btns a {
    margin: 0;
}
.product-layout .product-thumb .btns {
    justify-content: space-between;
}

.product-layout .product-thumb .btns div {
    display: flex;
    gap: 5px;
}








@media screen and (max-width: 1560px) {
.fancybox-content {
    width: 90vw;
}
.reg_list {
    column-count: 5;
}
}



@media screen and (max-width: 1280px) {
.reg_list {
    column-count: 4;
}
}






@media screen and (max-width: 1126px) {
.product_more {
    font-size: 11px;
    padding: 10px 30px;
}
.logo {
    max-width: 280px;
    display: flex;
    align-items: center;
}
#topnav a {
	    font-size: 14px;
	}
}

@media screen and (max-width: 1024px) {
.product_more {
    font-size: 10px;
    padding: 8px 20px;
}

}
.blog_list_thumb .image {
    height: 120px;
}
.blog_list_thumb .image a {
    width: 100%;
    height: 100%;
    display: flex;
}
.blog_list_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
.product_more {
    font-size: 12px;
    padding: 10px 40px;
}
.product-layout .product-thumb .btns {
    justify-content: center;
}
.reg_list {
    column-count: 3;
}
}




@media screen and (max-width: 720px) {
.reg_list {
    column-count: 2;
}
}


@media screen and (max-width: 425px) {
.reg_list {
    column-count: 1;
}
}

.bottom-h1 {
    font-size: 33px;
    font-weight: normal;
    width: max-content;
    margin: 0.83em auto;
    color: var(--main-dark);
}

.product-description.specifications p,
.product-description.specifications div {
    font-size: 14px;
    color: #00769d;
    margin-bottom: 10px;
    margin-top: 0;
}










/* header {
        position: relative;
        margin-top: 0 !important;
} */
.b-page_newyear {
    width: 100%;
    overflow: hidden;
}

.b-page__content{min-height:150px}
.b-head-decor{display:none}
.b-page_newyear .b-head-decor{
   position:absolute;
   top:0;
   left:0;
   display:block;
   height:115px;
   width:100%;
   overflow:hidden;
   background:url(http://media1.webproject.group/ny/b-head-decor_newyear.png) repeat-x 0 0
}
.b-page_newyear .b-head-decor__inner{position:absolute;top:0;left:0;height:115px;display:block;width:373px}
.b-page_newyear .b-head-decor::before{content:'';display:block;position:absolute;top:-115px;left:0;z-index:3;height:115px;display:block;width:100%;}
.b-page_newyear .b-head-decor__inner_n2{left:373px}
.b-page_newyear .b-head-decor__inner_n3{left:746px}
.b-page_newyear .b-head-decor__inner_n4{left:1119px}
.b-page_newyear .b-head-decor__inner_n5{left:1492px}
.b-page_newyear .b-head-decor__inner_n6{left:1865px}
.b-page_newyear .b-head-decor__inner_n7{left:2238px}

.b-ball{position:absolute}
.b-ball_n1{top:0;left:3px;width:59px;height:83px}
.b-ball_n2{top:-19px;left:51px;width:55px;height:70px}
.b-ball_n3{top:9px;left:88px;width:49px;height:67px}
.b-ball_n4{top:0;left:133px;width:57px;height:102px}
.b-ball_n5{top:0;left:166px;width:49px;height:57px}
.b-ball_n6{top:6px;left:200px;width:54px;height:70px}
.b-ball_n7{top:0;left:240px;width:56px;height:67px}
.b-ball_n8{top:0;left:283px;width:54px;height:53px}
.b-ball_n9{top:10px;left:321px;width:49px;height:66px}
.b-ball_n1 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n1.png) no-repeat}
.b-ball_n2 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n2.png) no-repeat}
.b-ball_n3 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n3.png) no-repeat}
.b-ball_n4 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n4.png) no-repeat}
.b-ball_n5 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n5.png) no-repeat}
.b-ball_n6 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n6.png) no-repeat}
.b-ball_n7 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n7.png) no-repeat}
.b-ball_n8 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n8.png) no-repeat}
.b-ball_n9 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_n9.png) no-repeat}
.b-ball_i1 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i1.png) no-repeat}
.b-ball_i2 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i2.png) no-repeat}
.b-ball_i3 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i3.png) no-repeat}
.b-ball_i4 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i4.png) no-repeat}
.b-ball_i5 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i5.png) no-repeat}
.b-ball_i6 .b-ball__i{background:url(http://media1.webproject.group/ny/b-ball_i6.png) no-repeat}
.b-ball_i1{top:0;left:0;width:25px;height:71px}
.b-ball_i2{top:0;left:25px;width:61px;height:27px}
.b-ball_i3{top:0;left:176px;width:29px;height:31px}
.b-ball_i4{top:0;left:205px;width:50px;height:51px}
.b-ball_i5{top:0;left:289px;width:78px;height:28px}
.b-ball_i6{top:0;left:367px;width:6px;height:69px}
.b-ball__i{
position:absolute;
width:100%;
height:100%;
-webkit-transform-origin:50% 0;
-moz-transform-origin:50% 0;
-o-transform-origin:50% 0;
transform-origin:50% 0;
-webkit-transition:all .3s ease-in-out;
-moz-transition:all .3s ease-in-out;
-o-transition:all .3s ease-in-out;
transition:all .3s ease-in-out;
pointer-events:none
}
.b-ball_bounce .b-ball__right{position:absolute;top:0;right:0;left:50%;bottom:0;z-index:9}
.b-ball_bounce:hover .b-ball__right{display:none}
.b-ball_bounce .b-ball__right:hover{left:0;display:block!important}
.b-ball_bounce.bounce>.b-ball__i{-webkit-transform:rotate(-9deg);-moz-transform:rotate(-9deg);-o-transform:rotate(-9deg);transform:rotate(-9deg)}
.b-ball_bounce .b-ball__right.bounce+.b-ball__i{-webkit-transform:rotate(9deg);-moz-transform:rotate(9deg);-o-transform:rotate(9deg);transform:rotate(9deg)}
.b-ball_bounce.bounce1>.b-ball__i{-webkit-transform:rotate(6deg);-moz-transform:rotate(6deg);-o-transform:rotate(6deg);transform:rotate(6deg)}
.b-ball_bounce .b-ball__right.bounce1+.b-ball__i{-webkit-transform:rotate(-6deg);-moz-transform:rotate(-6deg);-o-transform:rotate(-6deg);transform:rotate(-6deg)}
.b-ball_bounce.bounce2>.b-ball__i{-webkit-transform:rotate(-3deg);-moz-transform:rotate(-3deg);-o-transform:rotate(-3deg);transform:rotate(-3deg)}
.b-ball_bounce .b-ball__right.bounce2+.b-ball__i{-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg);transform:rotate(3deg)}
.b-ball_bounce.bounce3>.b-ball__i{-webkit-transform:rotate(1.5deg);-moz-transform:rotate(1.5deg);-o-transform:rotate(1.5deg);transform:rotate(1.5deg)}
.b-ball_bounce .b-ball__right.bounce3+.b-ball__i{-webkit-transform:rotate(-1.5deg);-moz-transform:rotate(-1.5deg);-o-transform:rotate(-1.5deg);transform:rotate(-1.5deg)}


















