:root {
  --section-padding: 48px;
  --section-max-width: 1628px;
  --section-max-width-with-padding: calc(var(--section-max-width) + var(--section-padding) *2);
  --transition-cond: .3s ease;
  --transition-cond-2: .6s ease;
  --color-accent: #DC0000;
  --color-warning: #E39600;
  --color-success: #008322;
  --header-height: 64px;
  --bx-header-height: 147px;
  --bx-folded-header-height: 39px;
  --fade-wrapper-bg: rgba(158, 158, 158, 0.7);
  --border-thin-black: .5px solid #00000080;
  --btn-silver-bg: radial-gradient(white, silver);
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-overflow-style: none; /* IE и Edge */
  scrollbar-width: none; /* Firefox */
  overflow: -moz-scrollbars-none;
}

html::-webkit-scrollbar { display: none; width: 0; }

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder,
textarea::placeholder {
  color: #000;
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: transparent;
}

button,
input {
  overflow: visible;
}

input._no-valid {
  border-bottom: 1px solid #e9693d !important;
}

button,
select {
  text-transform: none;
}

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;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

._hidden,
[hidden] {
  display: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: scrollbar;
  background-color: #ffffff;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  font-family: Mulish, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /*background-color: #ccc;*/
}

main{
  flex: 1;
}

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

a:hover {
  text-decoration: underline;
}

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

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

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

/*._flex_middle {
	display: flex;
	align-items: center;
}*/
._flex_end {
  display: flex;
  justify-content: flex-end;
}

._flex_space-between-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

._flex_space-between-start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

._flex_space-between-stretch {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

._flex_space-between-end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

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

._flex_space-end-center {
  display: flex;
  justify-content: end;
  align-items: center;
}

._flex_space-end-stretch {
  display: flex;
  justify-content: end;
  align-items: stretch;
}

._flex_flex-end-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

._flex_start-end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

._flex_start-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

._flex_start-stretch {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}

._flex_center-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

._flex_center-start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

._flex_wrap {
  flex-wrap: wrap;
}

.separator {
  display: block;
  height: 18px;
  width: 1px;
  background: rgba(0, 0, 0, .2);
}

._logo {
  display: block;
  width: 140px;
  height: 20px;
  background: url(/local/templates/an/img/icons/logo2.svg) center center no-repeat;
  background-size: contain;
}

._phone {
  font-weight: bold;
}

/* ._home main {
	padding-top: 130px;
}
._home header._min + main {
	padding-top: 60px;
}
@media (max-width: 1680px) {
	._home main {
		padding-top: 100px;
	}
} */
.container {
  max-width: calc(100% - 80px);
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .container {
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 720px) {
  .container {
    max-width: calc(100% - 36px);
  }
}

.btn {
  width: 166px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 3px;
  cursor: pointer;
  color: inherit;
}

.btn._round {
  border-radius: 34px;
}

.btn._icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.btn._icon svg {
  width: 24px;
  height: 24px;
}

.btn._orange {
  color: #e9693d;
  border: 1px solid #e9693d;
}

.btn._silver,
.btn._black {
  background-color: #000;
  color: #fff;
  height: auto;
  width: auto;
  margin: 0;
  border: none;
  padding: 15px 24px;
  letter-spacing: 0em;
  transition: var(--transition-cond);
}

.btn._silver,
.btn._silver._loading {
  position: relative;
  background: var(--btn-silver-bg);
  color: #000;
}

.btn._silver._loading {
	color: transparent;
  pointer-events: none;
}

.btn._silver._loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
	background-image: url(/local/templates/an/img/icons/loading_onLight_v2.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 8px;
}

.btn._animated {
  transition: var(--transition-cond);
}

.btn._outline {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  max-width: 300px;
  letter-spacing: 0em;
}

.btn._trsnp {
  background: transparent;
  max-width: 300px;
  height: auto;
  width: auto;
  margin: 0;
  border-width: 1px;
  padding: 7px 24px;
  letter-spacing: 0em;
}

.__custom-scroll {
  overflow-y: auto;
  padding-right: 2px;
}

.__custom-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

.__custom-scroll::-webkit-scrollbar {
  width: 4px;
  border-color: transparent;
  background: transparent;
  margin-right: -4px;
}

.styled-checkbox {
  display: none;
}

.styled-checkbox+label {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  margin: 0;
}

.styled-checkbox+label::before,
.styled-checkbox+label::after {
  content: '';
  cursor: pointer;
  position: absolute;
}

.styled-checkbox+label::before {
  border: 1px solid #000;
  background-color: #fff;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

.styled-checkbox+label::after {
  background-color: #e9693d;
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  opacity: 0;
  transition: opacity 0.18s ease-in-out;
}

.styled-checkbox:checked+label::after {
  opacity: 1;
}

.btn._loading,
._loading {
	transition: none!important;
	width: 100%;
	background-image: url(/local/templates/an/img/icons/loading_onLight_v2.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: auto 8px;
	color: transparent;
  pointer-events: none;
}

.btn._icon._loading svg {
  opacity: 0;
  visibility: hidden;
}

.btn._black._loading {
  background-image: url(/local/templates/an/img/icons/loading_onDark_v2.svg);
}

.btn._trsnp._hover-black._loading {
  background-color: #000;
  border-color: #000;
  background-image: url(/local/templates/an/img/icons/loading_onDark_v2.svg);
}

.btn._loading.t2,
._loading.t2 {
  background-size: contain;
}

._loading.t3 {
  background-image: url(/local/templates/an/img/icons/loading_3.svg);
  background-position: center center;
  background-size: contain;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

._rotate {
  animation: 1s linear 0s normal none infinite running rotate;
  -webkit-animation: 1s linear 0s normal none infinite running rotate;
}

.home-slider .slick-list,
.home-slider_item {
  height: auto !important;
}

/* Loader */
main.load {
  position: relative;
}

main.load .catalog-filter__list {
  pointer-events: none;
  opacity: 0.8;
}

main.load .catalog-list {
  pointer-events: none;
  opacity: 0.4;
}

main.load .lds-spinner__overlay {
  display: grid;
}

.lds-spinner__overlay {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  place-items: center;
  background: var(--fade-wrapper-bg);
  z-index: 2147483001;
}

.lds-spinner__wrap {
  display: flex;
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lds-spinner__text {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
}

.lds-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #000;
}

.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

._below-fixed-banner {
  background: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 42px;
}

.products-item_img-sizes {
  z-index: 100;
}

main .scrollbar-track {
  background-color: transparent;
}

main .scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (min-width: 641px) {
  ._on-mobile {
    display: none !important;
  }
}

@media (min-width: 991px) {
  ._on-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  ._no-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  div#carrotquest-messenger-collapsed-container {
    margin: 0 !important;
  }

  .btn._outline,
  .btn._trsnp,
  .btn._silver,
  .btn._black {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  ._below-fixed-banner {
    padding-bottom: 24px;
  }
  .btn {
    line-height: 16px;
    font-weight: 300;
  }
}

@media screen and (max-width: 414px) {
  div#carrotquest-messenger-collapsed {
    padding-bottom: 6px !important;
  }
}

@media (max-width: 640px) {
  ._no-mobile {
    display: none !important;
  }
}

@media (hover:hover) {
  .btn._black:hover {
    color: rgba(255, 255, 255, .5);
  }

  .btn._silver:hover {
    color: rgba(0, 0, 0, .5);
  }

  .btn._trsnp:hover {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .5);
  }

  .btn._trsnp._loading:hover {
    border-color: #000;
  }

  .btn._icon._loading:hover svg {
    opacity: 0;
    visibility: hidden;
  }

  .btn._trsnp._hover-black:hover {
    color: #fff;
    border-color: #000;
    background-color: #000;
  }

  .btn._trsnp._hover-black:active {
    color: #fff;
    border-color: rgb(191 191 191);
    background-color: rgb(191 191 191);
  }
  
  .btn._trsnp._hover-black._loading:hover,
  .btn._trsnp._hover-black._loading:active {
    border-color: #000;
    background-color: #000;
  }

  .btn._outline:hover {
    opacity: 0.5;
  }

  .btn._black:active {
    background-color: rgba(0, 0, 0, .25);
    color: #fff;
  }

  .btn._silver:active {
    color: #000;
  }

  .btn._trsnp:active {
    color: rgba(0, 0, 0, .5);
    border-color: #F9F9F9;
    background-color: #F9F9F9;
  }

  .btn._outline:active {
    filter: drop-shadow(0.5px 0.5px 0 #00000083);
  }

  .btn._loading:hover,
  .btn._black._loading:hover,
  .btn._silver._loading:hover,
  .btn._trsnp._loading:hover,
  .btn._outline._loading:hover,
  .btn._loading:active,
  .btn._black._loading:active,
  .btn._silver._loading:active,
  .btn._trsnp._loading:active,
  .btn._outline._loading:active,
  .btn._trsnp._hover-black._loading:hover,
  .btn._trsnp._hover-black._loading:active {
    color: transparent;
    pointer-events: none;
  }
}



.auth_inner .popup_title-text {
  font-family: Mulish, sans-serif;

}

.auth_inner .lk-user-selector-type {
  text-transform: none;
	font-size: 16px;
}


.auth_inner .user-form-input,
.auth_inner .user-form-input::placeholder,
.auth_inner div[data-target="UserRestorePassword"],
.auth_inner div[data-target="UserRegistration"], 
.auth_inner .btn._black,
.auth_inner .social__item > div {
  text-transform: none !important;
	font-size: 16px !important;
}

.auth_inner .user-register_text {
  text-transform: none;
	font-size: 16px;
}

.auth_inner .user-register_text::first-line {
  color: red;
  text-transform: capitalize;
}


.page-404 h1,
.page-404 p,
.page-404 .page-404_btn span {
  font-family: Mulish, sans-serif  !important;
  text-transform: none !important;
}

.user_agreements label.checkbox {
  text-transform: initial !important;
	font-size: 16px;
}

.user-register_text div[data-target="UserLogin"] {
  text-transform: initial !important;
	font-size: 16px;
}

.auth_inner .popup_title {
  text-transform: initial !important;
	font-size: 16px;
}

.auth_inner input,
.auth_inner input::placeholder {
  text-transform: initial !important;
	font-size: 16px;
}


.order-final__wrapper * {
  font-family: Mulish, sans-serif  !important;
  text-transform: none !important;
}

.order-final__wrapper h1 {
  font-weight: 300;
}


#catalogListWrapper .search-result__title {
  font-family: Mulish, sans-serif  !important;
}


#catalogListWrapper .search-result__text,
#catalogListWrapper .catalog__search_action-input,
#catalogListWrapper .catalog__search_action-input::placeholder {
  text-transform: initial !important;
	font-size: 16px;
}