/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/materialicons/v121/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2)
    format("woff2");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

.container {
  margin: 0 auto;
  padding: 0 10px;
}

.row {
  margin: 0 -10px;
}

.flex,
.flex-column,
.flex-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  flex-direction: column;
}

.flex,
.flex-column,
.flex-inline,
.flex-wrap {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  flex: 0 1 auto;
}

[class*="col-lg-"],
[class*="col-sm-"],
[class*="col-xl-"],
[class*="col-xs-"] {
  -webkit-box-flex: 0;
  -moz-box-flex: 0;
  flex: 0 0 auto;
  padding: 0 10px;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-12 {
  width: 100%;
}

.center-xs {
  justify-content: center;
}

.right-xs {
  justify-content: flex-end;
}

.top-xs {
  -webkit-box-align: start;
  -moz-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
}


/*========= for search modal window ============*/
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: -1px;
  right: -1px;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9;
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: #e9e9e9 !important;
}

/*for backdrop*/
.quick-search-backdrop.open {
 display:block;
}

.quick-search-backdrop.opened {
 background-color:rgba(0,0,0,.15)
}

.quick-search-backdrop {
 display:none;
 position:fixed;
 top:0;
 left:0;
 width:100%;
 height:100%;
 background-color:rgba(0,0,0,0);
 z-index:100;
 -webkit-transition:background-color .15s;
 transition:background-color .15s
}
/*======================*/


@media (min-width: 500px) {
  .col-sm-3 {
    width: 25%;
  }

  .col-sm-9 {
    width: 75%;
  }
}

@media (min-width: 800px) {
  .col-lg-3 {
    width: 25%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .hidden-lg {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .col-xl-2 {
    width: 16.66666667%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-5 {
    width: 41.66666667%;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .middle-xl {
    -webkit-box-align: center;
    -moz-box-align: center;
    align-items: center;
  }
}

* {
  border: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  scrollbar-color: #cacaca transparent;
  scrollbar-width: thin;
  vertical-align: baseline;
  word-break: break-word;
}

:focus {
  outline: none;
}

:after,
:before {
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

::-webkit-input-placeholder {
  color: #555;
  opacity: 0.5;
}

::-moz-placeholder {
  color: #555;
  opacity: 0.5;
}

:-ms-input-placeholder {
  color: #555;
  opacity: 0.5;
}

html {
  min-width: 320px;
  overflow-x: hidden;
}

body {
  /*background-color: #f8f8f8;*/
  color: #222;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  -webkit-text-size-adjust: 100%;
}

body ::-webkit-scrollbar {
  width: 7.5px;
}

body ::-webkit-scrollbar-track {
  background-color: transparent;
}

body ::-webkit-scrollbar-thumb {
  background-color: #cacaca;
}

body ::-webkit-scrollbar-thumb:window-inactive {
  background-color: #dae0e4;
}

@media (max-width: 1026px) {
  body ::-webkit-scrollbar {
    width: 2.5px;
  }
}

@media (max-width: 640px) {
  body ::-webkit-scrollbar {
    width: auto;
  }
}

body,
html {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 100% высоты окна */
  height: 100%;
  position: relative;
  scrollbar-color: auto;
  scrollbar-width: auto;
}

ul {
  list-style: none;
}

b {
  font-weight: 600;
}

input:invalid {
  box-shadow: none;
}

button {
  background: transparent;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button::-moz-focus-inner {
  border: 0;
}

button:active,
button:focus {
  outline: none;
}

.main-content {
  flex: 1 0 auto; /* растягивается, занимает доступное пространство */
}

.link,
a {
  color: #3d7ee5;
  cursor: pointer;
  fill: #3d7ee5;
  text-decoration: none;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

a.link--gray {
  color: #888;
}

.link:hover,
a:hover {
  color: #1752af;
  fill: #1752af;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg {
  pointer-events: none;
}

.svg-icon {
  height: 21px;
  width: 23px;
}

.container {
  max-width: 1280px;
  width: 100% !important;
  /*background-color: undefined;*/
}

.text-sm {
  font-size: 13px;
}

.text-md {
  font-size: 16px;
}

.text-lg {
  font-size: 18px;
}

h1 {
  font-size: 28px;
}

@media (max-width: 501px) {
  h1 {
    font-size: 24px;
  }
}

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

.m_b-15 {
  margin-bottom: 15px;
}

.icon {
  color: #90a4ae;
  font-size: 21px;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  vertical-align: middle;
}

.icon,
.icon:after {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: inline-flex;
  font-style: normal;
  font-weight: 400;
}

.icon:after {
  color: inherit;
  font-family: "Material Icons";
  font-size: 24.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: inherit;
  text-rendering: auto;
}

.icon--arrow-down:after {
  content: "";
}

.icon--search:after {
  content: "";
}

.li-default li::marker,
.li-disc li::marker,
.li-numbered li::marker,
.li-scroll li::marker,
.li-square li::marker {
  color: #90a4ae;
}

.li-square li::marker {
  color: #7cb342;
}

.content {
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.05),
    0 1px 4px 0 rgba(51, 51, 51, 0.15);
  margin-bottom: 15px;
  padding: 10px;
}

.autosuggest {
  position: relative;
}

.autosuggest [role="combobox"],
.autosuggest input {
  height: 100%;
  width: 100%;
}

.autosuggest__results-container {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(51, 51, 51, 0.25);
  position: absolute;
  width: 100%;
  z-index: 11;
}

.default-layout__breadcrumbs {
  height: 34px;
}

.default-layout__footer {
  margin-top: auto;
}

.header {
  background-color: #1c3843;
  flex-shrink: 0;
}

.header {
  height: 60px;
}

.header__item {
  flex-shrink: 0;
}

.header__item--logo {
  margin-right: 40px;
  max-width: 150px;
  width: 100%;
}

@media (max-width: 801px) {
  .header__item--logo {
    margin-right: 20px;
  }
}

@media (max-width: 640px) {
  .header__item--logo {
    margin-right: 10px;
  }
}

.header__item--logo img {
  height: 100%;
  width: 100%;
}

.header__item--location {
  margin: 3px 40px 0 0;
}

@media (max-width: 501px) {
  .header__item--location {
    margin: 0 0 0 auto;
  }
}

.location {
  color: #8eb4f0;
  cursor: pointer;
}

.location__city,
.location__icon {
  color: inherit;
}

.location__city {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 801px) {
  .location__city {
    max-width: 100px;
  }
}

@media (max-width: 501px) {
  .parent-header .location__city {
    display: none;
  }
}

@media (max-width: 640px) {
  .parent-header {
    display: none;
  }
}

@media (max-width: 640px) {
  .parent-header {
    padding: 5px;
  }
}

@media (max-width: 801px) {
  .parent-header .user-button__image {
    margin-right: 0;
  }

  .parent-header .user-button__name {
    display: none;
  }
}

.popover {
  position: relative;
}

@media (max-width: 801px) {
  .parent-header {
    margin-bottom: 0;
  }

  .parent-header {
    display: none;
  }
}

.header-bar__overlay {
  box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.05),
    0 1px 4px 0 rgba(51, 51, 51, 0.15);
}

@media (max-width: 801px) {
  .header-bar__overlay {
    flex-wrap: wrap;
  }
}

.header-bar__button-menu {
  flex-shrink: 0;
  width: 300px;
}

@media (max-width: 801px) {
  .header-bar__button-menu {
    width: 100%;
  }
}

.header-bar__search {
  width: 100%;
}

.button-menu-main {
  background-color: #c37f9f;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 0 2px 0 rgba(51, 51, 51, 0.05),
    0 1px 4px 0 rgba(51, 51, 51, 0.15);
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  font-size: 18px;
  justify-content: space-between;
  line-height: 48px;
  padding: 0 10px 0 15px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .button-menu-main {
    border-radius: 2px 2px 0 0;
  }
}

.button-menu-main__icon {
  color: #fff;
  font-size: 28px;
}

.search {
  background-color: #fff;
  border: 1px solid #6e9fec;
  position: relative;
  z-index:1000;
}

.search__autosuggest {
  height: 48px;
  position: static;
  width: 100%;
}

.search__autosuggest input {
  font-size: 16px;
  overflow: hidden;
  padding: 0 10px;
  text-overflow: ellipsis;
}

.search__autosuggest .autosuggest__results-container {
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.search__btn {
  background-color: #c37f9f;
  border-radius: 0 2px 2px 0;
  color: #fff;
  flex-shrink: 0;
  font-size: 33px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 48px;
}

.search__btn :hover {
  box-shadow: 0 2px 8px 0 rgba(51, 51, 51, 0.25);
}

@media (max-width: 801px) {
  .search__btn :hover {
    box-shadow: none;
  }
}

@media (max-width: 801px) {
  .search__btn {
    background-color: transparent;
    color: #6e9fec;
  }
}

.breadcrumbs {
  position: relative;
  width: 100%;
}

.breadcrumbs__container {
  height: 32px;
  overflow: hidden;
}

.breadcrumbs__list {
  -webkit-box-align: start;
  -moz-box-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  height: 45px;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.breadcrumbs__list :after {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, hsla(0, 0%, 100%, 0)),
    color-stop(30%, hsla(0, 0%, 100%, 0.35)),
    color-stop(85%, #f8f8f8)
  );
  background: linear-gradient(
    90deg,
    hsla(0, 0%, 100%, 0),
    hsla(0, 0%, 100%, 0.35) 30%,
    #f8f8f8 85%
  );
  bottom: 0;
  content: "";
  height: 100%;
  /*!position: absolute;!*/
  right: 0;
  top: 0;
  width: 30px;
}

.breadcrumbs__item {
  -webkit-box-align: center;
  -moz-box-align: center;
  align-items: center;
  color: #222;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  font-size: 13px;
  margin-top: 1px;
}

.breadcrumbs__item :after {
  content: "/";
  font-size: 13px;
  margin-bottom: 1px;
  padding: 0 10px 0 13px;
}

.breadcrumbs__item :last-child {
  cursor: default;
  opacity: 0.5;
  padding-right: 10px;
  pointer-events: none;
}

.breadcrumbs__item :last-child :after {
  display: none;
}

.breadcrumbs__link {
  color: #222;
  display: inline-block;
  padding-top: 1px;
  position: relative;
}

.breadcrumbs__link :before {
  content: "";
  height: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
}

.breadcrumbs__link :hover {
  color: inherit;
}

.main-block {
  border-bottom: 1px solid #e9e9e9;
  margin-bottom: 0;
}

.title {
  line-height: 1.4;
  margin-bottom: 5px;
}

.title__main {
  display: inline;
  font-size: 24px;
  margin-right: 10px;
}

@media (max-width: 640px) {
  .title__main {
    font-size: 18px;
  }
}

.line {
  margin-bottom: 10px;
}

.cropper-button,
.cropper-text {
  white-space: nowrap;
}

.cropper-button {
  color: #888;
  cursor: pointer;
}

.cropper-button .icon {
  line-height: 14px;
}

.mb-row {
  margin-bottom: 6px;
}

@media (max-width: 1026px) {
  .mb-row {
    margin-bottom: 8px;
  }
}

.list__item {
  border-bottom: 1px solid #cccccc;
  padding: 20px 0;
  position: relative;
}

.shop__title {
  width: 100%;
}

@media (max-width: 1026px) {
  .shop__logo {
    justify-content: flex-start;
    margin-bottom: 5px;
  }
}

.shop__logo img {
  /* height: auto; */
  max-width: 100px;
  /* width: 100%; */
}

.info__desc {
  color: #222;
  font-style: italic;
  line-height: 1.3;
  overflow: hidden;
}

.info__desc:hover {
  color: #1752af;
}

.info__payment-item:before {
  color: #90a4ae;
  content: "•";
  font-size: 15px;
  line-height: 1;
  margin-right: 3px;
}

.content {
  padding: 0 15px;
}

@media (max-width: 1026px) {
  .content {
    padding: 0 10px;
  }
}

.footer {
  background: #1c3843;
  padding: 25px 0 20px;
  flex-shrink: 0;
}

.footer__main {
  margin-bottom: 20px;
}

.footer__logo {
  flex-shrink: 0;
  margin-right: 20px;
  width: 100px;
}

.footer__copyright {
  color: #fff;
}

@media (max-width: 801px) {
  .footer__copyright {
    margin-top: 15px;
  }
}

.title_name {
  font-weight: bold;
}
