@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Oswald&family=Roboto:wght@300;400;500;700&display=swap');

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  outline: none !important;
}

html, body {
  height: 100%;
  scrollbar-color: #006AC5 #F8F8F8;
  scrollbar-width: auto;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: black;
  line-height: 1;
  outline: none !important;
  display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

button, input {
  font-family: inherit;
  outline: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

a {
  text-decoration: none;
  color: inherit;
}

a, button {
  cursor: pointer;
}

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

h1, h2, h3, h4, p, figure {
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.lazy {
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.lazy.loaded {
  opacity: 1;
}

.no-scroll {
  overflow: hidden !important;
  height: 100%;
}

.d-b {
  display: block !important;
}

/* ?ОБЩИЕ КЛАССЫ */
.h-0 {
  max-height: 0;
  clear: both;
}
.m0 {
  margin: 0 !important;
}
/* *margin-top */
.mt-5 {
  margin-top: 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
/* *margin-bottom */
.mb-5 {
  margin-bottom: 5px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px !important;
}
/* *margin-left */
.ml-20 {
  margin-left: 20px;
}
/* *margin-right */
.mr-20 {
  margin-right: 20px;
}
/* *width-100% */
.w100 {
  width: 100%;
}
/* *display: flex */ 
.d-f {
  display: -webkit-box; 
  display: -moz-box;     
  display: -ms-flexbox; 
  display: -webkit-flex;  
  display: flex;
}
.fd-c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;    
  flex-direction: column;
}
.jc-sb {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.jc-sa {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.jc-fe {
  justify-content: flex-end;
}
.ai-c {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.ai-end {
  -webkit-box-align: flex-end;
  -moz-box-align: flex-end;
  -ms-flex-align: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.fw-w {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.as-c {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
/* *ОБЩИЕ КЛАССЫ КНОПОК */
/* ?кнопка добавления в корзину */
.to-basket__button,
.arrange__button,
.arrange-order__button {
  width: 100%;
  border: none;
  border-radius: 2px;
  background-color: #006AC5;
  padding: 12px 0;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
}

.to-basket__button.disabled {
  opacity: 0.7;
}

.to-basket-checked {
  background-color: #008AC0;
}
/* ?кнопка сравнения */
.compare__button {
  width: 45%;
  border: none;
  border-radius: 2px;
  background-color: #F3F9FC;
  padding: 12px 0;
  text-align: center;
  color: #006AC5;
  font-weight: 700;
  line-height: 19px;
}
.product-compare__button {
  padding: 10px 43px 10px 26px;
  max-width: 150px;
  width: 100%;
  border: 2px solid #006AC5;
  background-color: #FFFFFF;
  background-image: url();
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: 110px;
  position: relative;
}

.product-compare__button::before {
  content: url('/images/product-compare.svg');
  display: block;
  position: absolute;
  top: 10px;
  right: 15px;
}
/* ?переключатель */
.switch-button-block {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  width: 90px;
  max-width: 90px;
  height: 45px;
  font-size: 16px;
  line-height: 21px;
  color: #3B455C;
  background-color: #FFFFFF;
  font-weight: bold;
}
/* *кнопка-минус */
.switch-minus-button,
/* *кнопка-плюс */
.switch-plus-button {
  border: none;
  width: 40px;
  background-color: #F0F9FF;
  padding: 0;
}
/* *числовой блок */
.switch-number {
  text-align: center;
  border-right: 1px solid #DDDDDD;
  border-left: 1px solid #DDDDDD;
  padding: 11px;
}
.switch-button__height {
  height: 25px;
  margin-left: 35px;
}
.switch-button__height .switch-number {
  padding: 0;
}
.switch-number input[type="number"] {
  width: 38px;
  height: 24px;
  background-color: transparent;
  border: none;
  text-align: center;
  cursor: pointer;
  /* -moz-appearance: textfield; */
  cursor: text;
}

.switch-number input[type="number"]::-webkit-outer-spin-button,
.switch-number input[type="number"]::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

/* !обращение с кнопкам по id */
button[id="backCatalogBtn"] {
  max-width: 190px;
}
button[id="checkoutBtn"] {
  max-width: 215px;
}
button[id="tabletMenuBtn"] {
  background-color: #003B6D;
  background-image: url('/images/reboot/burger.svg');
  background-size: 27px 29px;
  background-position-y: 6px;
  padding: 0;
}
/* !таблет-кнопки */
.tablet-block__button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 2px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}


/* !ХОВЕРЫ */

.hover-link,
.hover-background-link,
.aside-first-animation,
.catalog-animation,
.categories-animation,
.buy-button-animation,
.buy-button-animation-reverse,
.comparison-button-animation-reverse,
.comparison-button-animation,
.basket-animation,
.slider-item-animation,
.news-item-animation,
.product-navigation-list__catalog,
.bread-crumbs span a,
.categories-main-list .categories-main-list__item,
.header-link-hover {
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.hover-link,
.bread-crumbs span a {
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
}

.bread-crumbs span a:hover,
.hover-link:hover {
  color: #FF8620;
}

.buy-button-animation,
.buy-button-animation-reverse,
.comparison-button-animation,
.product-navigation-list__catalog {
  -webkit-transition-property: background-color;
  -o-transition-property: background-color;
  transition-property: background-color;
}

.hover-background-link,
.comparison-button-animation,
.header-link-hover {
  -webkit-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
}

.buy-button-animation:hover,
.comparison-button-animation-reverse:hover,
.product-navigation-list__catalog:hover  {
  background-color: #004E90;
  color: #FFFFFF;
}

.buy-button-animation-reverse:hover {
  background-color: #FF8620;
}

.hover-background-link:hover {
  background: -webkit-linear-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important;
  background: -webkit-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important;
  background: -moz-linear-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important;
  background: -o-linear-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important;
  /* background: -ms-linear-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important; */
  background: linear-gradient(177.05deg, #FF8620 1.61%, #FF8620 112.21%) !important;
}

.comparison-button-animation:hover{
  background: -webkit-linear-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important;
  background: -webkit-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important;
  background: -moz-linear-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important;
  background: -o-linear-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important;
  /* background: -ms-linear-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important; */
  background: linear-gradient(177.05deg, #F3F9FC 1.61%, #D6EEFA 112.21%) !important;
}

.aside-first-animation {
  display: block;
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  transition-property: background-color, color;
}

.aside-first-animation:hover {
  background-color: #006AC5;
  color: white;
}

.aside-first-animation:hover::before {
  background-color: inherit;
} 

.catalog-animation,
.comparison-button-animation-reverse {
  -webkit-transition-property: background-color, color;
  -o-transition-property: background-color, color;
  transition-property: background-color, color;
}

.catalog-animation:hover {
  color: #FF8620;
}

.categories-animation {
  -webkit-transition-property: background-color, border-color, color;
  -o-transition-property: background-color, border-color, color;
  transition-property: background-color, border-color, color;
}

.categories-animation:hover {
  background-color: #FFD3A5;
  border-color: #FFD3A5;
  color: #EE7D1D;
}

.basket-animation {
  -webkit-transition-property: background-color, background;
  -o-transition-property: background-color, background;
  transition-property: background-color, background;
}

/* *ховер для иконки корзины */
/* .basket-animation:hover .product-navigation-list__basket-block-left {
  background: #FFFFFF;
} */
/* 
.basket-animation:hover .product-navigation-list__basket-block-left::before {
  background: url('/images/reboot/orange-basket.svg') no-repeat;
} */

.slider-item-animation,
.news-item-animation,
.categories-main-list .categories-main-list__item {
  -webkit-transition-property: box-shadow;
  -o-transition-property: box-shadow;
  transition-property: box-shadow;
}

.slider-item-animation:hover {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(221,221,221,1);
  -moz-box-shadow: 0px 0px 5px 0px rgba(221,221,221,1);
  box-shadow: 0 0 5px 0px #ddd;
}

.news-item-animation:hover {
  -webkit-box-shadow: 0px 0px 20px 1px rgba(221,221,221,1);
  -moz-box-shadow: 0px 0px 20px 1px rgba(221,221,221,1);
  box-shadow: 0 0 20px 1px #ddd;
}

.categories-main-list .categories-main-list__item:hover {
  -webkit-box-shadow: 0px 0px 10px 0px rgba(43, 51, 54, 0.25);
  -moz-box-shadow: 0px 0px 10px 0px rgba(43, 51, 54, 0.25);
  box-shadow: 0px 0px 10px 0px rgba(43, 51, 54, 0.25);
}


/* ?пагинация */
.catigories-pagination-list .pages {
  padding: 0;
  min-width: 300px;
}

.pages .showAll,
.pages .prevAll,
.pages .nextAll,
.pages .prev,
.pages > div a:nth-child(8),
.pages > div a:nth-child(9),
.pages > div a:nth-child(10) {
  display: none;
}

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

.pages > div .next,
.pages > div b,
.pages > div a {
  display: block;
  border: 1px solid #DDDDDD;
  padding: 8px 10px;
  margin-left: 10px;
}

.pages > div b {
  background-color: #006AC5;
  color: #FFFFFF;
}

.categories-filter-block-bottom .pages > div {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 30px;
}

.categories-filter-block-bottom .pages .showAll,
.categories-filter-block-bottom .pages .prev {
  display: block;
  border: 1px solid #DDDDDD;
  padding: 8px 10px;
  margin-left: 10px;
}

.categories-filter-block-bottom .pages .showAll {
  margin-left: 0;
  margin-right: auto;
  height: 100%;
}

.header-link-hover:before {
  content: '';
  position: absolute;
  width: 100%;
  opacity: 0;
  height: 50px;
  transition: all .4s ease;
  background: linear-gradient(180deg, #F8F8F8 -35%, #E9F6FF 100%);
}

.header-link-hover:hover::before {
  opacity: 1;
}

.header-link-hover:hover .product-navigation-list__link {
  color: #004178;
}

li.categories-main-list__item.grey__card {
  filter: opacity(0.5) grayscale(1) blur(0.5px);
}

.description__text a {
  color: #006AC5;
  text-decoration: underline;
}

.sweet-modal-content #forSDEK {
  width: 100%;
  height: 600px;
}