@charset "UTF-8";
/* Offsets */
/* Fonts */
/* Fonts size */
/* Colors */
/* Media Queries */
/* Offsets */
/* Fonts */
/* Fonts size */
/* Colors */
/* Media Queries */
/* -------------------------------------------------------------- */
/* utilize start */
/* Webfont: LatoLatin-Black */
@font-face {
  font-family: 'LatoBlack';
  src: url("assets/fonts/lato/LatoLatin-Black.eot");
  /* IE9 Compat Modes */
  src: url("assets/fonts/lato/LatoLatin-Black.eot?#iefix") format("embedded-opentype"), url("assets/fonts/lato/LatoLatin-Black.woff2") format("woff2"), url("assets/fonts/lato/LatoLatin-Black.woff") format("woff"), url("assets/fonts/lato/LatoLatin-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

@font-face {
  font-family: 'Lato';
  src: url("assets/fonts/lato/LatoLatin-Regular.eot");
  /* IE9 Compat Modes */
  src: url("assets/fonts/lato/LatoLatin-Regular.eot?#iefix") format("embedded-opentype"), url("assets/fonts/lato/LatoLatin-Regular.woff2") format("woff2"), url("assets/fonts/lato/LatoLatin-Regular.woff") format("woff"), url("assets/fonts/lato/LatoLatin-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility; }

.btn {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600; }
  .btn.disabled, .btn[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }

.btn--small {
  height: 36px;
  padding-left: 15px;
  padding-right: 15px; }

.btn--tiny {
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px; }

.btn--medium {
  height: 40px;
  padding-left: 15px;
  padding-right: 15px; }

.btn--conversion {
  background-color: #1fa2cd;
  color: #fff; }
  .btn--conversion:not(:disabled):hover {
    background-color: #62bedc;
    color: #fff; }

.btn--primary {
  background-color: #4ca728;
  color: #fff; }
  .btn--primary:not(:disabled):hover {
    background-color: #81c168;
    color: #fff; }

.btn--secondary {
  background-color: #ee5c23;
  color: #fff; }
  .btn--secondary:not(:disabled):hover {
    background-color: #ee5c23;
    color: #fff; }

.form-input {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px; }
  .form-input::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .form-input:-ms-input-placeholder {
    color: #777; }
  .form-input::-webkit-input-placeholder {
    color: #777; }
  .form-input[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .form-input:focus {
    border-color: #424c58; }
  .form-input:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.form-select {
  display: flex;
  align-items: center;
  height: 50px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  transition: all 300ms ease;
  background-color: #fff; }
  .form-select::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .form-select:-ms-input-placeholder {
    color: #777; }
  .form-select::-webkit-input-placeholder {
    color: #777; }
  .form-select[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .form-select:focus {
    border-color: #424c58; }
  .form-select:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }
  .form-select:invalid {
    color: #777; }
  .form-select option {
    color: #000; }
  .form-select[value=''][disabled] {
    display: none; }

.form-textarea {
  display: flex;
  align-items: center;
  height: 75px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px; }
  .form-textarea::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .form-textarea:-ms-input-placeholder {
    color: #777; }
  .form-textarea::-webkit-input-placeholder {
    color: #777; }
  .form-textarea[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .form-textarea:focus {
    border-color: #424c58; }
  .form-textarea:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.form-checkbox input {
  display: none; }
  .form-checkbox input:checked + label:after {
    opacity: 1;
    visibility: visible; }

.form-checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 35px; }
  .form-checkbox label:before {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border: 1px solid #c1c1c1; }
  .form-checkbox label:after {
    position: absolute;
    left: 8px;
    top: 3px;
    display: block;
    width: 6px;
    height: 13px;
    content: '';
    opacity: 0;
    transition: all 300ms ease;
    visibility: hidden;
    border: solid #ee5c23;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg); }

.form-radio input {
  display: none; }
  .form-radio input:checked + label:after {
    opacity: 1;
    visibility: visible; }

.form-radio label {
  display: inline-block;
  position: relative;
  padding-left: 35px; }
  .form-radio label:before {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    border: 1px solid #c1c1c1;
    border-radius: 50%; }
  .form-radio label:after {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 12px;
    height: 12px;
    content: "";
    transition: all 300ms ease;
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    background-color: red; }

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

html.locked {
  overflow: hidden; }

body {
  margin: 0;
  padding: 0;
  font-family: apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  -ms-font-feature-settings: normal; }
  body.locked {
    overflow: hidden; }
  body.filter-active .content {
    z-index: 6; }
  body.modal-active .modal-window {
    opacity: 1;
    visibility: visible; }
  body.visible-menu .header__responsive-menu-icon--open {
    display: none; }
  body.visible-menu .header__responsive-menu-icon--close {
    display: block; }
  body.visible-menu .menu {
    transform: translateX(0); }

.content {
  position: relative;
  z-index: 1; }

.container {
  max-width: 1270px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto; }

a {
  color: #1fa2cd; }
  a:hover {
    text-decoration: none; }

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0;
  padding: 0; }

img {
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top; }

label {
  cursor: pointer;
  display: block; }

iframe {
  max-width: 100%;
  border: none; }

svg {
  display: block; }

table {
  width: 100%;
  border-collapse: collapse; }

strong {
  font-weight: 600; }

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

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

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

input,
textarea,
select,
button {
  outline: none;
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  font-size: inherit; }

[type=submit],
select,
button {
  cursor: pointer;
  border: none; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; }

abbr {
  cursor: help; }

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative; }
  .icon:before {
    padding-top: 100%;
    display: block;
    content: ""; }
  .icon svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    fill: currentColor; }

.readable {
  display: block !important; }

.articles__list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px; }

.articles__item {
  width: calc(100% / 3 - 30px);
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 30px; }
  .articles__item-image-wrapper {
    height: 150px;
    margin-bottom: 10px;
    text-align: center; }
  .articles__item-title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none; }
    .articles__item-title:hover {
      text-decoration: underline; }
  .articles__item-text {
    line-height: 17px;
    margin-bottom: 10px;
    font-size: 14px; }
  .articles__item-more-wrapper {
    display: flex;
    justify-content: center; }
  .articles__item-more {
    color: #1fa2cd;
    font-size: 14px; }

.box {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.breadcrumb {
  margin-bottom: 9px;
  margin-top: -11px; }
  .breadcrumb__inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
  .breadcrumb__item {
    font-size: 12px; }
  .breadcrumb__current {
    font-size: 12px;
    color: #1fa2cd; }
  .breadcrumb__item {
    font-size: 12px; }
    .breadcrumb__item:hover {
      text-decoration: none; }
  .breadcrumb__divider {
    margin-left: 5px;
    margin-right: 5px; }
    .breadcrumb__divider:before {
      content: ">";
      font-size: 12px;
      color: #1fa2cd; }

.top-product__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 30px 15px 30px;
  text-align: center; }
  .top-product__form:hover .top-product__title {
    color: #ee5c23; }

.top-product__image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-bottom: 26px; }

.top-product__title {
  margin-bottom: 15px;
  line-height: 17px;
  width: 100%;
  overflow: hidden;
  -webkit-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
  color: #000;
  font-size: 14px;
  text-decoration: none; }

.top-product__price {
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 14px; }

.top-product__button {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  background-color: #4ca728;
  color: #fff; }
  .top-product__button.disabled, .top-product__button[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .top-product__button:not(:disabled):hover {
    background-color: #81c168;
    color: #fff; }

.product {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c1c1c1; }
  .product__inner {
    padding: 0 20px 15px 20px;
    border-right: 1px solid #c1c1c1; }
    .product__inner > picture, .product__inner > .modal-window__buttons-wrapper {
      position: absolute;
      z-index: 3;
      width: 40px;
      margin-top: 0; }
      @media screen and (min-width: 768px) {
        .product__inner > picture, .product__inner > .modal-window__buttons-wrapper {
          width: 50px; } }
  .product__name {
    display: block;
    margin-bottom: 6px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none; }
    .product__name:hover {
      color: #ee5c23; }
  .product__rating {
    position: relative;
    height: 15px;
    width: 88px;
    margin-bottom: 10px;
    background: url("../assets/img/bg-stars.png") no-repeat 0 0; }
    .product__rating--empty {
      background: none; }
    .product__rating-inner {
      position: absolute;
      left: 0;
      top: 0;
      height: 15px;
      width: 0;
      background: url("../assets/img/bg-stars.png") no-repeat 0 -15px; }
  .product__image-wrapper {
    position: relative;
    margin-bottom: 9px; }
    .product__image-wrapper .product__salecode {
      bottom: 0; }
    .product__image-wrapper.salecode .flags-left, .product__image-wrapper.info-stripe .flags-left {
      bottom: 55px;
      top: unset; }
    .product__image-wrapper.salecode .flag-discount, .product__image-wrapper.info-stripe .flag-discount {
      bottom: 55px; }
  .product__image-link {
    display: block;
    position: relative;
    height: 280px;
    width: 100%; }
    .product__image-link img {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%; }
  .product__info-stripe {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 14px 5px 14px 5px;
    color: #fff;
    text-align: center;
    background-color: #ee5c23; }
    .product__info-stripe--moje-kava {
      color: #ee5c23;
      background-color: #f9ebe2; }
    .product__info-stripe--expert-klub {
      background-color: #ee5c23; }
  .product__description {
    line-height: 17px;
    height: 68px;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: block;
    /* autoprefixer: off */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    max-height: 68px;
    word-break: break-word;
    font-size: 14px;
    color: #666; }
  .product__price {
    display: flex;
    margin-bottom: 13px;
    position: relative;
    flex-direction: column;
    align-items: flex-end; }
    .salecode .product__price {
      flex-flow: row wrap;
      justify-content: center; }
      @media (min-width: 576px) {
        .salecode .product__price {
          justify-content: space-between; } }
      .salecode .product__price > .product__base-price {
        display: none; }
      .salecode .product__price > .product__main-price {
        padding-left: 3px; }
  .product__base-price {
    position: relative;
    margin-bottom: -1px;
    min-height: 21px;
    color: #747474; }
    .product__base-price:after {
      position: absolute;
      width: 100%;
      height: 1px;
      left: 0;
      top: 11px;
      content: "";
      background-color: #ff0000; }
    .product__base-price:empty {
      display: none; }
  .product__main-price {
    font-size: 24px;
    font-weight: 600; }
  .product__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 9px; }
    @media screen and (min-width: 600px) {
      .product__bottom {
        flex-direction: row; } }
  .product__action {
    display: flex;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 49px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .product__action-title {
      margin-right: 5px;
      line-height: 18px;
      text-transform: uppercase;
      text-align: center;
      font-size: 19px;
      font-weight: 700;
      color: #ee5c23; }
    .product__action-icon path {
      fill: #7d7d7d; }
    .product__action-amount {
      margin-left: auto;
      text-align: center; }
      .product__action-amount-value {
        font-weight: 700;
        font-size: 24px; }
      .product__action-amount-text {
        margin-top: -5px;
        font-size: 12px;
        font-weight: 600; }
  .product__salecode {
    width: 100%;
    height: auto;
    position: absolute;
    display: flex;
    flex-direction: column; }
    .product__salecode-info {
      color: #000000;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      background-color: #e8e8e8;
      padding: 15px 0; }
      @media screen and (max-width: 650px) {
        .product__salecode-info {
          font-size: 12px; } }
      .product__salecode-info > span {
        color: #cc5501;
        font-weight: 800; }
    .product__salecode-price {
      display: flex;
      align-items: center;
      flex-direction: column;
      font-size: 24px;
      font-weight: 600;
      color: #666; }
      .product__salecode-price span {
        font-size: 16px;
        font-weight: normal; }
  .product__avaibility {
    line-height: 15px;
    margin-bottom: 10px;
    font-size: 12px;
    text-align: center;
    color: #000;
    cursor: pointer; }
    @media screen and (min-width: 600px) {
      .product__avaibility {
        flex: 1;
        margin-bottom: 0;
        text-align: right; } }
    .product__avaibility--green {
      color: #4ca728; }
  .product__compare {
    display: flex;
    justify-content: center;
    font-size: 12px; }
    @media screen and (min-width: 600px) {
      .product__compare {
        justify-content: flex-end; } }
  @media screen and (min-width: 600px) {
    .product__buy {
      margin-left: 15px; } }
  .product__buy-icon {
    margin-right: 10px; }
    .product__buy-icon path {
      fill: #fff; }
  .product__buy-button {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding-left: 10px;
    padding-right: 15px;
    color: #fff;
    background-color: #4ca728;
    border: none;
    cursor: pointer;
    font-weight: 600;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease; }
    .product__buy-button:hover {
      background-color: #81c168; }
    .product__buy-button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }

.filter {
  position: relative; }
  @media screen and (max-width: 990px) {
    .filter {
      display: none;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4); } }
  .filter--active {
    display: block; }
    .filter--active .filter__wrap {
      transform: translateX(0); }
  .filter--active {
    display: block; }
    .filter--active .filter__wrap {
      transform: none; }
      .filter--active .filter__wrap .filter__in {
        overflow: auto;
        max-height: calc(100% - 40px);
        max-width: 100%; }
  @media screen and (max-width: 990px) {
    .filter__wrap {
      width: 100%;
      height: 100%;
      max-width: 320px;
      padding: 15px;
      transition: all 300ms ease;
      transform: translateX(-100%);
      background-color: #fff; } }
  .filter__close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 15px; }
    .filter__close .icon {
      width: 12px;
      margin-right: 10px; }
    @media screen and (min-width: 990px) {
      .filter__close {
        display: none; } }
  .filter__section {
    margin-bottom: 40px; }
    .filter__section:last-child {
      margin-bottom: 0; }
    .filter__section--hidden .filter__inner {
      display: none; }
    .filter__section--price .slider-placeholder {
      padding-top: 0; }
    .filter__section--price .ui-slider-text {
      display: none; }
  .filter__inner--color {
    display: flex;
    flex-wrap: wrap; }
  .filter__title {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px; }
  .filter__color {
    margin: 5px; }
    .filter__color--black .filter__label {
      background: #000000; }
    .filter__color--red .filter__label {
      background: #D2042D; }
    .filter__color--purple .filter__label {
      background: #8E44AD; }
    .filter__color--blue .filter__label {
      background: #0096FF; }
    .filter__color--grey .filter__label {
      background: #808080; }
    .filter__color--white .filter__label {
      background: #ffffff; }
    .filter__color--orange .filter__label {
      background: #FFA500; }
    .filter__color--orange-expert .filter__label {
      background: #FFA500; }
    .filter__color--silver .filter__label {
      background: #C0C0C0; }
    .filter__color--brown .filter__label {
      background: #A04000; }
    .filter__color--gold .filter__label {
      background: #FFD700; }
    .filter__color--green .filter__label {
      background: #228B22; }
    .filter__color--yellow .filter__label {
      background: #FFFF00; }
    .filter__color--pink .filter__label {
      background: #FFC0CB; }
    .filter__color .filter__input:checked + .filter__label:before {
      position: absolute;
      left: -5px;
      top: -5px;
      width: 38px;
      height: 38px;
      content: "";
      border-radius: 4px;
      border: 2px solid #ee5c23; }
    .filter__color .filter__label {
      position: relative;
      display: block;
      width: 28px;
      height: 28px;
      padding: 0;
      border-radius: 4px; }
  .filter__item {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #cecece; }
    .filter__item:last-child {
      margin-bottom: 0; }
    .filter__item .filter__input:checked + .filter__label:after {
      opacity: 1; }
    .filter__item .filter__input:disabled + .filter__label {
      color: #747474;
      cursor: not-allowed; }
    .filter__item .filter__label {
      display: flex;
      position: relative;
      padding-left: 25px;
      cursor: pointer;
      color: #ee5c23; }
      .filter__item .filter__label:before {
        position: absolute;
        left: 0;
        top: 3px;
        width: 15px;
        height: 15px;
        content: "";
        border-radius: 2px;
        border: 1px solid #676767; }
      .filter__item .filter__label:after {
        position: absolute;
        left: 5px;
        top: calc(3px + 2px);
        display: block;
        width: 5px;
        height: 10px;
        content: '';
        transition: opacity 300ms ease;
        transform: rotate(45deg);
        opacity: 0;
        border: solid #676767;
        border-width: 0 2px 2px 0; }
      .filter__item .filter__label span {
        margin-left: auto;
        color: #424c58; }
  .filter__energy {
    position: relative;
    margin-bottom: 10px; }
    .filter__energy:last-child {
      margin-bottom: 0; }
    .filter__energy .filter__input:checked + .filter__label:after {
      opacity: 1; }
    .filter__energy .filter__input:disabled + .filter__label {
      color: #747474;
      cursor: not-allowed; }
    .filter__energy .filter__label {
      display: flex;
      position: relative;
      padding: 5px 0;
      padding-left: 25px;
      cursor: pointer;
      color: #fff; }
      .filter__energy .filter__label:before {
        position: absolute;
        left: 0;
        top: 3px;
        width: 15px;
        height: 15px;
        content: "";
        border-radius: 2px;
        border: 1px solid #676767; }
      .filter__energy .filter__label:after {
        position: absolute;
        left: 5px;
        top: calc(3px + 2px);
        display: block;
        width: 5px;
        height: 10px;
        content: '';
        transition: opacity 300ms ease;
        transform: rotate(45deg);
        opacity: 0;
        border: solid #676767;
        border-width: 0 2px 2px 0; }
      .filter__energy .filter__label:before {
        width: 12px;
        height: 12px;
        top: 10px;
        left: 5px;
        background: white; }
      .filter__energy .filter__label:after {
        position: absolute;
        left: 9px;
        top: 11px;
        display: block;
        width: 4px;
        height: 9px; }
      .filter__energy .filter__label span {
        margin-left: auto;
        color: #424c58; }
  .filter__ribbon {
    background: pink;
    height: 100%;
    width: 40%;
    position: absolute;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
    .filter__ribbon:after {
      content: "";
      width: 0;
      left: 100%;
      position: absolute;
      height: 0;
      border-style: solid;
      border-width: 15.5px 0 15.5px 15.5px;
      border-color: transparent transparent transparent pink; }
    .filter__ribbon--Adve {
      background: #008f40;
      width: 30%; }
      .filter__ribbon--Adve:after {
        border-color: transparent transparent transparent #008f40; }
    .filter__ribbon--Bdve {
      background: #51a631;
      width: 35%; }
      .filter__ribbon--Bdve:after {
        border-color: transparent transparent transparent #51a631; }
    .filter__ribbon--Cdve {
      background: #bfcc00;
      width: 40%; }
      .filter__ribbon--Cdve:after {
        border-color: transparent transparent transparent #bfcc00; }
    .filter__ribbon--Ddve {
      background: #ffe500;
      width: 45%; }
      .filter__ribbon--Ddve:after {
        border-color: transparent transparent transparent #ffe500; }
    .filter__ribbon--Edve {
      background: #f3b200;
      width: 50%; }
      .filter__ribbon--Edve:after {
        border-color: transparent transparent transparent #f3b200; }
    .filter__ribbon--Fdve {
      background: #e56609;
      width: 55%; }
      .filter__ribbon--Fdve:after {
        border-color: transparent transparent transparent #e56609; }
    .filter__ribbon--Gdve {
      background: #da0612;
      width: 60%; }
      .filter__ribbon--Gdve:after {
        border-color: transparent transparent transparent #da0612; }
  .filter__input {
    display: none; }
  .filter__title-text {
    font-size: 19px !important; }
  .filter__validation_error {
    color: #FF0000; }

.filter_dropdown {
  padding: 5px;
  border: 1px solid #c1c1c1;
  margin-bottom: 7px;
  width: 100%;
  background-image: linear-gradient(45deg, transparent 50%, transparent 50%), linear-gradient(135deg, transparent 50%, transparent 50%), linear-gradient(to right, #e5e5e5, #e5e5e5);
  background-position: calc(100% - 11px) calc(1em - 1px), calc(100% - 6px) calc(1em - 1px), 100% 0;
  background-size: 5px 5px, 5px 5px, 1.2em 2.5em;
  background-repeat: no-repeat; }

.moreParams a {
  color: #ee5c23;
  font-weight: 700;
  text-decoration: none; }
  .moreParams a:before {
    content: "↓";
    font-size: 20px;
    color: #666;
    margin-right: 8px; }

.lessParams a {
  color: #ee5c23;
  font-weight: 700;
  text-decoration: none; }
  .lessParams a:before {
    content: "↑";
    font-size: 20px;
    color: #666;
    margin-right: 8px; }

.box-filter_dropdown .filter__item {
  border-bottom: none; }

.marketSelect {
  padding: 5px 10px;
  border: 1px solid #c1c1c1;
  margin-bottom: 7px; }

.flags-left {
  position: absolute;
  left: 0;
  z-index: 2; }
  .page-unpacked .flags-left,
  .page-search .flags-left,
  .article-detail__catalog .flags-left,
  .page-category .flags-left,
  .product .flags-left {
    bottom: 0; }
  .page-commodity .flags-left {
    top: 0; }
  .flags-left--detail {
    bottom: 0;
    top: unset; }
    .flags-left--detail .flags-left__item {
      width: 51px;
      height: 51px; }
      .flags-left--detail .flags-left__item:before {
        right: 4px;
        bottom: 35px; }
    .flags-left--detail .flags-left__icon {
      width: 32px;
      height: 32px; }
      .flags-left--detail .flags-left__icon--free-delivery {
        width: 50px;
        height: 50px; }
      .flags-left--detail .flags-left__icon--snidane {
        width: 50px;
        height: 50px; }
  .flags-left--mojekava {
    bottom: 55px !important; }
  .flags-left__item {
    position: relative;
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    border-radius: 50%; }
    .page-commodity .flags-left__item {
      position: absolute;
      bottom: 0;
      margin-bottom: 60px; }
      .page-commodity .flags-left__item:last-child {
        margin-bottom: 0; }
    .flags-left__item:last-child {
      margin-bottom: 0; }
    .flags-left__item--green {
      background-color: #4ca728; }
      .flags-left__item--green:before {
        background-color: #4ca728; }
    .flags-left__item--blue {
      background-color: #1fa2cd; }
      .flags-left__item--blue:before {
        background-color: #1fa2cd; }
    .flags-left__item--orange {
      background-color: #ee5c23; }
      .flags-left__item--orange:before {
        background-color: #ee5c23; }
    .flags-left__item--orange-expert {
      background-color: #ee5c23; }
      .flags-left__item--orange-expert:before {
        background-color: #ee5c23; }
    .flags-left__item--brown {
      background-color: #856155; }
      .flags-left__item--brown:before {
        background-color: #856155; }
    .flags-left__item:before {
      position: absolute;
      height: 15px;
      width: 15px;
      z-index: -1;
      content: "";
      right: 2px;
      bottom: 20px;
      transform: rotate(-208deg) skew(-35deg); }
  .flags-left__icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 32px;
    height: 32px;
    transform: translate(-50%, -50%); }
    .flags-left__icon path {
      fill: #fff; }
  .flags-left--energy {
    width: 80px;
    z-index: 3; }
    @media screen and (min-width: 768px) {
      .flags-left--energy {
        width: 68px; } }
    .flags-left--energy > picture, .flags-left--energy > div {
      margin-top: 0; }

.flag-discount {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  background-color: #ee5c23; }
  .flag-discount:before {
    position: absolute;
    height: 15px;
    width: 15px;
    z-index: -1;
    content: "";
    left: 8px;
    top: 0;
    transform: rotate(-99deg) skew(-35deg);
    background-color: #ee5c23; }
  .flag-discount--detail {
    width: 77px;
    height: 77px;
    bottom: 0; }
    .flag-discount--detail .flag-discount:before {
      left: 12px;
      top: 0; }
    .flag-discount--detail .flag-discount__text {
      margin-bottom: -5px;
      font-size: 17px; }
    .flag-discount--detail .flag-discount__value {
      font-size: 27px; }
  .flag-discount__text {
    margin-bottom: -2px;
    position: relative;
    z-index: 2;
    font-size: 11px; }
  .flag-discount__value {
    position: relative;
    z-index: 2;
    font-size: 17px;
    font-weight: 700; }

.flags-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2; }
  .flags-right__image,
  .flags-right img {
    max-width: 100px; }
  .flags-right__item {
    margin-bottom: 8px; }
    .flags-right__item:last-child {
      margin-bottom: 0; }

.mega-action {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .mega-action__link {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    color: #000;
    text-decoration: none; }
    @media screen and (min-width: 1300px) {
      .mega-action__link {
        height: 240px; } }
  .mega-action__main-title {
    width: 100%;
    margin-bottom: 15px;
    color: #ee5c23;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center; }
    @media screen and (min-width: 1300px) {
      .mega-action__main-title {
        width: auto;
        margin-bottom: 0;
        line-height: 48px;
        margin-right: 60px;
        font-size: 40px; } }
    .mega-action__main-title br {
      display: none; }
      @media screen and (min-width: 1300px) {
        .mega-action__main-title br {
          display: block; } }
    .mega-action__main-title-icon {
      display: none; }
      @media screen and (min-width: 1300px) {
        .mega-action__main-title-icon {
          display: block; } }
      .mega-action__main-title-icon path {
        fill: #666; }
  .mega-action__image {
    width: 50%;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .mega-action__image {
        flex: 1;
        width: auto; } }
    @media screen and (min-width: 1300px) {
      .mega-action__image {
        flex: 0 1 auto;
        margin-right: 20px; } }
  .mega-action__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50%; }
    @media screen and (min-width: 480px) {
      .mega-action__text-wrapper {
        width: 100%; } }
    @media screen and (min-width: 768px) {
      .mega-action__text-wrapper {
        width: auto; } }
    @media screen and (min-width: 1300px) {
      .mega-action__text-wrapper {
        flex: 1;
        margin-right: 20px; } }
  .mega-action__title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px; }
    @media screen and (min-width: 480px) {
      .mega-action__title {
        margin-bottom: 0; } }
    @media screen and (min-width: 1300px) {
      .mega-action__title {
        line-height: 48px;
        font-size: 34px; } }
  .mega-action__price {
    text-align: right; }
    @media screen and (min-width: 480px) {
      .mega-action__price {
        text-align: left; } }
  .mega-action__base-price {
    margin-bottom: -2px;
    color: #747474;
    text-decoration: line-through; }
    @media screen and (min-width: 1300px) {
      .mega-action__base-price {
        font-size: 24px; } }
  .mega-action__main-price {
    line-height: 1;
    color: #ee5c23;
    font-size: 20px;
    font-weight: 700; }
    @media screen and (min-width: 1300px) {
      .mega-action__main-price {
        font-size: 60px; } }
  .mega-action__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 15px; }
    @media screen and (min-width: 480px) {
      .mega-action__right {
        flex-direction: column;
        justify-content: center;
        margin-left: auto;
        margin-top: 0;
        width: auto; } }
    @media screen and (min-width: 1300px) {
      .mega-action__right {
        justify-content: space-between; } }
  @media screen and (min-width: 600px) {
    .mega-action__amount {
      text-align: center; } }
  @media screen and (min-width: 480px) {
    .mega-action__amount {
      margin-bottom: 15px; } }
  @media screen and (min-width: 1300px) {
    .mega-action__amount {
      margin-bottom: 0; } }
  .mega-action__amount-value {
    font-size: 40px;
    font-weight: 700; }
  .mega-action__amount-text {
    font-weight: 600;
    font-size: 14px; }
    @media screen and (min-width: 600px) {
      .mega-action__amount-text {
        margin-top: -9px;
        font-size: 20px; } }
  .mega-action__amount--desktop {
    display: none; }
    @media screen and (min-width: 600px) {
      .mega-action__amount--desktop {
        display: block; } }
  @media screen and (min-width: 600px) {
    .mega-action__amount--responsive {
      display: none; } }
  .mega-action__countdown {
    display: flex; }
    .mega-action__countdown-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      margin-right: 6px;
      background-color: #ee5c23;
      color: #fff; }
      @media screen and (min-width: 480px) {
        .mega-action__countdown-item {
          width: 64px;
          height: 64px; } }
      @media screen and (min-width: 1300px) {
        .mega-action__countdown-item {
          width: 100px;
          height: 100px; } }
      .mega-action__countdown-item:last-child {
        margin-right: 0; }
    .mega-action__countdown-value {
      font-size: 18px;
      font-weight: 700; }
      @media screen and (min-width: 1300px) {
        .mega-action__countdown-value {
          font-size: 40px; } }
    .mega-action__countdown-text {
      margin-top: -8px;
      font-size: 12px;
      font-weight: 600; }
      @media screen and (min-width: 1300px) {
        .mega-action__countdown-text {
          font-size: 20px; } }
  .mega-action__sold {
    margin-top: auto;
    margin-bottom: auto;
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    text-align: center; }

.black-friday {
  position: relative;
  border: 1px solid #c1c1c1;
  background-color: #000;
  margin-bottom: 20px;
  height: auto;
  overflow: hidden; }
  @media (min-width: 1270px) {
    .black-friday {
      height: 240px; } }
  .black-friday__bg {
    display: none; }
    @media screen and (min-width: 990px) {
      .black-friday__bg {
        display: block; } }
  .black-friday__link {
    display: flex;
    flex-direction: column;
    color: #000;
    text-decoration: none;
    height: 100%;
    padding: 40px 20px;
    border-top: dashed 15px #373637;
    border-bottom: dashed 15px #373637; }
    @media screen and (min-width: 990px) {
      .black-friday__link {
        flex-direction: row;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        padding: 0;
        border: none; } }
  .black-friday__main-title {
    width: 100%;
    text-align: center;
    transform: rotate(-1deg);
    margin-bottom: 60px; }
    .black-friday__main-title:after {
      display: block;
      content: "";
      background: linear-gradient(to right, #ee7601 0%, #ee7601 5%, #f59b00 50%, #ee7601 95%, #ee7601 100%);
      height: 70px;
      margin: -74px -25px 0 -25px; }
      @media (min-width: 360px) {
        .black-friday__main-title:after {
          height: 80px;
          margin: -84px -25px 0 -25px; } }
      @media screen and (min-width: 480px) {
        .black-friday__main-title:after {
          height: 108px;
          margin: -112px -25px 0 -25px; } }
    @media screen and (min-width: 990px) {
      .black-friday__main-title {
        width: calc(40800% / 1238);
        transform: none;
        margin-bottom: 0; } }
    .black-friday__main-title > span {
      display: inline-block;
      color: #fff;
      font-size: 64px;
      line-height: 56px;
      font-weight: 800;
      text-align: left;
      text-shadow: 4px 4px 0px black;
      transform: skew(-9deg); }
      @media (min-width: 360px) {
        .black-friday__main-title > span {
          font-size: 70px;
          line-height: 62px; } }
      @media screen and (min-width: 480px) {
        .black-friday__main-title > span {
          font-size: 94.5px;
          line-height: 79.4px; } }
      @media screen and (min-width: 990px) {
        .black-friday__main-title > span {
          display: none; } }
  .black-friday__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 20px;
    margin-bottom: 60px; }
    @media screen and (min-width: 600px) {
      .black-friday__center {
        flex-direction: row;
        align-items: normal; } }
    @media screen and (min-width: 990px) {
      .black-friday__center {
        width: calc(49100% / 1238);
        height: 100%;
        padding: 0;
        margin: 0; } }
  @media screen and (min-width: 990px) {
    .black-friday__image {
      width: calc(20000% / 491); } }
  .black-friday__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0 16px 0;
    width: 100%; }
    @media screen and (min-width: 600px) {
      .black-friday__text-wrapper {
        align-items: flex-start;
        flex: 1;
        width: auto; } }
    @media screen and (min-width: 990px) {
      .black-friday__text-wrapper {
        width: calc(29100% / 491); } }
  .black-friday__title {
    line-height: 40px;
    font-weight: 800;
    font-size: 36px;
    letter-spacing: -1px;
    padding-left: 5px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%; }
    @media screen and (min-width: 600px) {
      .black-friday__title {
        text-align: left;
        padding-right: 10px; } }
    @media screen and (min-width: 990px) {
      .black-friday__title {
        font-size: 28px;
        line-height: 30px;
        overflow: hidden;
        height: 93px;
        margin-bottom: 0; } }
    @media (min-width: 1170px) {
      .black-friday__title {
        font-size: 32px;
        line-height: 36px;
        height: 113px; } }
    @media (min-width: 1270px) {
      .black-friday__title {
        height: 123px;
        font-size: 36px;
        line-height: 40px; } }
  .black-friday__base-price {
    margin-bottom: -6px;
    color: #747474;
    font-size: 24px;
    text-decoration: line-through;
    padding-left: 8px;
    text-align: center; }
    @media screen and (min-width: 600px) {
      .black-friday__base-price {
        text-align: left; } }
    @media screen and (min-width: 990px) {
      .black-friday__base-price {
        font-size: 20px; } }
    @media (min-width: 1170px) {
      .black-friday__base-price {
        font-size: 22px; } }
    @media (min-width: 1270px) {
      .black-friday__base-price {
        font-size: 24px; } }
  .black-friday__main-price {
    line-height: 1;
    color: #ee7701;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: -0.9px;
    padding-left: 3px; }
    @media screen and (min-width: 990px) {
      .black-friday__main-price {
        font-size: 40px; } }
    @media (min-width: 1170px) {
      .black-friday__main-price {
        font-size: 50px; } }
    @media (min-width: 1270px) {
      .black-friday__main-price {
        font-size: 60px; } }
  .black-friday__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media screen and (min-width: 990px) {
      .black-friday__right {
        width: calc(33900% / 1238);
        padding: 10px 8px 12px 4px;
        margin: 0 0 0 auto; } }
    @media (min-width: 1170px) {
      .black-friday__right {
        padding: 17px 10px 21px 0; } }
    @media (min-width: 1270px) {
      .black-friday__right {
        padding: 17px 17.5px 21px 0; } }
  .black-friday__amount {
    text-align: center;
    margin-bottom: 10px; }
    .black-friday__amount:after {
      display: block;
      content: "";
      background: linear-gradient(to right, #ee7601 0%, #ee7601 5%, #f59b00 50%, #ee7601 95%, #ee7601 100%);
      height: 100px;
      margin: -90px -25px 0 -25px;
      transform: rotate(-1deg); }
      @media screen and (min-width: 990px) {
        .black-friday__amount:after {
          display: none; } }
    @media screen and (min-width: 990px) {
      .black-friday__amount {
        margin-bottom: 0;
        padding-left: 32px;
        color: #000; } }
    @media (min-width: 1170px) {
      .black-friday__amount {
        padding-left: 42px; } }
    .black-friday__amount-value {
      font-size: 48px;
      font-weight: 700;
      position: relative;
      z-index: 1; }
      @media screen and (min-width: 990px) {
        .black-friday__amount-value {
          font-size: 40px;
          z-index: 0; } }
      @media (min-width: 1170px) {
        .black-friday__amount-value {
          font-size: 44px; } }
      @media (min-width: 1270px) {
        .black-friday__amount-value {
          font-size: 48px; } }
    .black-friday__amount-text {
      margin-top: -10px;
      font-weight: 600;
      font-size: 24px;
      position: relative;
      z-index: 1; }
      @media screen and (min-width: 990px) {
        .black-friday__amount-text {
          font-size: 20px;
          z-index: 0; } }
      @media (min-width: 1170px) {
        .black-friday__amount-text {
          font-size: 22px; } }
      @media (min-width: 1270px) {
        .black-friday__amount-text {
          font-size: 24px; } }
  .black-friday__countdown {
    display: flex;
    justify-content: center; }
    @media screen and (min-width: 990px) {
      .black-friday__countdown {
        justify-content: flex-end; } }
    .black-friday__countdown-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 84px;
      height: 90px;
      margin-right: 0;
      background-color: transparent;
      color: #fff; }
      @media (min-width: 360px) {
        .black-friday__countdown-item {
          width: 90px; } }
      @media screen and (min-width: 480px) {
        .black-friday__countdown-item {
          width: 100px;
          height: 100px;
          margin-right: 6px; } }
      @media screen and (min-width: 990px) {
        .black-friday__countdown-item {
          width: 90px;
          height: 90px;
          margin-right: 0; } }
      @media (min-width: 1170px) {
        .black-friday__countdown-item {
          width: 100px;
          height: 90px; } }
      @media (min-width: 1270px) {
        .black-friday__countdown-item {
          margin-right: 6px;
          width: 100px;
          height: 100px; } }
      .black-friday__countdown-item:last-child {
        margin-right: 0; }
    .black-friday__countdown-value {
      font-size: 48px;
      font-weight: 700; }
      @media screen and (min-width: 990px) {
        .black-friday__countdown-value {
          font-size: 40px; } }
      @media (min-width: 1170px) {
        .black-friday__countdown-value {
          font-size: 44px; } }
      @media (min-width: 1270px) {
        .black-friday__countdown-value {
          font-size: 48px; } }
    .black-friday__countdown-text {
      margin-top: -9px;
      font-size: 24px;
      font-weight: 600; }
      @media screen and (min-width: 990px) {
        .black-friday__countdown-text {
          font-size: 20px; } }
      @media (min-width: 1170px) {
        .black-friday__countdown-text {
          font-size: 22px; } }
      @media (min-width: 1270px) {
        .black-friday__countdown-text {
          font-size: 24px; } }
  .black-friday__sold {
    margin-top: auto;
    margin-bottom: auto;
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    text-align: center; }

.categories__list {
  list-style: none;
  padding: 0;
  margin: 0; }

.categories__item {
  position: relative; }
  .categories__item--active .categories__submenu--level2 {
    display: block; }
  .categories__item--active .categories__link {
    color: #ee5c23; }
  .categories__item--active > .categories__arrow:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .categories__item:last-child .categories__link {
    border-bottom: none; }

.categories__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 4px;
  top: 4px;
  -webkit-transition: 300ms ease all;
  -o-transition: 300ms ease all;
  transition: 300ms ease all;
  cursor: pointer; }
  .categories__arrow:before {
    content: "";
    -webkit-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5.5px 0 5.5px;
    border-color: #000 transparent transparent transparent; }
  .categories__arrow:hover {
    background-color: #f5f5f5; }

.categories__link {
  position: relative;
  display: block;
  padding: 5px 25px 6px 0;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #c1c1c1; }
  .categories__link:hover {
    text-decoration: underline; }

.categories__submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0; }
  .categories__submenu--level3 {
    display: none; }
    .categories__submenu--level3 .categories__submenu-link {
      padding-left: 42px; }
  .categories__submenu--level4 {
    display: none; }
    .categories__submenu--level4 .categories__submenu-link {
      padding-left: 52px; }
  .categories__submenu-item {
    position: relative; }
    .categories__submenu-item--active .categories__submenu {
      display: block; }
    .categories__submenu-item--active .categories__arrow:before {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .categories__submenu-link {
    display: block;
    padding: 5px 0 6px 32px;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #c1c1c1; }
    .categories__submenu-link:hover {
      text-decoration: underline; }

.pagination__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: -5px; }
  @media screen and (min-width: 990px) {
    .pagination__top {
      flex-direction: row;
      justify-content: space-between; } }

.pagination__inner {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; }

.pagination__actions {
  display: flex;
  justify-content: center;
  margin-top: 15px; }

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 5px;
  position: relative;
  text-decoration: none;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  color: #ee5c23;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px; }
  .pagination__item--nav {
    width: 220px; }
  .pagination__item--active {
    color: #000; }

.pagination__button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  text-decoration: none;
  border: 1px solid #cdcdcd;
  background-color: #fff;
  color: #ee5c23;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px; }
  .pagination__button span {
    margin-left: 5px;
    color: #666; }

.hp-articles__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.hp-articles__inner {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .hp-articles__inner-hidden {
    display: none; }

.hp-articles__more-wrapper {
  display: flex;
  justify-content: center; }

.hp-articles__more {
  position: relative;
  padding-left: 21px;
  color: #1fa2cd;
  font-size: 12px; }
  .hp-articles__more:after {
    position: absolute;
    left: 0;
    top: 6px;
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #1fa2cd transparent transparent transparent; }

.hp-articles__more-date-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px; }
  @media screen and (max-width: 600px) {
    .hp-articles__more-date-wrapper {
      flex-direction: row;
      align-items: baseline;
      gap: 8px; } }

.hp-articles__item {
  padding-bottom: 17px;
  margin-bottom: 16px;
  border-bottom: 1px solid #c1c1c1; }
  @media screen and (min-width: 990px) {
    .hp-articles__item {
      min-height: 108px; } }
  .hp-articles__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
    @media screen and (min-width: 990px) {
      .hp-articles__item:last-child {
        min-height: 68px; } }
  .hp-articles__item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-bottom: 7px;
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap; }
    .hp-articles__item-name:hover {
      text-decoration: underline; }
  .hp-articles__item-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; }
    @media screen and (max-width: 600px) {
      .hp-articles__item-bottom {
        flex-direction: column;
        row-gap: 8px; } }
  .hp-articles__item-annotation {
    flex: 1;
    line-height: 17px;
    text-align: justify;
    color: #666;
    font-size: 14px; }
  .hp-articles__item-more {
    color: #1fa2cd;
    font-size: 12px; }
    .hp-articles__item-more:hover {
      text-decoration: none; }
  .hp-articles__item-publishdate {
    font-size: 12px;
    text-align: right;
    color: gray; }

.grid-categories__list {
  display: flex;
  flex-direction: column;
  margin-bottom: -20px; }
  @media screen and (min-width: 480px) {
    .grid-categories__list {
      flex-wrap: wrap;
      flex-direction: row;
      margin-left: -10px;
      margin-right: -10px; } }
  @media screen and (min-width: 990px) {
    .grid-categories__list--side {
      flex-direction: column;
      margin-left: 0;
      margin-right: 0; } }
  @media screen and (min-width: 990px) {
    .grid-categories__list--side .grid-categories__item {
      width: 100%;
      margin-left: 0;
      margin-right: 0; } }

.grid-categories__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 7px 15px;
  margin-bottom: 20px;
  line-height: 17px;
  min-height: 50px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border: 1px solid #c1c1c1;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: 600; }
  @media screen and (min-width: 480px) {
    .grid-categories__item {
      margin-left: 10px;
      margin-right: 10px;
      width: calc(100% / 2 - 20px); } }
  @media screen and (min-width: 600px) {
    .grid-categories__item {
      width: calc(100% / 3 - 20px); } }
  @media screen and (min-width: 768px) {
    .grid-categories__item {
      width: calc(100% / 4 - 20px); } }
  .grid-categories__item:hover {
    border-color: #ee5c23;
    color: #ee5c23; }

.grid-categories__image-wrapper {
  width: 30px;
  height: 30px;
  margin-right: 15px; }

.grid-categories__text {
  flex: 1; }

.modal-hds__title {
  margin-bottom: 15px;
  font-weight: 700; }

.modal-hds__section {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c1c1c1; }
  .modal-hds__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }

.modal-hds__date {
  margin-bottom: 10px;
  font-weight: 700; }

.modal-hds__item {
  position: relative;
  margin-bottom: 10px; }
  .modal-hds__item:last-child {
    margin-bottom: 0; }
  .modal-hds__item-input {
    position: absolute;
    left: 5px;
    top: 5px; }
  .modal-hds__item-label {
    display: block;
    cursor: pointer;
    padding-left: 30px; }

.best-seller-product {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #c1c1c1; }
  .best-seller-product:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }
  .best-seller-product__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-decoration: none;
    color: #000; }
  .best-seller-product__position {
    padding-top: 3px;
    width: 36px;
    height: 36px;
    margin-right: 12px;
    border-radius: 50%;
    color: #fff;
    background-color: #ee5c23;
    font-size: 20px;
    text-align: center; }
  .best-seller-product__image-wrapper {
    display: block;
    position: relative;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border: 1px solid #eff9fc; }
    .best-seller-product__image-wrapper img {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%; }
  .best-seller-product__text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column; }
  .best-seller-product__title {
    margin-bottom: 4px;
    font-weight: 600;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease; }
    @media screen and (min-width: 600px) {
      .best-seller-product__title {
        font-size: 20px; } }
    .best-seller-product__title:hover {
      color: #ee5c23; }
  .best-seller-product__description {
    line-height: 17px;
    height: 34px;
    overflow: hidden;
    color: #666;
    font-size: 14px; }
  .best-seller-product__main-price {
    width: 100%;
    font-size: 23px;
    text-align: right; }
    @media screen and (min-width: 480px) {
      .best-seller-product__main-price {
        width: 110px;
        margin-bottom: auto; } }

.best-sellers--active .best-sellers__inner-hidden {
  display: block; }

.best-sellers--active .best-sellers__more, .best-sellers--visible .best-sellers__more {
  position: relative;
  cursor: pointer;
  text-decoration: underline;
  padding-left: 21px;
  color: #1fa2cd;
  font-size: 12px;
  /*&:after {
				@include rotate(180deg);
			}*/ }
  .best-sellers--active .best-sellers__more:after, .best-sellers--visible .best-sellers__more:after {
    position: absolute;
    left: 0;
    top: 6px;
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #1fa2cd transparent transparent transparent; }
  .best-sellers--active .best-sellers__more-up:after, .best-sellers--visible .best-sellers__more-up:after {
    position: absolute;
    left: 0;
    top: 6px;
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #1fa2cd transparent; }
  .best-sellers--active .best-sellers__more-text, .best-sellers--visible .best-sellers__more-text {
    display: none; }
  .best-sellers--active .best-sellers__more:before, .best-sellers--visible .best-sellers__more:before {
    display: block; }

.best-sellers__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.best-sellers__inner {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .best-sellers__inner-hidden {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #c1c1c1; }

.best-sellers__more-wrapper {
  display: flex;
  justify-content: center; }
  .best-sellers__more-wrapper--active a span {
    display: none; }
  .best-sellers__more-wrapper--active a:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .best-sellers__more-wrapper--active a:after {
    content: attr(data-less); }
  .best-sellers__more-wrapper a {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    color: #1fa2cd;
    cursor: pointer;
    text-decoration: underline; }
    .best-sellers__more-wrapper a:hover {
      text-decoration: none; }
    .best-sellers__more-wrapper a:before {
      position: absolute;
      left: 0;
      top: 6px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 7px 0 7px;
      border-color: #1fa2cd transparent transparent transparent; }

.cookies-bar {
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 10;
  background-color: #ee5c23; }
  @media screen and (min-width: 990px) {
    .cookies-bar {
      position: fixed;
      bottom: 0;
      left: 0; } }
  .cookies-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    text-align: center; }
  .cookies-bar__text {
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600; }
  .cookies-bar__buttons-wrapper {
    display: flex;
    align-items: baseline; }
    .cookies-bar__buttons-wrapper a {
      margin-left: 10px;
      margin-right: 10px; }
  .cookies-bar__agree {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #1fa2cd;
    color: #fff; }
    .cookies-bar__agree.disabled, .cookies-bar__agree[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .cookies-bar__agree:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
  .cookies-bar__more-info {
    color: #fff;
    font-size: 14px; }

.user-data__section {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border-bottom: 1px solid #c1c1c1; }
  @media screen and (min-width: 600px) {
    .user-data__section {
      grid-template-columns: 1fr 1fr; } }
  .user-data__section--login {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
  .user-data__section--hidden {
    max-height: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom-color: transparent; }
  .user-data__section--no-border {
    padding-bottom: 0;
    border-bottom: none; }
  .user-data__section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.user-data__list {
  display: flex;
  justify-content: center;
  width: 100%; }
  .user-data__list > * {
    margin-right: 10px;
    margin-left: 10px; }

.user-data__buttons-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -4px; }
  @media screen and (min-width: 600px) {
    .user-data__buttons-wrapper {
      grid-column-start: 1;
      grid-column-end: 3; } }
  .user-data__buttons-wrapper > * {
    margin: 4px; }

.user-data__item {
  position: relative; }
  @media screen and (min-width: 600px) {
    .user-data__item--full {
      grid-column-start: 1;
      grid-column-end: 3; } }
  .user-data__item--card {
    display: flex;
    flex-direction: column;
    border: 1px solid #c1c1c1; }
    @media screen and (min-width: 600px) {
      .user-data__item--card {
        flex-direction: row; } }
    .user-data__item--card .form-input {
      flex: 1;
      min-width: 1px;
      border: none; }

.user-data__item-in {
  display: flex;
  position: relative; }
  .user-data__item-in > * {
    margin-right: 5px; }
    .user-data__item-in > *:last-child {
      margin-right: 0; }

.user-data__label {
  position: absolute;
  left: 10px;
  top: -9px;
  z-index: 2;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 12px;
  background-color: #fff; }

.user-data__value {
  flex: 1;
  width: 100%;
  position: relative; }

.user-data__input--w105 {
  width: 105px; }

.user-data__input--center {
  justify-content: center; }

.user-data__textarea {
  display: flex;
  align-items: center;
  height: 92px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  resize: none;
  padding-top: 10px;
  padding-bottom: 10px; }
  .user-data__textarea::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .user-data__textarea:-ms-input-placeholder {
    color: #777; }
  .user-data__textarea::-webkit-input-placeholder {
    color: #777; }
  .user-data__textarea[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .user-data__textarea:focus {
    border-color: #424c58; }
  .user-data__textarea:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.user-data__join {
  border: 1px solid #c1c1c1; }
  .user-data__join--active .user-data__join-inner {
    display: block; }
  .user-data__join-label {
    display: flex;
    align-items: center;
    height: 50px;
    position: relative;
    padding-left: 100px;
    font-size: 18px;
    font-weight: 600; }
    .user-data__join-label:before, .user-data__join-label:after {
      position: absolute;
      top: 0;
      height: 100%;
      content: ""; }
    .user-data__join-label:before {
      left: 0;
      width: 76px;
      background: url("../assets/img/img-join-left.png") no-repeat 0 0; }
    .user-data__join-label:after {
      right: 0;
      width: 118px;
      background: url("../assets/img/img-join-right.png") no-repeat 0 0; }
    .user-data__join-label img {
      margin-left: 20px;
      position: relative;
      z-index: 2; }
  .user-data__join-input {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%); }
  .user-data__join-inner {
    display: none;
    padding: 20px 40px; }
  .user-data__join .user-data__item--center {
    display: flex;
    justify-content: center; }
    .user-data__join .user-data__item--center .form-input {
      max-width: 200px; }

.user-data__hidden {
  display: none;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 20px;
  grid-column-start: 1;
  grid-column-end: 3; }
  @media screen and (min-width: 600px) {
    .user-data__hidden {
      grid-template-columns: 1fr 1fr; } }
  .user-data__hidden--visible {
    display: grid; }

.user-data__divider {
  width: 100%;
  height: 1px;
  background-color: #c1c1c1; }

.user-data__policy {
  width: 100%;
  margin-bottom: 30px; }
  .user-data__policy:last-child {
    margin-bottom: 0; }
  .user-data__policy-title {
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: center; }
  .user-data__policy-text {
    margin-bottom: 10px;
    line-height: 18px;
    text-align: center;
    color: #c1c1c1; }
  .user-data__policy-list {
    display: flex;
    justify-content: center; }
    .user-data__policy-list > * {
      margin-right: 10px;
      margin-left: 10px; }
  .user-data__policy-validation {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: #ff0000;
    text-align: center; }
    .user-data__policy-validation:before {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      width: 23px;
      height: 23px;
      margin-right: 10px;
      content: '!';
      border-radius: 50%;
      background-color: #ff0000;
      color: #fff;
      font-weight: 700; }

.modal-window {
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }
  .modal-window--active {
    opacity: 1;
    visibility: visible; }
  .modal-window--club .modal-window__close {
    right: 25px;
    top: 25px; }
  .modal-window--club .modal-window__wrap {
    width: 100%; }
    @media screen and (min-width: 990px) {
      .modal-window--club .modal-window__wrap {
        max-width: 1120px; } }
  .modal-window--club .modal-window__inner {
    background-color: #f5f5f5; }
  .modal-window__overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); }
  .modal-window__wrap {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    overflow-y: auto;
    background-color: #fff; }
    @media screen and (min-width: 768px) {
      .modal-window__wrap {
        left: 50%;
        top: 50%;
        right: auto;
        bottom: auto;
        max-height: calc(104vh - 100px);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); } }
    .modal-window__wrap--gallery {
      overflow-y: hidden; }
  .modal-window__close {
    z-index: 2;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transform: rotate(45deg); }
    .modal-window__close:before, .modal-window__close:after {
      display: block;
      position: absolute;
      content: "";
      background-color: #ffffff;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
    .modal-window__close:before {
      left: 0;
      top: 11px;
      width: 24px;
      height: 2px; }
    .modal-window__close:after {
      top: 0;
      left: 11px;
      width: 2px;
      height: 24px; }
  .modal-window__header {
    display: flex;
    background-color: #ee5c23;
    position: relative;
    width: 100%;
    height: 110px; }
    @media screen and (max-width: 750px) {
      .modal-window__header {
        display: block;
        min-height: 110px;
        height: auto; } }
    .modal-window__header .modal-window__title {
      color: #ffffff;
      padding: 1.25em 2em;
      margin-bottom: 0; }
      @media screen and (max-width: 1299px) {
        .modal-window__header .modal-window__title {
          font-size: 16px;
          padding: 2.25em 0; } }
      @media screen and (max-width: 750px) {
        .modal-window__header .modal-window__title {
          padding: .25em 0;
          text-align: center; } }
  .modal-window__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    margin-left: 60px; }
    @media screen and (max-width: 750px) {
      .modal-window__logo {
        width: 100%;
        margin-left: 0;
        padding-top: 1em; } }
    @media screen and (min-width: 480px) and (max-width: 1299px) {
      .modal-window__logo .logo__image--desktop {
        width: 150px !important;
        height: 40px !important;
        display: block !important; } }
  .modal-window__inner {
    padding: 20px;
    width: 100%;
    /*height: 65vh;*/
    overflow: hidden; }
    @media screen and (min-height: 668px) {
      .modal-window__inner {
        /*height: 70vh;*/ } }
    @media screen and (min-height: 668px) {
      .modal-window__inner {
        /*height: 75vh;*/ } }
    @media screen and (min-height: 1024px) {
      .modal-window__inner {
        /*height: 81vh;*/ } }
    @media (min-width: 768px) {
      .modal-window__inner {
        min-width: 760px; } }
    .modal-window__inner > div {
      height: 100%;
      overflow-x: auto; }
  .modal-window__title {
    width: 60%;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 1em; }
    @media screen and (max-width: 768px) {
      .modal-window__title {
        font-size: 16px; } }
    @media screen and (max-width: 750px) {
      .modal-window__title {
        width: 100%;
        padding: 1em; } }
    .modal-window__title span {
      font-weight: 800; }
  .modal-window__buttons-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 40px; }
  .modal-window__back {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #9d9d9c;
    color: #fff; }
    .modal-window__back.disabled, .modal-window__back[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .modal-window__back:not(:disabled):hover {
      background-color: #8e8e8e;
      color: #fff; }
  .modal-window__next {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #1fa2cd;
    color: #fff;
    margin-left: auto; }
    .modal-window__next.disabled, .modal-window__next[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .modal-window__next:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
  .modal-window .tooltip__inner {
    left: -267px; }
    .modal-window .tooltip__inner::before {
      left: 264px; }
    .modal-window .tooltip__inner::after {
      left: 264px; }

.slick-dots {
  display: flex !important;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0; }
  .slick-dots li {
    margin-left: 10px;
    margin-top: 8px; }
    .slick-dots li.slick-active button {
      color: #fff;
      background-color: #1fa2cd;
      border-color: #1fa2cd; }
    .slick-dots li button {
      width: 20px;
      height: 20px;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      background-color: #fff;
      border: 1px solid #c1c1c1;
      color: #666;
      font-size: 12px;
      cursor: pointer;
      text-align: center; }

.slick-slider {
  position: relative;
  display: block !important;
  -moz-box-sizing: border-box;
  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; }
  .slick-list .slick-track a {
    margin-right: .75em; }
  .slick-list .next-photos {
    padding: 0.4em; }

.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;
  outline: none; }

[dir='rtl'] .slick-slide {
  float: right; }

.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-arrow.slick-hidden {
  display: none; }

.slider-placeholder {
  padding-top: 0px;
  position: relative; }
  @media screen and (max-width: 990px) {
    .slider-placeholder {
      padding: 0 11px; } }
  .slider-placeholder .slider-range {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 18px; }
    .slider-placeholder .slider-range input {
      width: 85px;
      height: 20px;
      padding: 0 5px;
      text-align: center;
      color: #666; }
  .slider-placeholder .ui-slider {
    height: 7px;
    border: none;
    background: #bebebe; }
  .slider-placeholder .ui-slider-range {
    background: #979797; }
  .slider-placeholder .ui-slider-handle {
    width: 23px;
    height: 23px;
    margin-left: -11px;
    margin-top: -2px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #747474;
    cursor: pointer; }
  .slider-placeholder .ui-slider-text {
    position: absolute;
    top: 0;
    font-size: 12px; }
    .slider-placeholder .ui-slider-text.text-min {
      left: 0; }
    .slider-placeholder .ui-slider-text.text-max {
      right: 0; }

.ui-effects-transfer {
  border: 2px dotted #c1c1c1;
  z-index: 100; }

.user-bar {
  display: none;
  position: absolute;
  right: -60px;
  top: 42px;
  width: 254px;
  padding: 10px 10px 18px 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  @media screen and (min-width: 600px) {
    .user-bar--mobile {
      display: none; } }
  @media screen and (min-width: 600px) {
    .user-bar {
      right: -1px;
      top: 100%; } }
  .user-bar:before {
    display: block;
    position: absolute;
    right: 61px;
    top: -8px;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #ffffff transparent; }
    @media screen and (min-width: 768px) {
      .user-bar:before {
        display: none; } }
  .user-bar__title {
    padding-left: 10px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #c1c1c1; }
  .user-bar__form {
    padding-bottom: 17px;
    margin-bottom: 13px;
    border-bottom: 1px solid #c1c1c1; }
  .user-bar__row {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px; }
    .user-bar__row:last-child {
      margin-bottom: 0; }
  .user-bar__label {
    display: block;
    padding-left: 10px;
    margin-bottom: 9px;
    font-size: 14px; }
  .user-bar__input {
    display: flex;
    align-items: center;
    height: 37px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .user-bar__input::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .user-bar__input:-ms-input-placeholder {
      color: #777; }
    .user-bar__input::-webkit-input-placeholder {
      color: #777; }
    .user-bar__input[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .user-bar__input:focus {
      border-color: #424c58; }
    .user-bar__input:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  .user-bar__buttons-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 7px;
    padding-left: 10px;
    padding-right: 10px; }
  .user-bar__link {
    font-size: 12px; }
  .user-bar__button {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #4ca728;
    color: #fff;
    font-weight: 400;
    font-size: 16px; }
    .user-bar__button.disabled, .user-bar__button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .user-bar__button:not(:disabled):hover {
      background-color: #81c168;
      color: #fff; }
  .user-bar__register {
    position: relative;
    font-size: 14px; }
  .user-bar__menu {
    list-style: none;
    padding: 0;
    margin: 0; }
    .user-bar__menu-item {
      margin-bottom: 5px; }
      .user-bar__menu-item:last-child {
        margin-bottom: 0; }
    .user-bar__menu-link {
      font-size: 14px; }

.cart {
  display: none;
  position: absolute;
  right: -1px;
  top: 100%;
  width: 254px;
  padding: 10px 10px 18px 10px;
  background-color: #fff;
  border: 1px solid #c1c1c1; }
  .cart__title {
    padding-left: 10px;
    padding-bottom: 16px;
    margin-bottom: 19px;
    border-bottom: 1px solid #c1c1c1; }
  .cart__list {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #c1c1c1; }
  .cart__product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px; }
    .cart__product:last-child {
      margin-bottom: 0; }
    .cart__product-image-wrapper {
      width: 50px;
      margin-right: 15px; }
    .cart__product-text-wrapper {
      display: flex;
      flex-direction: column;
      flex: 1; }
    .cart__product-name {
      margin-bottom: 7px; }
    .cart__product-avaibility {
      width: 100%;
      margin-top: 5px;
      padding-left: 10px;
      padding-right: 10px;
      color: #4ca728; }
  .cart__total-price {
    margin-bottom: 24px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: right;
    font-size: 14px;
    font-weight: 600; }
  .cart__buttons-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-left: 10px;
    padding-right: 10px; }
  .cart__button {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 36px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #4ca728;
    color: #fff;
    font-weight: 400;
    font-size: 16px; }
    .cart__button.disabled, .cart__button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .cart__button:not(:disabled):hover {
      background-color: #81c168;
      color: #fff; }

.calculator--page {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.calculator__main-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.calculator__inner {
  margin-bottom: 20px; }

.calculator__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px; }
  @media screen and (min-width: 480px) {
    .calculator__item {
      flex-direction: row;
      align-items: baseline; } }
  .calculator__item:last-child {
    margin-bottom: 0; }
  .calculator__item-label {
    margin-bottom: 7px;
    cursor: pointer; }
    @media screen and (min-width: 480px) {
      .calculator__item-label {
        width: 200px;
        margin-right: 15px;
        margin-bottom: 0; } }
  @media screen and (min-width: 480px) {
    .calculator__item-value {
      flex: 1; } }
  .calculator__item-input {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    max-width: 250px; }
    .calculator__item-input::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .calculator__item-input:-ms-input-placeholder {
      color: #777; }
    .calculator__item-input::-webkit-input-placeholder {
      color: #777; }
    .calculator__item-input[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .calculator__item-input:focus {
      border-color: #424c58; }
    .calculator__item-input:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  .calculator__item-select {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    transition: all 300ms ease;
    background-color: #fff;
    max-width: 250px; }
    .calculator__item-select::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .calculator__item-select:-ms-input-placeholder {
      color: #777; }
    .calculator__item-select::-webkit-input-placeholder {
      color: #777; }
    .calculator__item-select[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .calculator__item-select:focus {
      border-color: #424c58; }
    .calculator__item-select:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
    .calculator__item-select:invalid {
      color: #777; }
    .calculator__item-select option {
      color: #000; }
    .calculator__item-select[value=''][disabled] {
      display: none; }

.calculator__button {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background-color: #1fa2cd;
  color: #fff;
  height: 40px;
  padding-left: 15px;
  padding-right: 15px; }
  .calculator__button.disabled, .calculator__button[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .calculator__button:not(:disabled):hover {
    background-color: #62bedc;
    color: #fff; }

.checkout-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .checkout-price__row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 7px; }
    .checkout-price__row:last-child {
      margin-bottom: 0; }
    .checkout-price__row--total .checkout-price__label {
      font-size: 24px; }
    .checkout-price__row--total .checkout-price__value {
      font-size: 24px; }
    @media screen and (min-width: 768px) {
      .checkout-price__row {
        align-items: center;
        flex-direction: row; } }
  .checkout-price__label {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    text-align: right; }
    .checkout-price__label span {
      margin-top: -1px;
      font-weight: 400;
      font-size: 12px; }
  .checkout-price__value {
    width: 190px;
    font-size: 18px;
    text-align: right;
    font-weight: 600; }

@media screen and (min-width: 1300px) {
  .modal-cart {
    width: 1145px; } }

.modal-cart__section {
  margin-bottom: 40px; }
  .modal-cart__section:last-child {
    margin-bottom: 0; }

.modal-cart__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600; }

.modal-cart__box {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  margin-bottom: 0; }

.modal-cart__price {
  margin-left: auto; }

.modal-cart__guarantee-link {
  margin: 5px 0 0 15px; }

.modal-cart__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 25px 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #c1c1c1; }
  .modal-cart__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0; }
  .modal-cart__item-price {
    font-size: 24px;
    text-align: right; }
  .modal-cart__item-add {
    display: flex;
    justify-content: flex-end;
    width: 135px; }
    .modal-cart__item-add-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #4ca728;
      color: #fff;
      height: 28px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 12px; }
      .modal-cart__item-add-button.disabled, .modal-cart__item-add-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .modal-cart__item-add-button:not(:disabled):hover {
        background-color: #81c168;
        color: #fff; }

.modal-cart__product {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .modal-cart__product {
      width: auto;
      flex: 1;
      flex-direction: row; } }
  .modal-cart__product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    margin-right: 15px; }
  .modal-cart__product-image {
    flex-shrink: 0; }
  .modal-cart__product-text-wrapper {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 600px) {
      .modal-cart__product-text-wrapper {
        flex-direction: row;
        align-items: baseline; } }
  .modal-cart__product-name {
    font-size: 18px;
    color: #000;
    text-decoration: none;
    font-weight: 600; }
  .modal-cart__product-avaibility {
    margin-top: 5px;
    color: #4ca728;
    font-weight: 600;
    font-size: 12px; }
    @media screen and (min-width: 600px) {
      .modal-cart__product-avaibility {
        margin-left: 15px;
        margin-top: 0; } }
  .modal-cart__product-salecode {
    color: #5a5a5a;
    margin-top: .5em; }
    @media screen and (min-width: 750px) {
      .modal-cart__product-salecode {
        display: flex;
        align-items: center;
        margin-left: 30px;
        margin-top: 0; } }
    .modal-cart__product-salecode span {
      color: #cc5501;
      font-weight: 800; }
    .modal-cart__product-salecode-price {
      width: 100%;
      text-align: center;
      font-size: 24px;
      color: #5a5a5a;
      opacity: .75; }
      @media screen and (min-width: 750px) {
        .modal-cart__product-salecode-price {
          width: 170px;
          margin-left: 1em;
          text-align: left; } }
      .modal-cart__product-salecode-price .detail__salecode-price {
        font-size: 24px;
        color: #5a5a5a;
        opacity: .75;
        margin-left: 1em;
        text-align: left; }

@media screen and (min-width: 768px) {
  .modal-stores {
    min-width: 1100px;
    height: 100%;
    display: flex;
    overflow: hidden; } }

.modal-stores__choose {
  display: block;
  width: 30%;
  background-color: #ededed;
  padding: 40px;
  margin: -20px 20px; }
  @media screen and (max-height: 668px) {
    .modal-stores__choose {
      overflow-x: auto; } }
  @media screen and (max-width: 767px) {
    .modal-stores__choose {
      width: 100%;
      margin: -20px 0 0 0; } }
  .modal-stores__choose-select {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    transition: all 300ms ease;
    background-color: #fff;
    max-width: 250px; }
    .modal-stores__choose-select::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .modal-stores__choose-select:-ms-input-placeholder {
      color: #777; }
    .modal-stores__choose-select::-webkit-input-placeholder {
      color: #777; }
    .modal-stores__choose-select[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .modal-stores__choose-select:focus {
      border-color: #424c58; }
    .modal-stores__choose-select:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
    .modal-stores__choose-select:invalid {
      color: #777; }
    .modal-stores__choose-select option {
      color: #000; }
    .modal-stores__choose-select[value=''][disabled] {
      display: none; }
  .modal-stores__choose--top {
    position: relative;
    margin-bottom: 20px; }
    .modal-stores__choose--top > .btn {
      position: absolute;
      bottom: -25px;
      right: 0; }
    .modal-stores__choose--top input {
      border: none;
      padding: 6px 12px; }

.modal-stores__region-title {
  font-size: 18px;
  font-weight: 800;
  border-bottom: 2px solid #ee5c23;
  width: fit-content;
  line-height: 1.75em; }

.modal-stores__region-list {
  list-style: none;
  padding: 2em 0 0 2em;
  font-size: 18px; }
  @media screen and (max-width: 767px) {
    .modal-stores__region-list {
      padding: 1em 0 0 .75em; } }
  .modal-stores__region-list a {
    color: #000000;
    line-height: 1.75em;
    cursor: pointer;
    width: fit-content; }
    .modal-stores__region-list a:hover {
      border-bottom: 2px solid #ee5c23; }
  .modal-stores__region-list .active {
    border-bottom: 2px solid #ee5c23;
    color: #ee5c23;
    font-weight: 600; }

.modal-stores__title {
  font-size: 18px;
  font-weight: 800;
  width: fit-content;
  line-height: 1.75em;
  margin-bottom: 20px; }

.modal-stores__list {
  width: 70%;
  overflow: auto; }
  @media screen and (min-width: 768px) {
    .modal-stores__list {
      padding-top: 2em; } }
  @media screen and (max-width: 1024px) {
    .modal-stores__list {
      width: auto; } }
  @media screen and (max-width: 767px) {
    .modal-stores__list {
      padding-top: 1.5em;
      padding-bottom: 1.5em; } }

.modal-stores__item {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-left: 25px;
  margin-bottom: 2em;
  width: 100%;
  justify-content: space-between; }
  @media screen and (max-width: 1025px) {
    .modal-stores__item {
      display: block; } }
  @media screen and (max-width: 767px) {
    .modal-stores__item {
      margin-bottom: 1.5em;
      padding-left: 0; } }
  .modal-stores__item-block {
    width: 100%;
    display: none; }
    @media screen and (max-width: 1025px) {
      .modal-stores__item-block {
        flex-direction: column; } }
    .modal-stores__item-block.show {
      display: flex; }
  .modal-stores__item-label {
    display: block;
    margin-block: auto;
    width: 40%;
    cursor: unset;
    padding: .5em; }
    @media screen and (max-width: 1024px) {
      .modal-stores__item-label {
        width: 100%; } }
    @media screen and (max-width: 767px) {
      .modal-stores__item-label {
        text-align: center; } }
  .modal-stores__item-link > a {
    color: #ee5c23;
    font-weight: 600;
    text-decoration: none; }
    .modal-stores__item-link > a:hover {
      text-decoration: underline; }
  .modal-stores__item-link .email {
    color: #1fa2cd !important;
    text-decoration: underline; }
  .modal-stores__item-input {
    position: absolute;
    left: 0;
    top: 18px; }
  .modal-stores__item-name {
    margin-bottom: -1px;
    font-size: 18px;
    font-weight: 600; }
  .modal-stores__item-address {
    line-height: 22px;
    font-size: 16px; }
    .modal-stores__item-address-label {
      display: block;
      width: 71%;
      cursor: unset;
      padding: .5em; }
      @media screen and (max-width: 1024px) {
        .modal-stores__item-address-label {
          width: 100%; } }
      @media screen and (max-width: 767px) {
        .modal-stores__item-address-label {
          text-align: center; } }
      .modal-stores__item-address-label > .modal-stores__item-link {
        margin-top: 18px; }
    .modal-stores__item-address-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 15px; }
  .modal-stores__item-avaibility {
    color: #46c015;
    margin-block: auto;
    width: auto;
    text-align: center; }
    @media screen and (max-width: 1024px) {
      .modal-stores__item-avaibility {
        width: 100%;
        padding: 1em 0;
        text-align: left; } }
    @media screen and (max-width: 767px) {
      .modal-stores__item-avaibility {
        text-align: center; } }
  .modal-stores__item-avaibility.red {
    color: #ff0000; }
  .modal-stores__item-avaibility.orange {
    color: #ee5c23; }
  .modal-stores__item-avaibility.grey {
    color: #808080; }
  .modal-stores__item-submit {
    margin-block: auto;
    text-align: center;
    width: 30%; }
    @media screen and (max-width: 1024px) {
      .modal-stores__item-submit {
        text-align: left;
        width: 100%; } }
    @media screen and (max-width: 767px) {
      .modal-stores__item-submit {
        text-align: center; } }
  .modal-stores__item-info {
    margin-top: 2px;
    color: #ee5c23;
    font-weight: 600; }
  .modal-stores__item-opening {
    display: block;
    width: 29%;
    cursor: unset;
    padding: 0.5em; }
    @media screen and (max-width: 1025px) {
      .modal-stores__item-opening {
        width: 100%; } }
    .modal-stores__item-opening-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 15px; }
      @media (max-width: 767px) {
        .modal-stores__item-opening-title {
          text-align: center; } }
    .modal-stores__item-opening-text {
      margin-bottom: 10px; }
    .modal-stores__item-opening-note {
      margin-bottom: 10px;
      color: #ee5c23; }
    .modal-stores__item-opening-hidden {
      display: none; }
  .modal-stores__item-detail {
    width: 100%;
    padding: 0.5em; }
    @media (max-width: 767px) {
      .modal-stores__item-detail {
        text-align: center; } }
    .modal-stores__item-detail a {
      color: #ee5c23;
      text-decoration: none;
      font-weight: bold;
      cursor: pointer; }

.row {
  display: flex;
  column-gap: 20px;
  width: 100%; }
  @media (max-width: 767px) {
    .row {
      max-width: 170px;
      margin: 0 auto; } }
  .row > div:first-child {
    width: 60px;
    font-weight: bold; }

.btn {
  padding: 0 4px;
  border-radius: 3px;
  border: 1px solid transparent; }
  .btn:hover {
    box-shadow: 1px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #c1c1c1; }

.modal-gallery {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1175px;
  padding-bottom: 150px;
  height: 100%; }
  @media screen and (min-width: 990px) {
    .modal-gallery {
      align-items: center;
      flex-direction: row;
      padding-right: 300px;
      padding-bottom: 0; } }
  .modal-gallery__main {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 100%;
    border-bottom: 1px solid #c1c1c1; }
    @media screen and (max-width: 990px) {
      .modal-gallery__main {
        max-height: 60vh; } }
    @media screen and (min-width: 990px) {
      .modal-gallery__main {
        border-right: 1px solid #c1c1c1;
        border-bottom: none; } }
    .modal-gallery__main .slick-slider {
      height: 100%; }
    .modal-gallery__main .slick-list {
      height: 100%; }
    .modal-gallery__main .slick-track {
      display: flex;
      align-items: center;
      height: 100%; }
    .modal-gallery__main .slick-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%; }
    .modal-gallery__main .slick-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 95px;
      position: absolute;
      top: 50%;
      margin-top: -47px;
      z-index: 2;
      background-color: #ee5c23;
      cursor: pointer; }
      .modal-gallery__main .slick-arrow:before {
        content: "";
        display: inline-block;
        vertical-align: top;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 0 7px 7px;
        border-color: transparent transparent transparent #fff; }
    .modal-gallery__main .slick-prev {
      left: -1px;
      border-top-left-radius: 0;
      border-top-right-radius: 3px;
      border-bottom-right-radius: 3px;
      border-bottom-left-radius: 0;
      -webkit-border-top-left-radius: 0;
      -webkit-border-top-right-radius: 3px;
      -webkit-border-bottom-right-radius: 3px;
      -webkit-border-bottom-left-radius: 0;
      -moz-border-radius-topleft: 0;
      -moz-border-radius-topright: 3px;
      -moz-border-radius-bottomright: 3px;
      -moz-border-radius-bottomleft: 0; }
      .modal-gallery__main .slick-prev:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
    .modal-gallery__main .slick-next {
      right: -1px;
      border-top-left-radius: 3px;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 3px;
      -webkit-border-top-left-radius: 3px;
      -webkit-border-top-right-radius: 0;
      -webkit-border-bottom-right-radius: 0;
      -webkit-border-bottom-left-radius: 3px;
      -moz-border-radius-topleft: 3px;
      -moz-border-radius-topright: 0;
      -moz-border-radius-bottomright: 0;
      -moz-border-radius-bottomleft: 3px; }
    .modal-gallery__main .slick-dots {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      position: absolute;
      left: 0;
      top: 100%;
      height: 150px;
      overflow: auto;
      max-width: 100%; }
      @media screen and (min-width: 990px) {
        .modal-gallery__main .slick-dots {
          flex-direction: column;
          right: -300px;
          left: auto;
          top: 0;
          width: 300px;
          max-height: 100%;
          height: 100%; } }
      .modal-gallery__main .slick-dots li {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% / 4);
        height: 150px;
        cursor: pointer;
        text-align: center; }
        @media screen and (min-width: 990px) {
          .modal-gallery__main .slick-dots li {
            margin: 10px 0;
            height: 100px;
            width: auto; } }
        .modal-gallery__main .slick-dots li img {
          max-height: 100px; }
    .modal-gallery__main-item {
      text-align: center; }
      .modal-gallery__main-item .pict {
        height: inherit; }
      .modal-gallery__main-item img {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        max-height: 60vh;
        padding: 20px; }
  .modal-gallery__thumbs {
    display: none;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #c1c1c1; }
    @media screen and (min-width: 990px) {
      .modal-gallery__thumbs {
        display: block;
        width: 300px;
        padding: 0 20px;
        border-top: none;
        border-left: 1px solid #c1c1c1; } }
    .modal-gallery__thumbs .slick-list {
      visibility: visible; }
      .modal-gallery__thumbs .slick-list .modal-gallery__thumbs-item {
        opacity: 0;
        visibility: hidden; }
        .modal-gallery__thumbs .slick-list .modal-gallery__thumbs-item.slick-active {
          opacity: 1;
          visibility: visible; }
    .modal-gallery__thumbs-list:not(.slick-initialized) {
      display: flex; }
      @media screen and (min-width: 990px) {
        .modal-gallery__thumbs-list:not(.slick-initialized) {
          flex-direction: column; } }
    .modal-gallery__thumbs-item {
      margin-right: 10px;
      margin-left: 10px;
      height: auto;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      text-align: center;
      cursor: pointer; }
      @media screen and (min-width: 990px) {
        .modal-gallery__thumbs-item {
          margin: 10px 0; } }
    .modal-gallery__thumbs-image {
      max-height: 100px; }

/*
.modal-gallery {
	display: flex;
	flex-direction: column;

	margin-left: -20px;
	margin-right: -20px;
	max-width: 1175px;

	@media screen and (min-width: 990px){
		align-items: center;
		flex-direction: row;
	}

	&__main {
		flex: 1;
		min-width: 0;
		position: relative;

		.slick {
			&-track {
				display: flex;
				align-items: center;
			}

			&-slide {
				display: flex;
				align-items: center;
				justify-content: center;
			}

			&-arrow {
				display: flex;
				align-items: center;
				justify-content: center;

				width: 36px;
				height: 95px;
				position: absolute;
				top: 50%;
				margin-top: -47px;
				z-index: 2;

				background-color: $color-orange;
				cursor: pointer;

				&:before {
					content: "";
					@include arrow-right($color-white, 7px, 14px);
				}
			}

			&-prev {
				left: -1px;

				@include border-radiuses(0, 3px, 3px, 0);

				&:before {
					@include rotate(180deg);
				}
			}

			&-next {
				right: -1px;

				@include border-radiuses(3px, 0, 0, 3px);
			}
		}

		&-item {
			text-align: center;

			img {
				margin-left: auto;
				margin-right: auto;
			}
		}
	}

	&__thumbs {
		display: none;

		padding-top: 20px;
		padding-bottom: 20px;

		border-top: 1px solid $border-color;

		@media screen and (min-width: 990px){
			display: block;
			width: 300px;
			// max-height: 550px;
			// overflow: auto;
			padding: 0 20px;

			border-top: none;
			border-left: 1px solid $border-color;
		}

		.slick-list {
			overflow: visible;

			.modal-gallery__thumbs-item {
				opacity: 0;
				visibility: hidden;

				&.slick-active {
					opacity: 1;
					visibility: visible;
				}
			}
		}

		&-list {
			&:not(.slick-initialized){
				display: flex;

				@media screen and (min-width: 990px){
					flex-direction: column;
				}
			}
		}

		&-item {
			margin-right: 10px;
			margin-left: 10px;
			height: auto;

			@include transition(all 300ms ease);
			text-align: center;
			cursor: pointer;

			@media screen and (min-width: 990px){
				margin: 10px 0;
			}
		}

		&-image {
			max-height: 100px;
		}
	}
}
*/
@media screen and (min-width: 768px) {
  .modal-shipping {
    width: 710px; } }

.modal-shipping__title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600; }

.modal-shipping__text {
  margin-bottom: 25px;
  font-size: 14px;
  color: #666; }

.modal-shipping__section {
  margin-bottom: 30px; }
  .modal-shipping__section:last-child {
    margin-bottom: 0; }

.modal-shipping__wrapper {
  padding: 7px 20px;
  max-height: 120px;
  overflow-y: auto;
  border: 1px solid #c1c1c1; }

.modal-shipping__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 11px;
  margin-bottom: 7px;
  border-bottom: 1px solid #c1c1c1; }
  @media screen and (min-width: 480px) {
    .modal-shipping__item {
      flex-direction: row;
      justify-content: space-between;
      align-items: baseline; } }
  .modal-shipping__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none; }

.modal-shipping__value {
  color: #4ca728; }

.modal-delivery__input-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; }

.modal-delivery__input {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  max-width: 250px; }
  .modal-delivery__input::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .modal-delivery__input:-ms-input-placeholder {
    color: #777; }
  .modal-delivery__input::-webkit-input-placeholder {
    color: #777; }
  .modal-delivery__input[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .modal-delivery__input:focus {
    border-color: #424c58; }
  .modal-delivery__input:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.modal-delivery__text {
  text-align: center;
  font-size: 18px;
  font-weight: 600; }
  .modal-delivery__text--green {
    color: #4ca728; }
  .modal-delivery__text--red {
    color: #ff0000; }

.tabs__head {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #1fa2cd; }
  .tabs__head-item {
    height: 24px;
    padding: 1px 7px 0 7px;
    margin-right: 6px;
    -webkit-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
    border: 1px solid #c1c1c1;
    border-bottom: none;
    background-color: #fff;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none; }
    .tabs__head-item:not(.tabs__head-item--active):hover {
      background-color: #f1f1f1; }
    .tabs__head-item--active {
      background-color: #1fa2cd;
      border-color: #1fa2cd;
      color: #fff; }

.table__head {
  display: none; }
  @media screen and (min-width: 990px) {
    .table__head {
      display: block; }
      .table__head .table__col {
        padding-top: 5px;
        padding-bottom: 5px;
        background-color: #f5f5f5;
        font-size: 18px;
        font-weight: 600; } }

.table__body .table__col {
  padding: 5px 10px; }
  @media screen and (min-width: 990px) {
    .table__body .table__col {
      padding-top: 17px;
      padding-bottom: 17px; } }

.table__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  border: 1px solid #c1c1c1; }
  @media screen and (min-width: 990px) {
    .table__row {
      flex-direction: row;
      margin-bottom: 0;
      border: none; } }

.table__col {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: right; }
  @media screen and (min-width: 990px) {
    .table__col {
      justify-content: center;
      align-items: center;
      padding-left: 20px;
      padding-right: 20px;
      margin-bottom: -1px;
      border: 1px solid #c1c1c1;
      border-right: none;
      text-align: center; }
      .table__col:last-child {
        border-right: 1px solid #c1c1c1; } }
  .table__col:before {
    margin-right: 5px;
    content: attr(data-label) ":";
    font-weight: 600;
    text-align: left; }
    @media screen and (min-width: 990px) {
      .table__col:before {
        display: none; } }
  @media screen and (min-width: 990px) {
    .table__col--flexible {
      flex: 1; } }
  @media screen and (min-width: 990px) {
    .table__col--w140 {
      width: 140px; } }
  @media screen and (min-width: 990px) {
    .table__col--w160 {
      width: 160px; } }
  @media screen and (min-width: 990px) {
    .table__col--w190 {
      width: 190px; } }
  @media screen and (min-width: 990px) {
    .table__col--w200 {
      width: 200px; } }
  @media screen and (min-width: 990px) {
    .table__col--w240 {
      width: 240px; } }
  @media screen and (min-width: 990px) {
    .table__col--w250 {
      width: 250px; } }
  @media screen and (min-width: 990px) {
    .table__col--align-left {
      justify-content: flex-start;
      text-align: left; } }

.tags {
  display: flex;
  flex-wrap: wrap; }
  .tags__item {
    height: 25px;
    margin-right: 6px;
    margin-bottom: 6px;
    padding: 0 5px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    font-size: 14px;
    border: 1px solid #1fa2cd;
    color: #1fa2cd;
    text-decoration: none; }
    .tags__item:hover {
      color: #fff;
      background-color: #1fa2cd; }

.tooltip {
  display: inline-flex;
  position: relative;
  margin-left: 5px; }
  .tooltip:hover .tooltip__inner {
    display: block; }
  .tooltip__icon {
    cursor: pointer; }
    .tooltip__icon path {
      fill: #ee5c23; }
  .tooltip__inner {
    display: none;
    position: absolute;
    left: -11px;
    top: 100%;
    width: 300px;
    padding: 8px;
    z-index: 3;
    margin-top: 10px;
    line-height: 16px;
    color: #000;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    font-size: 12px;
    font-weight: 400; }
    .tooltip__inner:before, .tooltip__inner:after {
      position: absolute;
      left: 7px;
      top: -9px;
      width: 0;
      height: 0;
      content: "";
      border-style: solid;
      border-width: 0 9px 9px 9px; }
    .tooltip__inner:before {
      border-color: transparent transparent #c1c1c1 transparent; }
    .tooltip__inner:after {
      margin-top: 1px;
      border-color: transparent transparent #fff transparent; }

.tooltip2 {
  position: relative;
  text-decoration: underline;
  cursor: help !important; }
  .tooltip2:hover:before {
    position: absolute;
    left: 8px;
    top: 20px;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent #c1c1c1 transparent; }
  .tooltip2:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    left: 0;
    top: 110%;
    width: 300px;
    padding: 8px;
    z-index: 2;
    margin-top: 3px;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    font-size: 12px; }
  .tooltip2 div:before {
    position: absolute;
    left: 8px;
    top: 22px;
    width: 0;
    height: 0;
    content: "";
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent #fff transparent;
    z-index: 99; }

.miele-stripe {
  display: flex;
  justify-content: center; }
  .miele-stripe__image-wrapper {
    display: inline-flex;
    align-items: center;
    min-height: 52px; }

.main-slider {
  margin-bottom: 20px; }
  .main-slider .slick-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -12px;
    transition: all 300ms ease;
    cursor: pointer;
    background-color: white;
    opacity: .4;
    padding: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }
    @media screen and (min-width: 600px) {
      .main-slider .slick-arrow {
        margin-top: -22px; } }
    .main-slider .slick-arrow:hover {
      opacity: .8; }
    .main-slider .slick-arrow--prev {
      left: 0; }
      @media screen and (min-width: 600px) {
        .main-slider .slick-arrow--prev {
          left: 10px; } }
    .main-slider .slick-arrow--next {
      right: 0; }
      @media screen and (min-width: 600px) {
        .main-slider .slick-arrow--next {
          right: 10px; } }
    @media (max-width: 600px) {
      .main-slider .slick-arrow img {
        height: 24px; } }

.newHpBanner {
  margin-bottom: 20px; }

.homepage__banner {
  margin-bottom: 20px; }

.banner {
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.text-decoration-none {
  text-decoration: none !important; }

.position-relative {
  position: relative !important; }

.content-over {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  bottom: 0;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

figure {
  margin: 0 !important; }

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

.d-flex {
  display: flex !important; }

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

.align-items-end {
  align-items: flex-end !important; }

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

.h-100 {
  height: 100% !important; }

.w-100 {
  width: 100% !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

@media (min-width: 768px) {
  .align-items-md-center {
    align-items: center !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .d-md-none {
    display: none !important; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; } }

.competition-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.competition__section {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.competition__item {
  margin-bottom: 18px; }
  .competition__item:last-child {
    margin-bottom: 0; }
  .competition__item-title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600; }
  .competition__item-inner {
    display: flex;
    flex-wrap: wrap; }
    @media screen and (min-width: 990px) {
      .competition__item-inner {
        padding-left: 55px; } }
  .competition__item-answer {
    position: relative;
    margin-bottom: 10px;
    margin-right: 30px; }
    @media screen and (min-width: 990px) {
      .competition__item-answer {
        margin-right: 90px; } }
    .competition__item-answer:last-child {
      margin-right: 0; }
    .competition__item-answer-input {
      position: absolute;
      left: 0;
      top: 6px;
      cursor: pointer; }
    .competition__item-answer-select {
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      transition: all 300ms ease;
      background-color: #fff; }
      .competition__item-answer-select::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .competition__item-answer-select:-ms-input-placeholder {
        color: #777; }
      .competition__item-answer-select::-webkit-input-placeholder {
        color: #777; }
      .competition__item-answer-select[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .competition__item-answer-select:focus {
        border-color: #424c58; }
      .competition__item-answer-select:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
      .competition__item-answer-select:invalid {
        color: #777; }
      .competition__item-answer-select option {
        color: #000; }
      .competition__item-answer-select[value=''][disabled] {
        display: none; }
    .competition__item-answer-textarea {
      display: flex;
      align-items: center;
      height: 75px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      resize: none;
      padding-top: 10px;
      padding-bottom: 10px; }
      .competition__item-answer-textarea::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .competition__item-answer-textarea:-ms-input-placeholder {
        color: #777; }
      .competition__item-answer-textarea::-webkit-input-placeholder {
        color: #777; }
      .competition__item-answer-textarea[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .competition__item-answer-textarea:focus {
        border-color: #424c58; }
      .competition__item-answer-textarea:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
    .competition__item-answer-label {
      padding-left: 25px;
      font-size: 18px;
      font-weight: 600; }

.competition__data-row {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 600px) {
    .competition__data-row {
      flex-direction: row;
      margin-left: -15px;
      margin-right: -15px; } }

.competition__data-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  margin-bottom: 30px;
  width: 100%; }
  @media screen and (min-width: 600px) {
    .competition__data-item {
      flex-direction: column;
      margin-left: 15px;
      margin-right: 15px;
      width: calc(100% / 3 - 30px); } }
  @media screen and (min-width: 990px) {
    .competition__data-item {
      flex-direction: row; } }

.competition__data-label {
  width: 90px;
  font-weight: 600; }

.competition__data-value {
  flex: 1; }

.competition__data-input {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .competition__data-input::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .competition__data-input:-ms-input-placeholder {
    color: #777; }
  .competition__data-input::-webkit-input-placeholder {
    color: #777; }
  .competition__data-input[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .competition__data-input:focus {
    border-color: #424c58; }
  .competition__data-input:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.competition__data-policy {
  margin-bottom: 20px;
  position: relative; }
  .competition__data-policy-label {
    padding-left: 25px; }
  .competition__data-policy-input {
    position: absolute;
    left: 0;
    top: 4px; }

.competition__data-button {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: 43px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
  background-color: #1fa2cd;
  color: #fff; }
  .competition__data-button.disabled, .competition__data-button[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .competition__data-button:not(:disabled):hover {
    background-color: #62bedc;
    color: #fff; }

.discussion__list {
  margin-bottom: 25px; }

.discussion__item {
  padding-bottom: 13px;
  margin-bottom: 12px;
  border-bottom: 1px solid #c1c1c1; }
  .discussion__item--respond {
    padding-left: 30px; }
  .discussion__item:last-child {
    margin-bottom: 0; }
  .discussion__item-text {
    margin-bottom: 16px; }
  .discussion__item-bottom {
    display: flex;
    align-items: baseline;
    padding-left: 5px; }
  .discussion__item-info {
    color: #666; }
    .discussion__item-info a {
      text-decoration: none; }
      .discussion__item-info a:hover {
        text-decoration: underline; }
  .discussion__item-button {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 28px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    background-color: #1fa2cd;
    color: #fff;
    margin-left: auto; }
    .discussion__item-button.disabled, .discussion__item-button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .discussion__item-button:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }

.discussion__add-new {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  background-color: #4ca728;
  color: #fff; }
  .discussion__add-new.disabled, .discussion__add-new[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .discussion__add-new:not(:disabled):hover {
    background-color: #81c168;
    color: #fff; }

.discussion__form {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease; }
  .discussion__form--active {
    max-height: 1000px; }
  .discussion__form-inner {
    padding-top: 30px; }
  .discussion__form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; }
    @media screen and (min-width: 480px) {
      .discussion__form-row {
        flex-direction: row; } }
  .discussion__form-label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600; }
    @media screen and (min-width: 480px) {
      .discussion__form-label {
        padding-top: 12px;
        margin-bottom: 0;
        width: 150px; } }
  @media screen and (min-width: 480px) {
    .discussion__form-value {
      flex: 1;
      max-width: 500px; } }
  .discussion__form-input {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .discussion__form-input::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .discussion__form-input:-ms-input-placeholder {
      color: #777; }
    .discussion__form-input::-webkit-input-placeholder {
      color: #777; }
    .discussion__form-input[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .discussion__form-input:focus {
      border-color: #424c58; }
    .discussion__form-input:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  .discussion__form-textarea {
    display: flex;
    align-items: center;
    height: 75px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    resize: none;
    padding-top: 10px;
    padding-bottom: 10px; }
    .discussion__form-textarea::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .discussion__form-textarea:-ms-input-placeholder {
      color: #777; }
    .discussion__form-textarea::-webkit-input-placeholder {
      color: #777; }
    .discussion__form-textarea[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .discussion__form-textarea:focus {
      border-color: #424c58; }
    .discussion__form-textarea:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  @media screen and (min-width: 480px) {
    .discussion__form-buttons-wrapper {
      padding-left: 150px; } }
  .discussion__form-button {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #1fa2cd;
    color: #fff; }
    .discussion__form-button.disabled, .discussion__form-button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .discussion__form-button:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }

.popup-bottom {
  z-index: 9;
  position: fixed;
  right: 15px;
  bottom: 10px;
  max-width: 290px; }

@keyframes slideUp {
  0% {
    transform: translateY(100%); }
  100% {
    transform: translateY(0%); } }
  @media screen and (min-width: 768px) {
    .popup-bottom {
      max-width: 620px;
      width: 100%;
      max-height: 320px;
      right: 30px; } }
  .popup-bottom__close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d7dfe2;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .popup-bottom__close {
        width: 30px;
        height: 30px;
        right: 10px;
        top: 10px; } }
    .popup-bottom__close .icon {
      width: 11px;
      height: 11px; }
      @media screen and (min-width: 768px) {
        .popup-bottom__close .icon {
          width: 15px;
          height: 15px; } }
      .popup-bottom__close .icon svg {
        left: 5px;
        top: -2.5px; }
        @media screen and (min-width: 768px) {
          .popup-bottom__close .icon svg {
            left: 7.5px;
            top: 2.5px; } }

.box-newsletter__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: center; }

.box-newsletter__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.box-newsletter__input {
  display: flex;
  align-items: center;
  height: 40px;
  width: 100%;
  min-width: 0;
  padding: 0 10px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  margin-bottom: 13px; }
  .box-newsletter__input::-moz-placeholder {
    color: #777;
    opacity: 1; }
  .box-newsletter__input:-ms-input-placeholder {
    color: #777; }
  .box-newsletter__input::-webkit-input-placeholder {
    color: #777; }
  .box-newsletter__input[disabled] {
    background-color: #f8f8f8;
    cursor: not-allowed;
    border-color: #bbb; }
  .box-newsletter__input:focus {
    border-color: #424c58; }
  .box-newsletter__input:not(.ng-pristine).ng-invalid {
    border-color: #ff0000;
    background-color: #fff0f0; }

.box-newsletter__label {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px; }
  .box-newsletter__label-input {
    position: absolute;
    left: 0;
    top: 2px; }

.box-newsletter__button {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background-color: #1fa2cd;
  color: #fff;
  height: 28px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px; }
  .box-newsletter__button.disabled, .box-newsletter__button[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .box-newsletter__button:not(:disabled):hover {
    background-color: #62bedc;
    color: #fff; }

@media screen and (min-width: 990px) {
  .bottom-bar {
    height: 60px; } }

.bottom-bar--fixed .bottom-bar__inner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  z-index: 10; }

.bottom-bar__inner {
  background-color: #747474; }
  .bottom-bar__inner-in {
    display: flex;
    flex-direction: column;
    padding-top: 20px; }
    @media screen and (min-width: 990px) {
      .bottom-bar__inner-in {
        align-items: center;
        flex-direction: row;
        height: 60px;
        padding-top: 0; } }

.bottom-bar__right {
  display: flex;
  align-items: baseline;
  justify-content: space-between; }
  @media screen and (min-width: 990px) {
    .bottom-bar__right {
      justify-content: flex-start;
      margin-left: auto;
      height: 100%; } }

.bottom-bar__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; }
  @media screen and (min-width: 990px) {
    .bottom-bar__info {
      align-items: center;
      flex-direction: row;
      margin-bottom: 0; } }
  .bottom-bar__info-item {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff; }
    @media screen and (min-width: 990px) {
      .bottom-bar__info-item {
        padding-right: 18px;
        margin-right: 17px;
        margin-bottom: 0; } }
    .bottom-bar__info-item:hover {
      text-decoration: underline; }
    @media screen and (min-width: 990px) {
      .bottom-bar__info-item:after {
        position: absolute;
        right: 0;
        top: -3px;
        width: 1px;
        height: 40px;
        content: "";
        background-color: #fff; } }
    .bottom-bar__info-item:last-child {
      padding-right: 0;
      margin-right: 0;
      margin-bottom: 0; }
      .bottom-bar__info-item:last-child:after {
        display: none; }
  .bottom-bar__info-icon-wrapper {
    display: flex;
    justify-content: center;
    width: 50px;
    margin-right: 12px; }
    @media screen and (min-width: 990px) {
      .bottom-bar__info-icon-wrapper {
        width: auto; } }
  .bottom-bar__info-icon path {
    fill: #fff; }

.bottom-bar__snap {
  display: none;
  position: relative;
  padding-right: 27px;
  color: #fff;
  text-decoration: none;
  cursor: pointer; }
  @media screen and (min-width: 990px) {
    .bottom-bar__snap {
      display: block;
      margin-left: 105px; } }
  .bottom-bar__snap:after {
    position: absolute;
    right: 0;
    top: 8px;
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #fff transparent transparent transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .bottom-bar__snap:hover {
    text-decoration: underline; }

.bottom-bar__compare {
  display: flex;
  align-items: center;
  padding: 13px;
  background-color: #1fa2cd;
  color: #fff;
  text-decoration: none; }
  @media screen and (min-width: 990px) {
    .bottom-bar__compare {
      height: 60px;
      padding-top: 0;
      padding-bottom: 0; } }
  .bottom-bar__compare-inner {
    display: flex;
    align-items: baseline; }
  .bottom-bar__compare-count {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    border-radius: 50%;
    text-align: center;
    background-color: #fff;
    color: #1fa2cd; }

.content {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f5f5f5; }

.logo__image {
  -webkit-transition: width 300ms ease;
  -o-transition: width 300ms ease;
  transition: width 300ms ease;
  overflow: visible !important; }
  .logo__image--responsive {
    width: 35px;
    overflow: visible !important; }
    @media screen and (min-width: 480px) {
      .logo__image--responsive {
        display: none; } }
    .logo__image--responsive path {
      fill: #fff; }
  .logo__image--desktop {
    display: none; }
    @media screen and (min-width: 480px) {
      .logo__image--desktop {
        width: 150px;
        height: 40px;
        display: block; } }
    @media screen and (min-width: 768px) {
      .logo__image--desktop {
        width: 220px;
        height: 56px; } }
    @media screen and (min-width: 990px) {
      .logo__image--desktop {
        width: auto; } }
    .logo__image--desktop path {
      fill: #fff; }

.search {
  width: 100%; }
  .search__inner {
    display: flex;
    position: relative;
    height: 50px;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .search__inner {
        height: 40px;
        border: 1px solid #c1c1c1; } }
  .search__input {
    width: 100%;
    height: 100%;
    padding-right: 40px;
    padding-left: 15px;
    border: none;
    background-color: transparent; }
  .search__button {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 50px;
    border: none;
    background-color: transparent; }
    @media screen and (min-width: 990px) {
      .search__button {
        height: 100%; } }
    .search__button-icon path {
      fill: #ee5c23; }

.searchBox .persoo-ac-search-bar__input {
  font-size: 16px; }

.header {
  display: block;
  position: relative;
  z-index: 3;
  background-color: #ee5c23; }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px; }
    @media screen and (min-width: 768px) {
      .header__inner {
        height: 75px; } }
    @media screen and (min-width: 990px) {
      .header__inner {
        height: 100px; } }
  .header__right {
    display: flex; }
  @media screen and (min-width: 990px) {
    .header__responsive-menu {
      display: none; } }
  .header__responsive-menu-icon--close {
    display: none; }
  .header__responsive-menu-icon path {
    fill: #fff; }
  .header__logo {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translate(0%, -50%); }
    @media screen and (min-width: 600px) {
      .header__logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); } }
    @media screen and (min-width: 990px) {
      .header__logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none; } }
  .header__search {
    display: none;
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .header__search {
        top: 75px; } }
    @media screen and (min-width: 990px) {
      .header__search {
        display: block;
        position: relative;
        top: 0;
        width: 400px; } }
    .header__search--active {
      display: block; }
  .header__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 6px;
    margin-right: 12px;
    position: relative; }
    @media screen and (min-width: 360px) {
      .header__item {
        margin-right: 15px; } }
    @media screen and (min-width: 600px) {
      .header__item--user {
        display: none; } }
    @media screen and (min-width: 990px) {
      .header__item--search {
        display: none; } }
    .header__item--moje-kava {
      display: none; }
      @media screen and (min-width: 600px) {
        .header__item--moje-kava {
          display: block; } }
      .header__item--moje-kava .header__item-image {
        height: 24px;
        width: 24px;
        position: relative;
        top: -4px; }
        .header__item--moje-kava .header__item-image--articles {
          top: -2px; }
        @media screen and (min-width: 990px) {
          .header__item--moje-kava .header__item-image {
            height: 28px;
            width: 28px;
            top: -2px; }
            .header__item--moje-kava .header__item-image--articles {
              top: 0px; } }
    .header__item--leaflet {
      display: none; }
      @media screen and (min-width: 600px) {
        .header__item--leaflet {
          display: block; } }
    .header__item--expert-klub .header__item-image {
      height: 24px;
      width: 24px;
      position: relative;
      top: -4px; }
      @media screen and (min-width: 990px) {
        .header__item--expert-klub .header__item-image {
          height: 28px;
          width: 28px;
          top: -2px; } }
    @media screen and (min-width: 990px) {
      .header__item--cart {
        padding-left: 25px;
        padding-right: 25px; }
        .header__item--cart:not(.header__item--empty) {
          border: 1px solid transparent;
          border-bottom: none; } }
    @media screen and (min-width: 990px) {
      .header__item--cart:not(.header__item--empty):hover {
        background-color: #fff;
        border-color: #c1c1c1; }
        .header__item--cart:not(.header__item--empty):hover:before {
          position: absolute;
          z-index: 3;
          left: 0;
          bottom: -1px;
          width: 100%;
          height: 1px;
          content: "";
          background-color: #fff; }
        .header__item--cart:not(.header__item--empty):hover .header__item-text {
          color: #ee5c23; }
        .header__item--cart:not(.header__item--empty):hover .cart {
          display: block; } }
    .header__item-amount {
      position: absolute;
      right: -8px;
      top: 2px;
      height: 16px;
      min-width: 16px;
      border-radius: 50%;
      text-align: center;
      background-color: #747474;
      color: #fff;
      font-size: 10px; }
      @media screen and (min-width: 990px) {
        .header__item-amount {
          height: 22px;
          min-width: 22px;
          right: 10px;
          top: 32px;
          font-size: 16px; } }
    .header__item:last-child {
      margin-right: 0; }
    .header__item-link {
      color: #fff;
      text-decoration: none; }
    @media screen and (min-width: 990px) {
      .header__item-image-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        margin-bottom: 1px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 50%;
        background-color: #fff; } }
    @media screen and (max-width: 990px) {
      .header__item-image {
        width: 20px;
        height: 20px; } }
    .header__item-image path {
      fill: #fff; }
      @media screen and (min-width: 990px) {
        .header__item-image path {
          fill: #ee5c23; } }
    .header__item-text {
      display: none; }
      @media screen and (min-width: 990px) {
        .header__item-text {
          display: block;
          color: #fff;
          text-align: center; } }

.footer-categories {
  margin-bottom: 20px; }
  .footer-categories__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0; }
    @media screen and (min-width: 480px) {
      .footer-categories__list {
        flex-direction: row;
        flex-wrap: wrap; } }
  .footer-categories__item {
    width: 100%;
    margin-bottom: 25px; }
    @media screen and (min-width: 480px) {
      .footer-categories__item {
        width: calc(100% / 2 - 1px); } }
    @media screen and (min-width: 600px) {
      .footer-categories__item {
        width: calc(100% / 3 - 1px); } }
    @media screen and (min-width: 990px) {
      .footer-categories__item {
        margin-bottom: 0;
        width: calc(100% / 6 - 1px); } }
  .footer-categories__link {
    color: #000;
    text-decoration: none; }
    .footer-categories__link:hover {
      text-decoration: underline; }
  .footer-categories__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 9px; }
    .footer-categories__menu-item {
      margin-bottom: 4px; }
      .footer-categories__menu-item:last-child {
        margin-bottom: 0; }
    .footer-categories__menu-link {
      color: #666;
      text-decoration: none;
      font-size: 14px; }
      .footer-categories__menu-link:hover {
        text-decoration: underline; }

.footer-links {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 600px) {
    .footer-links {
      flex-direction: row; } }
  .footer-links__col {
    margin-bottom: 25px; }
    @media screen and (min-width: 600px) {
      .footer-links__col {
        width: calc(100% / 3);
        margin-bottom: 0; } }
  .footer-links__title {
    margin-bottom: 9px; }
  .footer-links__list {
    list-style: none;
    padding: 0;
    margin: 0; }
  .footer-links__item {
    margin-bottom: 4px; }
    .footer-links__item:last-child {
      margin-bottom: 0; }
  .footer-links__link {
    color: #666;
    font-size: 14px;
    text-decoration: none; }
    .footer-links__link:hover {
      text-decoration: underline; }

.footer {
  padding-top: 43px;
  margin-bottom: 20px;
  border-top: 1px solid #c1c1c1; }
  .footer__inner {
    padding: 20px;
    border: 1px solid #c1c1c1; }
  .footer__orange-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: -20px -20px 33px -20px;
    padding: 25px;
    background-color: #ee5c23; }
    @media screen and (min-width: 990px) {
      .footer__orange-box {
        flex-direction: row;
        flex-wrap: wrap;
        height: 100px;
        padding: 0 25px; } }
  @media screen and (min-width: 990px) {
    .footer__socials {
      margin-left: auto; } }
  .footer__socials-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 50%;
    background-color: #fff; }
    .footer__socials-item:last-child {
      margin-right: 0; }
  .footer__socials-icon path {
    fill: #ee5c23; }
  .footer__logo {
    position: relative;
    margin-bottom: 15px; }
    @media screen and (min-width: 990px) {
      .footer__logo {
        padding-right: 28px;
        margin-right: 44px;
        margin-bottom: 0; }
        .footer__logo:before {
          position: absolute;
          right: 0;
          top: -1px;
          width: 1px;
          height: 50px;
          content: "";
          background-color: #fff; } }
    .footer__logo-image {
      width: 195px; }
      .footer__logo-image path {
        fill: #fff; }
  .footer__bottom {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .footer__bottom {
        justify-content: space-between;
        flex-direction: row; } }
  @media screen and (min-width: 600px) {
    .footer__links {
      margin-bottom: 35px; } }
  @media screen and (min-width: 990px) {
    .footer__links {
      flex: 1; } }
  @media screen and (min-width: 990px) {
    .footer__facebook {
      width: 247px;
      margin-right: 60px; } }
  @media screen and (min-width: 990px) {
    .footer__logos-copyright {
      width: 255px; } }
  .footer__logos {
    display: flex;
    align-items: flex-end;
    margin-bottom: 30px; }
    @media screen and (min-width: 990px) {
      .footer__logos {
        justify-content: space-between; } }
    .footer__logos-item {
      margin-right: 30px; }
      @media screen and (min-width: 990px) {
        .footer__logos-item {
          margin-right: 0; } }
      .footer__logos-item:last-child {
        margin-right: 0; }
    .footer__logos-image {
      max-height: 85px; }
  .footer__copyright {
    line-height: 17px;
    font-size: 14px;
    color: #666; }

.info-bar {
  display: none; }
  @media screen and (min-width: 600px) {
    .info-bar {
      display: block;
      position: relative;
      z-index: 5; }
      .info-bar__inner {
        display: flex;
        justify-content: flex-end;
        height: 40px; }
      .info-bar__icon {
        position: relative;
        top: -1px;
        margin-right: 7px; }
        .info-bar__icon path {
          fill: #ee5c23; }
      .info-bar__item {
        display: flex;
        align-items: center;
        margin-right: 5px;
        padding-left: 10px;
        padding-right: 10px;
        position: relative;
        color: #000;
        text-decoration: none; }
        .info-bar__item:hover {
          text-decoration: underline; }
        .info-bar__item--user {
          border: 1px solid transparent;
          border-bottom: none; }
          .info-bar__item--user:hover {
            border-color: #c1c1c1;
            text-decoration: none;
            /*.user-bar {
						display: block;
					}*/ }
            .info-bar__item--user:hover:before {
              position: absolute;
              z-index: 3;
              left: 0;
              bottom: -1px;
              width: 100%;
              height: 1px;
              content: "";
              background-color: #fff; }
        .info-bar__item:last-child {
          margin-right: 0; } }

.menu {
  top: 50px;
  max-height: calc(100vh - 50px);
  overflow-y: auto; }
  @media screen and (max-width: 990px) {
    .menu {
      width: 100%;
      position: absolute;
      left: 0;
      z-index: 4;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      background-color: #fff;
      transform: translateX(-100%); } }
  @media screen and (min-width: 600px) {
    .menu {
      top: 90px;
      max-height: calc(100vh - 90px); } }
  @media screen and (min-width: 768px) {
    .menu {
      top: 115px;
      max-height: calc(100vh - 115px); } }
  @media screen and (min-width: 990px) {
    .menu {
      position: relative;
      max-height: none;
      overflow-y: visible;
      z-index: 2;
      top: 0;
      border-bottom: 1px solid #c1c1c1; } }
  @media screen and (min-width: 990px) {
    .menu__inner {
      position: relative; } }
  .menu__list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: -15px;
    margin-right: -15px; }
    @media screen and (min-width: 990px) {
      .menu__list {
        flex-direction: row;
        margin-left: 0;
        margin-right: 0; } }
  .menu__item {
    flex-grow: 1;
    position: relative;
    border-bottom: 1px solid #c1c1c1; }
    .menu__item--sale {
      transition: all ease 300ms; }
      @media screen and (min-width: 990px) {
        .menu__item--sale {
          padding: 3px 5px;
          background: #ee5c23;
          color: #fff;
          font-weight: bold; } }
      .menu__item--sale:hover {
        transform: scale(1.1);
        transition: all ease 300ms; }
    @media screen and (min-width: 990px) {
      .menu__item {
        position: static;
        border-bottom: none; }
        .menu__item--hover .menu__link, .menu__item--active .menu__link {
          background-color: #efefef;
          border-left-color: #c1c1c1;
          border-right-color: #c1c1c1;
          text-decoration: underline; }
          .menu__item--hover .menu__link:before, .menu__item--active .menu__link:before {
            display: none; }
        .menu__item--submenu.menu__item--hover .menu__link:after {
          display: block; }
        .menu__item--submenu.menu__item--hover .menu__submenu {
          opacity: 1;
          visibility: visible;
          -webkit-transition: all 300ms ease;
          -o-transition: all 300ms ease;
          transition: all 300ms ease; }
        .menu__item:first-child {
          flex-grow: 0;
          margin-left: -10px; }
        .menu__item:last-child {
          flex-grow: 0;
          margin-right: -10px; }
          .menu__item:last-child .menu__link:before {
            display: none; } }
  .menu__button {
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer; }
    @media screen and (min-width: 990px) {
      .menu__button {
        display: none; } }
    .menu__button:before {
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 15px;
      top: 17px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 5.5px 0 5.5px;
      border-color: #000 transparent transparent transparent; }
      @media screen and (min-width: 600px) {
        .menu__button:before {
          top: 22px; } }
    .menu__button--active:before {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .menu__link {
    position: relative;
    display: block;
    padding: 10px 15px;
    -webkit-transition: background 300ms ease;
    -o-transition: background 300ms ease;
    transition: background 300ms ease;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 600; }
    @media screen and (min-width: 600px) {
      .menu__link {
        padding: 15px; } }
    @media screen and (min-width: 990px) {
      .menu__link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 10px 0 11px;
        height: 50px;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        border-bottom: none;
        font-size: 16px;
        font-weight: 400;
        text-align: center; } }
    @media screen and (min-width: 990px) {
      .menu__link:before, .menu__link:after {
        position: absolute;
        content: ""; }
      .menu__link:before {
        width: 1px;
        height: 30px;
        right: -2px;
        top: 10px;
        background-color: #c1c1c1; }
      .menu__link:after {
        left: 0;
        top: 100%;
        height: 1px;
        width: 100%;
        display: none;
        background-color: #fff; } }
  .menu__submenu {
    display: none;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .menu__submenu {
        display: block;
        position: absolute;
        left: -10px;
        top: 100%;
        width: calc(100% + 20px);
        margin-top: 1px;
        padding-top: 40px;
        padding-bottom: 20px;
        border-bottom: 1px solid #c1c1c1;
        border-left: 1px solid #c1c1c1;
        border-right: 1px solid #c1c1c1;
        visibility: hidden;
        opacity: 0; } }
    .menu__submenu-list {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      margin-left: -10px;
      margin-right: -10px;
      list-style: none;
      padding: 0;
      margin: 0;
      padding-top: 10px; }
      @media screen and (min-width: 990px) {
        .menu__submenu-list {
          padding-top: 0; } }
      .menu__submenu-list.banners-sec {
        gap: 10px 10px;
        justify-content: center; }
        @media screen and (min-width: 1200px) {
          .menu__submenu-list.banners-sec {
            justify-content: start; } }
    .menu__submenu-item {
      display: flex;
      flex-wrap: wrap;
      margin: 0 10px 20px 10px;
      width: 100%; }
      @media screen and (min-width: 480px) {
        .menu__submenu-item {
          width: calc(100% / 2 - 20px); } }
      @media screen and (min-width: 768px) {
        .menu__submenu-item {
          width: calc(100% / 3 - 20px); } }
      @media screen and (min-width: 990px) {
        .menu__submenu-item {
          width: calc(100% / 4 - 20px); } }
    .menu__submenu-wideitem {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .menu__submenu-wideitem {
          width: 750px; } }
      @media screen and (min-width: 1200px) {
        .menu__submenu-wideitem {
          width: calc(100% / 2 - 5px); } }
    .menu__submenu-image-wrapper {
      display: none; }
      @media screen and (min-width: 990px) {
        .menu__submenu-image-wrapper {
          display: block;
          width: 80px;
          margin-right: 10px; } }
    .menu__submenu-inner {
      flex: 1;
      min-width: 1px; }
    .menu__submenu-name {
      -webkit-transition: color 300ms ease;
      -o-transition: color 300ms ease;
      transition: color 300ms ease;
      color: #000;
      text-decoration: none;
      font-weight: 600; }
      .menu__submenu-name:hover {
        color: #ee5c23; }
  .menu__submenu2 {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 4px; }
    @media screen and (min-width: 990px) {
      .menu__submenu2-item {
        margin-bottom: 4px; } }
    .menu__submenu2-item:last-child {
      margin-bottom: 0; }
    .menu__submenu2-link {
      display: block;
      padding-top: 5px;
      padding-bottom: 5px;
      -webkit-transition: color 300ms ease;
      -o-transition: color 300ms ease;
      transition: color 300ms ease;
      color: #666;
      font-size: 14px;
      text-decoration: none; }
      @media screen and (min-width: 990px) {
        .menu__submenu2-link {
          padding-top: 0;
          padding-bottom: 0; } }
      .menu__submenu2-link:hover {
        color: #ee5c23;
        text-decoration: underline; }
      .menu__submenu2-link--more {
        color: #1fa2cd; }
        .menu__submenu2-link--more:hover {
          color: #1fa2cd;
          text-decoration: underline; }
  .menu .no-decoration {
    text-decoration: none !important; }

.newsletter {
  margin-bottom: 15px; }
  @media screen and (min-width: 990px) {
    .newsletter {
      margin-bottom: 0; } }
  @media screen and (max-width: 990px) {
    .newsletter br {
      display: none; } }
  .newsletter__form {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .newsletter__form {
        align-items: center;
        flex-direction: row; } }
  .newsletter__title {
    line-height: 19px;
    margin-bottom: 10px;
    color: #fff;
    text-align: center; }
    @media screen and (min-width: 990px) {
      .newsletter__title {
        margin-bottom: 0;
        margin-right: 17px;
        text-align: left; } }
  .newsletter__inner {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 6px;
    padding-right: 6px;
    height: 40px;
    margin-bottom: 10px;
    background-color: #fff; }
    @media screen and (min-width: 480px) {
      .newsletter__inner {
        width: 315px; } }
    @media screen and (min-width: 990px) {
      .newsletter__inner {
        margin-right: 29px;
        margin-bottom: 0; } }
  .newsletter__input {
    flex: 1;
    min-width: 0;
    height: 27px;
    padding-left: 8px;
    border: none;
    font-size: 14px; }
  .newsletter__button {
    height: 27px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #1fa2cd;
    color: #fff;
    border: none;
    font-size: 12px; }
  .newsletter__policy {
    position: relative;
    padding-left: 17px;
    line-height: 14px;
    font-size: 12px;
    color: #fff;
    cursor: pointer; }
    .newsletter__policy a {
      color: inherit; }
    .newsletter__policy-checkbox {
      position: absolute;
      left: 0;
      top: 2px; }

.cookie-warning {
  font-size: 12px;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  cursor: pointer; }
  .cookie-warning__container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    color: #ffffff;
    background-color: #ee5c23;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    position: relative;
    top: calc(50% - 50px);
    padding: 10px; }
    @media screen and (min-width: 1200px) {
      .cookie-warning__container {
        flex-direction: row; } }
    .cookie-warning__container form {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 10px; }
      @media screen and (max-width: 1199px) {
        .cookie-warning__container form {
          padding-bottom: 10px; } }
      @media screen and (max-width: 599px) {
        .cookie-warning__container form {
          padding-right: 0;
          width: 100%; } }
  .cookie-warning__title {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700; }
  .cookie-warning__text {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }
    @media screen and (min-width: 1200px) {
      .cookie-warning__text {
        width: 60%;
        padding-right: 4em;
        padding-top: 30px;
        padding-left: 30px;
        padding-bottom: 30px; } }
  .cookie-warning__actions {
    display: flex;
    gap: 30px;
    width: 100%;
    align-items: center; }
    @media screen and (max-width: 599px) {
      .cookie-warning__actions {
        flex-direction: column;
        align-items: unset;
        gap: 10px; } }
  .cookie-warning__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    cursor: pointer;
    height: 40px;
    min-width: fit-content;
    background-color: #1fa2cd;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px; }
    .cookie-warning__btn:hover {
      text-decoration: underline;
      background-color: #1eafe1; }
    @media screen and (max-width: 600px) {
      .cookie-warning__btn {
        width: 100%; } }
  .cookie-warning-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    gap: 20px; }
    .cookie-warning-bar__list {
      display: flex;
      flex-wrap: wrap;
      flex: 1;
      min-width: 1px; }
    .cookie-warning-bar__item {
      margin-right: 20px; }
      .cookie-warning-bar__item:last-child {
        margin-right: 0; }
      .cookie-warning-bar__item label {
        position: relative;
        padding-left: 15px;
        cursor: pointer; }
      .cookie-warning-bar__item .labelCookieDetail {
        font-weight: 700;
        font-size: 14px;
        line-height: 20px; }
      .cookie-warning-bar__item input {
        position: absolute;
        left: 0;
        top: 3px;
        width: 10px;
        height: 10px;
        cursor: pointer; }
      .cookie-warning-bar__item .showCookieDetail {
        display: flex;
        cursor: pointer;
        opacity: .5; }
        .cookie-warning-bar__item .showCookieDetail:before {
          position: relative;
          top: 0;
          content: ">";
          display: block;
          margin-right: 4px; }
    .cookie-warning-bar__settings {
      flex-shrink: 0;
      padding: 5px 10px;
      background-color: transparent;
      cursor: pointer;
      border: none;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #fff;
      text-decoration: underline; }
      @media screen and (max-width: 498px) {
        .cookie-warning-bar__settings {
          display: flex;
          align-items: center;
          justify-content: center; } }
      .cookie-warning-bar__settings:hover {
        text-decoration: none; }
    .cookie-warning-bar #enableSelected {
      background-color: #a66c56; }
      .cookie-warning-bar #enableSelected:hover {
        background-color: #1eafe1; }
  .cookie-warning-tabs {
    display: none; }
    .cookie-warning-tabs__head {
      display: flex; }
      .cookie-warning-tabs__head .cookie-warning-tabs__item {
        display: flex;
        align-items: center;
        height: 32px;
        margin-right: 5px;
        padding-right: 10px;
        padding-left: 10px;
        background-color: #f7f7f7;
        cursor: pointer;
        border: 1px solid #ccc;
        border-bottom: none;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px; }
        .cookie-warning-tabs__head .cookie-warning-tabs__item--active {
          background-color: #fff; }
        .cookie-warning-tabs__head .cookie-warning-tabs__item:last-child {
          margin-right: 0; }
    .cookie-warning-tabs__body {
      border: 1px solid #ccc;
      border-radius: 3px;
      max-height: 200px;
      overflow: auto;
      /* width */
      /* Track */
      /* Handle */
      /* Handle on hover */ }
      .cookie-warning-tabs__body::-webkit-scrollbar {
        width: 10px;
        height: 10px; }
      .cookie-warning-tabs__body::-webkit-scrollbar-track {
        box-shadow: inset 0 0 5px #E5E5E5;
        border-radius: 2px; }
      .cookie-warning-tabs__body::-webkit-scrollbar-thumb {
        background: #C4C4C4;
        border-radius: 2px; }
      .cookie-warning-tabs__body::-webkit-scrollbar-thumb:hover {
        background: #b4b4b4; }
      .cookie-warning-tabs__body .cookie-warning-tabs__item {
        display: none; }
        .cookie-warning-tabs__body .cookie-warning-tabs__item--active {
          display: block; }
          .cookie-warning-tabs__body .cookie-warning-tabs__item--active table {
            width: 100%;
            border-collapse: collapse; }
    .cookie-warning-tabs__text {
      padding: 10px;
      line-height: 1.6; }
  .cookie-warning-content {
    display: flex; }
    .cookie-warning-content__side {
      flex-shrink: 0;
      width: 130px;
      border-right: 1px solid #eee; }
      .cookie-warning-content__side .cookie-warning-content__item {
        padding: 10px 10px;
        border-bottom: 1px solid #eee;
        background-color: #f5f5f5;
        cursor: pointer; }
        .cookie-warning-content__side .cookie-warning-content__item--active {
          background-color: #fff; }
        .cookie-warning-content__side .cookie-warning-content__item:last-child {
          border-bottom: none; }
    .cookie-warning-content__main {
      flex: 1;
      min-width: 330px;
      overflow: auto;
      padding: 10px; }
      .cookie-warning-content__main .cookie-warning-content__item {
        display: none; }
        .cookie-warning-content__main .cookie-warning-content__item--active {
          display: block; }
      .cookie-warning-content__main table thead td {
        background-color: #f5f5f5;
        border-bottom: 1px solid #ccc; }
      .cookie-warning-content__main table td {
        padding: 5px 10px;
        border-right: 1px solid #ccc;
        border-bottom: 1px solid #ccc; }
        .cookie-warning-content__main table td:last-child {
          border-right: none; }
      .cookie-warning-content__main p {
        margin: 0 0 10px 0; }
  .cookie-warning.cookieSetting .cookie-warning__container {
    flex-direction: column; }
    .cookie-warning.cookieSetting .cookie-warning__container form {
      width: 100%;
      padding: 0;
      align-items: unset;
      justify-content: unset;
      flex-direction: column;
      margin-bottom: 20px; }
  .cookie-warning.cookieSetting .cookie-warning__actions {
    flex-direction: row; }
    .cookie-warning.cookieSetting .cookie-warning__actions #enableAllCookies {
      display: none; }
    .cookie-warning.cookieSetting .cookie-warning__actions #toggleSettings {
      text-decoration: none;
      font-weight: 700;
      font-size: 0;
      line-height: 0; }
      .cookie-warning.cookieSetting .cookie-warning__actions #toggleSettings:after {
        content: 'Nastavení cookie';
        display: block;
        position: relative;
        font-size: 14px;
        line-height: 20px; }
      .cookie-warning.cookieSetting .cookie-warning__actions #toggleSettings:hover {
        text-decoration: underline; }
  .cookie-warning.cookieSetting .cookie-warning-bar {
    flex-direction: column;
    align-items: unset; }
    @media screen and (min-width: 768px) {
      .cookie-warning.cookieSetting .cookie-warning-bar {
        flex-direction: row; } }
    .cookie-warning.cookieSetting .cookie-warning-bar__list {
      gap: 8px; }
    .cookie-warning.cookieSetting .cookie-warning-bar__item {
      display: grid;
      grid-template-columns: 40px 1fr 1fr; }
      .cookie-warning.cookieSetting .cookie-warning-bar__item label {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        position: relative;
        display: inline-block;
        width: 30px;
        height: 17px;
        top: 2px; }
        .cookie-warning.cookieSetting .cookie-warning-bar__item label input {
          opacity: 0;
          width: 0;
          height: 0; }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label input:checked + .slider {
            background-color: #1fa2cd; }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label input:focus + .slider {
            box-shadow: 0 0 1px #1fa2cd; }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label input:checked + .slider:before {
            -webkit-transform: translateX(13px);
            -ms-transform: translateX(136px);
            transform: translateX(13px); }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label input:disabled + .slider {
            opacity: .75;
            cursor: no-drop; }
        .cookie-warning.cookieSetting .cookie-warning-bar__item label .slider {
          position: absolute;
          cursor: pointer;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: #ccc;
          -webkit-transition: .4s;
          transition: .4s; }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label .slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s; }
          .cookie-warning.cookieSetting .cookie-warning-bar__item label .slider.round {
            border-radius: 17px; }
            .cookie-warning.cookieSetting .cookie-warning-bar__item label .slider.round:before {
              border-radius: 50%; }
      .cookie-warning.cookieSetting .cookie-warning-bar__item .labelCookieDetail {
        grid-column: 2 / 4;
        grid-row: 1; }
      .cookie-warning.cookieSetting .cookie-warning-bar__item .showCookieDetail {
        grid-column: 2 / 4;
        grid-row: 2; }
  .cookie-warning.cookieSetting .cookie-warning-tabs {
    display: flex;
    flex-direction: column; }

.account-points {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -20px; }
  .account-points__title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    color: #fff;
    background-color: #ee5c23;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
    font-size: 18px;
    font-weight: 600; }
  .account-points__list {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    padding-top: 10px;
    padding-bottom: 10px; }
    @media screen and (min-width: 480px) {
      .account-points__list {
        grid-template-columns: 1fr 1fr; } }
    @media screen and (min-width: 600px) {
      .account-points__list {
        grid-template-columns: repeat(4, 1fr); } }
  .account-points__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: -0.73px; }
    @media screen and (min-width: 600px) {
      .account-points__item {
        padding-top: 10px;
        padding-bottom: 10px;
        border-right: 1px solid #c1c1c1; } }
    .account-points__item:last-child {
      border-right: none; }

.account-store__title {
  margin-bottom: 20px;
  color: #ee5c23;
  font-size: 20px;
  font-weight: 400; }
  .account-store__title strong {
    font-weight: 700; }

.account-store__subtitle {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ee5c23; }

.account-store__address {
  line-height: 1.5;
  color: #666;
  font-size: 12px; }

.account-store__opening td {
  line-height: 1.5;
  font-size: 12px; }

.account-store__cols-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px; }
  @media screen and (min-width: 600px) {
    .account-store__cols-wrapper {
      grid-template-columns: 165px 1fr 1fr; } }

.account {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .account__inner {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .account__inner {
        flex-direction: row; } }
  .account__left {
    margin-bottom: 20px; }
    @media screen and (min-width: 990px) {
      .account__left {
        flex: 1;
        margin-bottom: 0; } }
  @media screen and (min-width: 990px) {
    .account__right {
      width: 500px;
      margin-left: 20px; } }
  @media screen and (min-width: 1300px) {
    .account__right {
      width: 605px; } }
  .account__required {
    line-height: 20px;
    margin-bottom: 36px;
    color: #666; }
  .account__club-title {
    margin-bottom: 30px;
    font-size: 44px;
    font-weight: 400;
    color: #ee5c23; }
    .account__club-title strong {
      font-weight: 700; }
  .account__heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px; }
    @media screen and (min-width: 990px) {
      .account__heading {
        flex-direction: row;
        align-items: center;
        justify-content: space-between; } }
    .account__heading .account__title {
      padding-left: 0; }
      @media screen and (min-width: 990px) {
        .account__heading .account__title {
          margin-bottom: 0; } }
  .account__title {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 600; }
  .account__text {
    margin-bottom: 50px; }
  .account__actions {
    display: flex;
    justify-content: center; }
  .account .user-data {
    margin-bottom: 20px; }

.account-info__section {
  margin-bottom: 20px; }
  .account-info__section:last-child {
    margin-bottom: 0; }

.account-info__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px; }
  @media screen and (min-width: 480px) {
    .account-info__item {
      flex-direction: row;
      align-items: baseline; } }
  .account-info__item:last-child {
    margin-bottom: 0; }

.account-info__label {
  font-weight: 700; }
  @media screen and (min-width: 480px) {
    .account-info__label {
      width: 200px; } }

.account-info__value {
  color: #c1c1c1; }
  @media screen and (min-width: 480px) {
    .account-info__value {
      flex: 1;
      min-width: 1px; } }

.club--modal {
  padding: 20px;
  background-color: #fff; }
  .club--modal .club__list {
    margin-bottom: 0; }

.club__title {
  margin-bottom: 30px;
  color: #ee5c23;
  font-size: 40px;
  font-weight: 300; }

.club__subtitle {
  margin-bottom: 20px;
  color: #ee5c23;
  font-size: 30px;
  font-weight: 300; }

.club__description {
  margin-bottom: 50px; }

.club__list {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: -20px; }

.club__section {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 768px) {
    .club__section {
      flex-direction: row; } }
  @media screen and (min-width: 768px) {
    .club__section:nth-child(odd) .club__content {
      background-color: #ececec; } }

.club__content {
  order: 2;
  padding: 20px; }
  @media screen and (min-width: 768px) {
    .club__content {
      order: unset;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 1px; } }

.club__image-wrapper {
  order: 1; }
  @media screen and (min-width: 768px) {
    .club__image-wrapper {
      order: unset;
      width: 436px; } }
  @media screen and (min-width: 990px) {
    .club__image-wrapper {
      width: 636px; } }

.club__image {
  width: 100%; }
  @media screen and (min-width: 768px) {
    .club__image {
      width: auto; } }

.club__text {
  margin-bottom: 20px; }

.article-detail__inner {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .article-detail__inner {
      flex-direction: row; } }

.article-detail__left {
  margin-bottom: 20px; }
  @media screen and (min-width: 990px) {
    .article-detail__left {
      flex: 1;
      margin-bottom: 0; } }

.article-detail__main {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

@media screen and (min-width: 990px) {
  .article-detail__right {
    width: 260px;
    margin-left: 18px; } }

.article-detail__header {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  margin-bottom: 20px; }
  @media screen and (min-width: 600px) {
    .article-detail__header {
      flex-direction: row;
      align-items: baseline;
      justify-content: space-between;
      column-gap: 16px; } }

.article-detail__title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0; }

.article-detail__publishdate {
  font-size: 14px;
  color: gray; }

.article-detail__info {
  margin-bottom: 14px;
  font-size: 13px; }

.article-detail__tags {
  display: flex;
  margin-bottom: 6px; }

.article-detail__content h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.article-detail__content h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600; }

.article-detail__content p {
  line-height: 20px;
  margin-bottom: 20px; }

.article-detail__content ol,
.article-detail__content ul {
  margin-left: 30px;
  margin-bottom: 20px; }

.article-detail__categories {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .article-detail__categories-title {
    margin-bottom: 21px;
    font-size: 20px;
    font-weight: 600;
    text-align: center; }

.article-detail__producer-logo {
  display: flex;
  justify-content: center;
  padding: 0;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px; }

.article-detail__related {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .article-detail__related-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px solid #c1c1c1; }

.article-detail__catalog {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .article-detail__catalog {
      align-items: flex-start;
      flex-direction: row; } }
  .article-detail__catalog-left {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .article-detail__catalog-left {
        width: 260px;
        margin-right: 20px; } }
  .article-detail__catalog-products {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .article-detail__catalog-products {
        flex: 1;
        min-width: 0; } }
    .article-detail__catalog-products-list {
      overflow: hidden;
      /*
				&-in {
					@include products-wrapper();
					@include products-wrapper-with-side();
				}
				*/ }

.homepage__slider-benefits {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .homepage__slider-benefits {
      flex-direction: row;
      flex-wrap: wrap; } }

.homepage__slider {
  flex: 1;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  @media screen and (min-width: 990px) {
    .homepage__slider {
      max-width: calc(100% - 420px); } }

.homepage__benefits {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  @media screen and (min-width: 990px) {
    .homepage__benefits {
      margin-left: 20px;
      width: 400px; } }
  .homepage__benefits-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-basis: 100%;
    margin-bottom: 10px;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease;
    color: #666;
    text-decoration: none; }
    @media screen and (min-width: 768px) {
      .homepage__benefits-item {
        flex-direction: column;
        flex-basis: calc(100% / 4);
        margin-top: 15px;
        margin-bottom: 15px; } }
    @media screen and (min-width: 990px) {
      .homepage__benefits-item {
        flex-basis: calc(100% / 2); } }
    .homepage__benefits-item:last-child {
      margin-bottom: 0; }
      @media screen and (min-width: 768px) {
        .homepage__benefits-item:last-child {
          margin-bottom: 25px; } }
    .homepage__benefits-item:hover {
      color: #ee5c23; }
      .homepage__benefits-item:hover .homepage__benefits-image-wrapper {
        background-color: #ee5c23; }
  .homepage__benefits-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    -webkit-transition: background-color 300ms ease;
    -o-transition: background-color 300ms ease;
    transition: background-color 300ms ease;
    background-color: #666; }
    @media screen and (min-width: 768px) {
      .homepage__benefits-image-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        margin-right: 0; } }
  @media (max-width: 767px) {
    .homepage__benefits-image {
      transform: scale(0.7); } }
  .homepage__benefits-image path {
    fill: #fff; }
  .homepage__benefits-text {
    line-height: 17px;
    width: 100%;
    font-size: 14px; }
    @media screen and (min-width: 768px) {
      .homepage__benefits-text {
        line-height: 19px;
        text-align: center;
        font-size: 16px; } }

.homepage__producers {
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .homepage__producers-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    border-top: 9px solid #ee5c23; }
    @media screen and (min-width: 990px) {
      .homepage__producers-inner {
        flex-direction: row;
        flex-wrap: wrap; } }
  .homepage__producers-more {
    position: relative;
    padding-right: 12px;
    margin: 10px 20px;
    color: #1fa2cd;
    font-size: 12px;
    text-decoration: underline; }
    .homepage__producers-more:hover {
      text-decoration: none; }
    .homepage__producers-more:after {
      position: absolute;
      right: 0;
      top: 5px;
      content: "";
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5.5px 0 5.5px 6px;
      border-color: transparent transparent transparent #1fa2cd; }
  .homepage__producers-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px; }
    @media screen and (min-width: 990px) {
      .homepage__producers-list {
        flex-wrap: nowrap;
        justify-content: space-between;
        flex: 1; } }
  .homepage__producers-item {
    margin: 10px 20px; }
    .homepage__producers-item:nth-child(4) .homepage__producers-image {
      max-width: 60px; }
  .homepage__producers-image {
    max-height: 50px; }
    @media screen and (min-width: 990px) {
      .homepage__producers-image {
        max-height: 100px; } }
  .homepage__producers-link {
    display: flex;
    justify-content: center;
    align-items: center; }
  @media screen and (min-width: 768px) {
    .homepage__producers .slick-list {
      margin-left: 40px;
      margin-right: 40px; } }
  .homepage__producers .slick-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    background: #fafafa; }
    @media screen and (min-width: 768px) {
      .homepage__producers .slick-arrow {
        margin-top: -20px;
        width: 40px;
        height: 40px; } }
    .homepage__producers .slick-arrow:before {
      content: "";
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 0 7px 10px;
      border-color: transparent transparent transparent #1fa2cd; }
    .homepage__producers .slick-arrow--prev {
      left: 0; }
      .homepage__producers .slick-arrow--prev:before {
        transform: rotate(180deg); }
    .homepage__producers .slick-arrow--next {
      right: 0; }

.homepage__favourite {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .homepage__favourite-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .homepage__favourite-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .homepage__favourite-inner .top-product {
      width: 100%;
      margin-bottom: 15px;
      border-bottom: 1px solid #c1c1c1; }
      @media screen and (min-width: 480px) {
        .homepage__favourite-inner .top-product {
          width: calc(100% / 2 - 1px);
          border-right: 1px solid #c1c1c1;
          border-bottom: none; } }
      @media (min-width: 480px) and (max-width: 599px) {
        .homepage__favourite-inner .top-product:nth-child(2n) {
          border-right: none; } }
      @media screen and (min-width: 600px) {
        .homepage__favourite-inner .top-product {
          width: calc(100% / 3 - 1px); } }
  @media screen and (min-width: 600px) and (min-width: 600px) and (max-width: 979px) {
    .homepage__favourite-inner .top-product:nth-child(3n) {
      border-right: none; } }
      @media screen and (min-width: 990px) {
        .homepage__favourite-inner .top-product {
          width: calc(100% / 6 - 1px);
          margin-bottom: 0; } }
      .homepage__favourite-inner .top-product:last-child {
        border-right: none;
        border-bottom: none; }
      .homepage__favourite-inner .top-product__link {
        padding: 0 30px 10px 30px; }
      .homepage__favourite-inner .top-product__title {
        height: 34px; }

.homepage__bottom {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .homepage__bottom-cols-wrapper {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .homepage__bottom-cols-wrapper {
        flex-wrap: wrap;
        flex-direction: row;
        margin-left: -10px;
        margin-right: -10px; } }
  .homepage__bottom-col {
    margin-bottom: 20px; }
    @media screen and (min-width: 990px) {
      .homepage__bottom-col {
        width: calc(100% / 2 - 20px);
        margin: 0 10px; } }
  .homepage__bottom-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .homepage__bottom-inner {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .homepage__bottom-inner-hidden {
      display: none; }
  .homepage__bottom-more-wrapper {
    display: flex;
    justify-content: center; }

.contact-page {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .contact-page__main-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600; }
  .contact-page__address-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px; }
  .contact-page__address-text {
    margin-bottom: 20px; }
  .contact-page__address-address strong {
    font-weight: 600; }
  .contact-page__contact {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    background-color: #fafafa; }
    .contact-page__contact-phone {
      display: none;
      position: relative;
      padding-left: 50px;
      margin-bottom: 15px; }
      .contact-page__contact-phone-icon {
        position: absolute;
        left: 5px;
        top: 10px; }
      .contact-page__contact-phone-text {
        font-size: 18px; }
      .contact-page__contact-phone-value {
        font-size: 20px;
        font-weight: 600; }
    .contact-page__contact img {
      display: none; }
  .contact-page__map-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px; }
  .contact-page__map-box {
    padding: 0px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
  .contact-page__map-inner {
    height: 485px;
    width: 100%; }
  .contact-page__ask-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px; }
  .contact-page__ask-form {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .contact-page__ask-form-row {
      display: flex;
      flex-direction: column;
      margin-bottom: 10px; }
      @media screen and (min-width: 600px) {
        .contact-page__ask-form-row {
          flex-direction: row; } }
    .contact-page__ask-form-label {
      margin-bottom: 5px; }
      @media screen and (min-width: 600px) {
        .contact-page__ask-form-label {
          width: 200px;
          margin-bottom: 0; } }
    .contact-page__ask-form-value {
      max-width: 350px;
      width: 100%; }
    .contact-page__ask-form-input {
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff; }
      .contact-page__ask-form-input::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .contact-page__ask-form-input:-ms-input-placeholder {
        color: #777; }
      .contact-page__ask-form-input::-webkit-input-placeholder {
        color: #777; }
      .contact-page__ask-form-input[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .contact-page__ask-form-input:focus {
        border-color: #424c58; }
      .contact-page__ask-form-input:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
    .contact-page__ask-form-textarea {
      display: flex;
      align-items: center;
      height: 75px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      resize: none;
      padding-top: 10px;
      padding-bottom: 10px; }
      .contact-page__ask-form-textarea::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .contact-page__ask-form-textarea:-ms-input-placeholder {
        color: #777; }
      .contact-page__ask-form-textarea::-webkit-input-placeholder {
        color: #777; }
      .contact-page__ask-form-textarea[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .contact-page__ask-form-textarea:focus {
        border-color: #424c58; }
      .contact-page__ask-form-textarea:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
    .contact-page__ask-form-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #4ca728;
      color: #fff;
      height: 40px;
      padding-left: 15px;
      padding-right: 15px; }
      .contact-page__ask-form-button.disabled, .contact-page__ask-form-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .contact-page__ask-form-button:not(:disabled):hover {
        background-color: #81c168;
        color: #fff; }

.not-available {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 40px); }
  .not-available__inner {
    max-width: 600px;
    text-align: center; }
  .not-available__logo {
    margin-bottom: 50px; }
    .not-available__logo-image {
      display: inline-block; }
      .not-available__logo-image path {
        fill: #ee5c23; }
  .not-available__title {
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700; }
  .not-available__text {
    font-size: 18px; }

.detail {
  /* Smazat potom */ }
  .detail__producer img {
    max-height: 80px; }
  .detail__stripe {
    display: flex;
    flex-direction: column;
    margin-bottom: 9px;
    margin-top: -11px; }
    @media screen and (min-width: 768px) {
      .detail__stripe {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline; } }
    .detail__stripe .breadcrumb {
      flex: 1;
      margin: 0 0 10px 0; }
      @media screen and (min-width: 768px) {
        .detail__stripe .breadcrumb {
          margin-bottom: 0; } }
    .detail__stripe-actions {
      display: flex;
      flex-shrink: 0;
      align-items: baseline; }
      @media screen and (min-width: 768px) {
        .detail__stripe-actions {
          margin-left: auto; } }
  .detail__code {
    font-size: 12px;
    color: #666; }
  .detail__add-to-compare {
    margin-right: 20px;
    font-size: 12px; }
  .detail__miele-stripe {
    margin-bottom: 20px; }
  .detail__megaaction {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    margin-bottom: 40px; }
    @media screen and (min-width: 768px) {
      .detail__megaaction {
        flex-direction: row;
        min-height: 80px;
        padding: 0 20px; } }
    .detail__megaaction-title {
      line-height: 26px;
      margin-bottom: 10px;
      font-size: 27px;
      font-weight: 700;
      text-transform: uppercase;
      text-align: center;
      color: #ee5c23; }
      @media screen and (min-width: 768px) {
        .detail__megaaction-title {
          margin-bottom: 0;
          margin-right: 5px; } }
    .detail__megaaction-icon {
      display: none; }
      @media screen and (min-width: 990px) {
        .detail__megaaction-icon {
          display: block;
          margin-right: 15px; }
          .detail__megaaction-icon path {
            fill: #666; } }
    .detail__megaaction-name {
      flex: 1;
      line-height: 27px;
      margin-bottom: 10px;
      font-size: 22px;
      font-weight: 600;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .detail__megaaction-name {
          margin-bottom: 0;
          text-align: left; } }
    .detail__megaaction-image {
      max-height: none;
      margin-bottom: 10px; }
      @media screen and (min-width: 768px) {
        .detail__megaaction-image {
          margin: 0 20px; } }
    .detail__megaaction-amount {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 10px; }
      @media screen and (min-width: 768px) {
        .detail__megaaction-amount {
          margin-right: 20px;
          margin-bottom: 0; } }
      .detail__megaaction-amount-value {
        font-size: 27px;
        font-weight: 700; }
      .detail__megaaction-amount-text {
        margin-top: -6px;
        font-size: 14px;
        font-weight: 600; }
    .detail__megaaction-availability {
      margin-left: auto;
      color: #ff0000;
      font-size: 20px; }
    .detail__megaaction-countdown {
      display: flex;
      margin-right: auto;
      margin-left: auto; }
      @media screen and (min-width: 768px) {
        .detail__megaaction-countdown {
          margin-right: 0; } }
      .detail__megaaction-countdown-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        margin-right: 2px;
        background-color: #ee5c23;
        color: #fff; }
        .detail__megaaction-countdown-item:last-child {
          margin-right: 0; }
      .detail__megaaction-countdown-value {
        font-size: 20px;
        font-weight: 700; }
      .detail__megaaction-countdown-text {
        margin-top: -4px;
        font-size: 10px;
        font-weight: 600; }
  .detail__top {
    display: flex;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .detail__top {
        flex-direction: row;
        flex-wrap: wrap; } }
    .detail__top-left {
      position: relative;
      margin-bottom: 30px; }
      @media screen and (min-width: 990px) {
        .detail__top-left {
          width: 350px;
          margin-right: 30px;
          margin-bottom: 0; } }
    @media screen and (min-width: 990px) {
      .detail__top-right {
        flex: 1; } }
  .detail__description {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    /*
    .detail-table {display:block; width: 100%; }
    .detail-table .table-img {padding-left: 10px; padding-right: 10px; vertical-align: middle; padding-top: 60px; }
    .detail-table-cell h3, .detail-table-h h3{margin-top: 0; color: $color-orange; margin-bottom: 30px;}
    .detail-table-h p {margin-bottom: 0; text-align: justify;}
    .detail-table-cell img { margin-top: 8px; }
    .detail-table-cell p {margin-bottom: 0; text-align: justify;}

    @media all and (max-width: 767px){
        .detail-table p img { width: auto !important; height: auto !important; }
    }


    @media screen and (min-width: 600px){
        // .detail-table-cell img { max-width: none;}
        .detail-table .leftImg img {margin-right: 84px; }
        //.detail-table .rightImg img { margin-left: 84px; }
        .detail-table .leftImg img , .detail-table .rightImg img {width: 294px;}
        .detail-table {display:table;}
        .detail-table-row {display:table-row;}
        .detail-table-cell {display:table-cell; vertical-align:top;}
    }
    */ }
    .detail__description-banner {
      margin-bottom: 20px; }
    .detail__description ul {
      list-style-position: inside; }
    @media (max-width: 767px) {
      .detail__description #table-expert {
        display: block; } }
    @media (max-width: 767px) {
      .detail__description #table-expert tr {
        display: flex;
        flex-direction: column; } }
    .detail__description #table-expert td {
      padding: 15px; }
      @media (max-width: 767px) {
        .detail__description #table-expert td {
          display: block;
          width: 100% !important;
          padding: 15px 0 !important; } }
      .detail__description #table-expert td h3 {
        line-height: 120%;
        margin: 0;
        color: #ee5c23;
        font-weight: 500;
        font-size: 26px; }
      .detail__description #table-expert td p {
        margin-bottom: 25px;
        line-height: 24px; }
    .detail__description #expert-content #table-expert {
      table-layout: fixed; }
    .detail__description #expert-content img {
      height: auto !important; }
    .detail__description .detail-table {
      display: block;
      margin-top: 15px;
      margin-bottom: 15px; }
      .detail__description .detail-table-row {
        display: flex;
        flex-direction: column; }
        @media screen and (min-width: 768px) {
          .detail__description .detail-table-row {
            flex-direction: row;
            align-items: center; } }
      .detail__description .detail-table-cell {
        margin-bottom: 30px; }
        @media screen and (min-width: 768px) {
          .detail__description .detail-table-cell {
            margin-bottom: 0; } }
        .detail__description .detail-table-cell:not(.table-img) {
          order: 2; }
          @media screen and (min-width: 768px) {
            .detail__description .detail-table-cell:not(.table-img) {
              flex: 1;
              order: 0; } }
        .detail__description .detail-table-cell.table-img {
          order: 1;
          flex-shrink: 0; }
          @media screen and (min-width: 768px) {
            .detail__description .detail-table-cell.table-img {
              order: 0; } }
          @media screen and (min-width: 768px) {
            .detail__description .detail-table-cell.table-img.leftImg {
              margin-right: 30px; } }
          @media screen and (min-width: 768px) {
            .detail__description .detail-table-cell.table-img.rightImg {
              margin-left: 30px; } }
          @media screen and (min-width: 768px) {
            .detail__description .detail-table-cell.table-img img {
              max-width: 500px; } }
        .detail__description .detail-table-cell h3 {
          margin: 0 0 30px 0;
          color: #ee5c23; }
        .detail__description .detail-table-cell p {
          margin-bottom: 0;
          line-height: 140%;
          text-align: justify; }
    .detail__description hr {
      clear: both;
      height: 1px;
      margin: 30px 0;
      background: silver;
      background: -webkit-linear-gradient(left, white, silver, white);
      background: -moz-linear-gradient(left, white, silver, white);
      background: -ms-linear-gradient(left, white, silver, white);
      background: -o-linear-gradient(left, white, silver, white);
      background: -webkit-gradient(left, white, silver, white);
      background: -linear-gradient(left, white, silver, white);
      border: none; }
  .detail__bottom {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .detail__bottom {
        flex-direction: row;
        flex-wrap: wrap; } }
    .detail__bottom-left {
      margin-bottom: 20px; }
      @media screen and (min-width: 990px) {
        .detail__bottom-left {
          flex: 1;
          min-width: 0;
          margin-bottom: 0; } }
    @media screen and (min-width: 990px) {
      .detail__bottom-right {
        width: 260px;
        margin-left: 20px; } }
  .detail__main-image-wrapper {
    position: relative;
    margin-bottom: 20px; }
  .detail__main-image-wrapper-link {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer; }
  .detail__thumbs-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    margin-top: -12px;
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12.5px 0 12.5px 13px;
    border-color: transparent transparent transparent #666;
    cursor: pointer; }
    .detail__thumbs-arrow--prev {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg);
      left: 0; }
    .detail__thumbs-arrow--next {
      right: 0; }
  .detail__thumbs .slick-list {
    width: 100%; }
  .detail__thumbs-list {
    margin-left: -10px;
    margin-right: -10px; }
    .detail__thumbs-list:not(.slick-initialized) {
      display: flex;
      flex-wrap: wrap; }
  .detail__thumbs-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    cursor: pointer; }
  .detail__heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; }
    @media screen and (min-width: 990px) {
      .detail__heading {
        align-items: center;
        flex-direction: row;
        justify-content: space-between; } }
  .detail__main-title {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 600; }
  .detail__rating {
    display: flex;
    align-items: center;
    position: relative;
    height: 15px;
    width: 88px;
    background: url("/img/bg-stars.png") no-repeat 0 0; }
    .detail__rating-in {
      position: absolute;
      left: 0;
      top: 0;
      height: 15px;
      width: 0;
      background: url("/img/bg-stars.png") no-repeat 0 -15px; }
  .detail__annotation {
    line-height: 25px;
    margin-bottom: 40px; }
  .detail__button {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    width: 100%;
    height: 57px;
    font-size: 16px;
    color: #fff;
    border-radius: 3px;
    transition: all 300ms ease; }
    .detail__button.disabled, .detail__button[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    @media screen and (min-width: 480px) {
      .detail__button {
        max-width: 310px;
        margin-left: auto;
        margin-right: auto; } }
    @media screen and (min-width: 768px) {
      .detail__button {
        margin-left: 0;
        margin-right: 0; } }
    .detail__button--buy {
      background-color: #f96905;
      border-bottom: 2px solid #cc5501; }
      .detail__button--buy:hover {
        background-color: #cc5501; }
    .detail__button--reserve {
      background-color: #028dc5;
      border-bottom: 2px solid #026b95;
      text-transform: uppercase; }
      .detail__button--reserve:hover {
        background-color: #026b95; }
  .detail__guarantee {
    display: none;
    margin-top: 10px;
    text-align: right; }
    @media screen and (min-width: 990px) {
      .detail__guarantee {
        margin-left: 190px; } }
    .detail__guarantee-select {
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      transition: all 300ms ease;
      background-color: #fff;
      margin-bottom: 3px; }
      .detail__guarantee-select::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .detail__guarantee-select:-ms-input-placeholder {
        color: #777; }
      .detail__guarantee-select::-webkit-input-placeholder {
        color: #777; }
      .detail__guarantee-select[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .detail__guarantee-select:focus {
        border-color: #424c58; }
      .detail__guarantee-select:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
      .detail__guarantee-select:invalid {
        color: #777; }
      .detail__guarantee-select option {
        color: #000; }
      .detail__guarantee-select[value=''][disabled] {
        display: none; }
    .detail__guarantee-link {
      font-size: 14px; }
  .detail__salecode {
    font-size: 14px;
    width: auto;
    color: #5a5a5a;
    position: relative;
    top: 0;
    text-align: center; }
    @media screen and (min-width: 800px) {
      .detail__salecode {
        top: 0;
        text-align: end;
        left: -200px; } }
    .detail__salecode span {
      color: #cc5501;
      font-weight: 800; }
    .detail__salecode-price {
      font-size: 40px;
      color: #5a5a5a;
      opacity: .75;
      width: 100%;
      text-align: center; }
      @media screen and (min-width: 800px) {
        .detail__salecode-price {
          text-align: right; } }
  .detail__info {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
    margin-bottom: 6px; }
    @media screen and (min-width: 768px) {
      .detail__info {
        grid-template-columns: 1fr 310px;
        grid-column-gap: 30px; } }
    .detail__info-section:nth-child(8) {
      margin-bottom: -20px; }
    @media screen and (max-width: 480px) {
      .detail__info-section:nth-child(8) {
        grid-column: 1;
        grid-row: 1; } }
    @media screen and (min-width: 768px) {
      .detail__info-section:nth-child(1) {
        margin-bottom: -20px; } }
    @media screen and (min-width: 768px) {
      .detail__info-section {
        display: flex;
        flex-direction: column; }
        .detail__info-section--price-availability {
          justify-content: center;
          height: auto; }
        .detail__info-section:nth-child(odd) {
          align-items: flex-end; }
        .detail__info-section:nth-child(1) {
          grid-column: 1;
          grid-row: 1 / 3;
          height: auto;
          justify-content: flex-end;
          margin-bottom: -20px; }
        .detail__info-section:nth-child(2) {
          grid-column: 1;
          grid-row: 2; }
        .detail__info-section:nth-child(3) {
          grid-column: 2;
          grid-row: 2;
          justify-content: flex-end;
          align-items: inherit;
          padding-bottom: 8px; }
        .detail__info-section:nth-child(4) {
          grid-column: 1;
          grid-row: 3;
          align-items: end; }
        .detail__info-section:nth-child(5) {
          grid-column: 2;
          grid-row: 3;
          justify-content: flex-end;
          align-items: inherit;
          padding-bottom: 8px; }
        .detail__info-section:nth-child(6) {
          grid-column: 1;
          grid-row: 4;
          align-items: end; }
        .detail__info-section:nth-child(7) {
          grid-column: 2;
          grid-row: 4; } }
  .detail__price {
    position: relative; }
    @media screen and (min-width: 768px) {
      .detail__price {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: auto; } }
    .detail__price-base {
      font-size: 20px;
      font-weight: 300;
      opacity: 0.5;
      text-decoration: line-through;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .detail__price-base {
          bottom: 100%;
          text-align: right; } }
    .detail__price-main {
      font-size: 40px;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .detail__price-main {
          text-align: right; } }
  .detail__availability {
    padding: 15px 10px;
    background-color: #f5f5f5;
    font-size: 14px;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .detail__availability {
        text-align: left; } }
    .detail__availability .green {
      color: #4ca728; }
    .detail__availability .red {
      color: #ff0000; }
    .detail__availability .orange {
      color: #ee5c23; }
  .detail__addon {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer; }
    @media screen and (min-width: 480px) {
      .detail__addon {
        max-width: 370px; } }
    @media screen and (min-width: 768px) {
      .detail__addon {
        margin-left: 0;
        margin-right: 0; } }
    .detail__addon--clickable .detail__addon-price-wrapper {
      padding-right: 20px; }
    .detail__addon-image {
      margin-right: 10px;
      width: 40px; }
      @media screen and (min-width: 480px) {
        .detail__addon-image {
          width: auto;
          margin-right: 20px; } }
    .detail__addon-text {
      flex: 1;
      min-width: 1px;
      font-size: 14px; }
    .detail__addon-price-wrapper {
      flex-shrink: 0;
      margin-top: 5px;
      margin-left: 50px;
      width: 100%;
      max-width: calc(100% - 50px);
      position: relative; }
      @media screen and (min-width: 480px) {
        .detail__addon-price-wrapper {
          width: auto;
          margin-left: 20px;
          margin-top: 0;
          text-align: right; } }
    .detail__addon-label {
      margin-bottom: -5px;
      opacity: 0.5;
      font-size: 12px; }
    .detail__addon-price {
      font-size: 30px; }
    .detail__addon-arrow {
      position: absolute;
      right: 0;
      top: 50%;
      width: 10px; }
  .detail__unavaibility {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; }
    .detail__unavaibility-value {
      font-weight: 700;
      font-size: 24px;
      color: #ff0000;
      margin-bottom: 15px; }
    .detail__unavaibility-link {
      color: #1fa2cd; }
  .detail__categories, .detail__discussion {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .detail__categories-title, .detail__discussion-title {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600; }
  .detail__more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 18px; }
    .detail__more-wrapper--active a span {
      display: none; }
    .detail__more-wrapper--active a:before {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .detail__more-wrapper--active a:after {
      content: attr(data-less); }
    .detail__more-wrapper a {
      position: relative;
      padding-left: 20px;
      font-size: 12px;
      color: #1fa2cd;
      cursor: pointer;
      text-decoration: underline; }
      .detail__more-wrapper a:hover {
        text-decoration: none; }
      .detail__more-wrapper a:before {
        position: absolute;
        left: 0;
        top: 6px;
        content: "";
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        display: inline-block;
        vertical-align: top;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 7px 7px 0 7px;
        border-color: #1fa2cd transparent transparent transparent; }
  .detail__parameters {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .detail__parameters-title {
      margin-bottom: 30px;
      font-size: 20px;
      font-weight: 600; }
    .detail__parameters-downloads {
      margin-bottom: 20px; }
      .detail__parameters-downloads-item {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        padding-bottom: 12px;
        margin-bottom: 19px;
        font-size: 14px; }
        .detail__parameters-downloads-item:last-child {
          margin-bottom: 0;
          border-bottom: 1px solid #c1c1c1; }
      .detail__parameters-downloads-label {
        width: 250px; }
      .detail__parameters-downloads-value a {
        font-size: 12px; }
    .detail__parameters-list--hidden {
      display: none;
      padding-top: 30px; }
    .detail__parameters-more-wrapper {
      display: flex;
      justify-content: center; }
      .detail__parameters-more-wrapper--active a span {
        display: none; }
      .detail__parameters-more-wrapper--active a:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
      .detail__parameters-more-wrapper--active a:after {
        content: attr(data-less); }
      .detail__parameters-more-wrapper a {
        position: relative;
        padding-left: 20px;
        font-size: 12px;
        color: #1fa2cd;
        cursor: pointer;
        text-decoration: underline; }
        .detail__parameters-more-wrapper a:hover {
          text-decoration: none; }
        .detail__parameters-more-wrapper a:before {
          position: absolute;
          left: 0;
          top: 6px;
          content: "";
          -webkit-transition: all 300ms ease;
          -o-transition: all 300ms ease;
          transition: all 300ms ease;
          display: inline-block;
          vertical-align: top;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 7px 7px 0 7px;
          border-color: #1fa2cd transparent transparent transparent; }
    .detail__parameters-section {
      margin-bottom: 30px; }
      .detail__parameters-section-title {
        margin-bottom: 10px;
        font-size: 20px;
        font-weight: 600; }
    .detail__parameters-table-row {
      display: flex;
      flex-direction: column;
      margin-bottom: 7px; }
      @media screen and (min-width: 480px) {
        .detail__parameters-table-row {
          flex-direction: row;
          margin-bottom: 0; } }
    .detail__parameters-table-col {
      position: relative;
      color: #666;
      font-size: 14px; }
      @media screen and (min-width: 480px) {
        .detail__parameters-table-col {
          padding-top: 7px;
          padding-bottom: 7px; } }
      .detail__parameters-table-col:first-child {
        font-weight: 700; }
        @media screen and (min-width: 480px) {
          .detail__parameters-table-col:first-child {
            width: 270px;
            font-weight: 400; } }
      @media screen and (min-width: 480px) {
        .detail__parameters-table-col:last-child {
          flex: 1; } }
      .detail__parameters-table-col .detail__parameters-highlight {
        text-decoration: underline;
        cursor: help; }
        .detail__parameters-table-col .detail__parameters-highlight:hover .detail__parameters-tooltip {
          display: block; }
    .detail__parameters-tooltip {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      width: 300px;
      padding: 8px;
      z-index: 2;
      margin-top: 3px;
      border-radius: 3px;
      background-color: #fff;
      border: 1px solid #c1c1c1;
      font-size: 12px; }
      .detail__parameters-tooltip:before, .detail__parameters-tooltip:after {
        position: absolute;
        left: 8px;
        top: -9px;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-width: 0 9px 9px 9px; }
      .detail__parameters-tooltip:before {
        border-color: transparent transparent #c1c1c1 transparent; }
      .detail__parameters-tooltip:after {
        margin-top: 1px;
        border-color: transparent transparent #fff transparent; }
  .detail__fast-sale {
    padding-top: 11px;
    padding-bottom: 14px;
    margin-bottom: 19px;
    background-color: #ee5c23;
    color: #fff;
    text-align: center; }
    .detail__fast-sale-title {
      font-size: 26px;
      font-weight: 600; }
    .detail__fast-sale-text {
      margin-top: -1px;
      font-size: 18px; }
  .detail__moje-kava {
    padding-top: 11px;
    padding-bottom: 14px;
    margin-bottom: 19px;
    background-color: #f9ebe2;
    color: #ee5c23;
    text-align: center; }
    .detail__moje-kava-title {
      font-size: 26px;
      font-weight: 600; }
    .detail__moje-kava-text {
      margin-top: -1px;
      font-size: 18px; }
  .detail__expert-klub {
    padding-top: 11px;
    padding-bottom: 14px;
    margin-bottom: 19px;
    background-color: #ee5c23;
    color: #fff;
    text-align: center; }
    .detail__expert-klub-title {
      font-size: 26px;
      font-weight: 600; }
      .detail__expert-klub-title strong {
        font-weight: 700; }
    .detail__expert-klub-text {
      margin-top: -1px;
      font-size: 18px; }
  .detail__benefits {
    margin-bottom: 20px; }
    .detail__benefits-inner {
      display: flex;
      flex-direction: column; }
      @media screen and (min-width: 990px) {
        .detail__benefits-inner {
          flex-direction: row;
          flex-wrap: wrap;
          margin-left: -10px;
          margin-right: -10px; } }
    .detail__benefits-item {
      padding: 15px 20px;
      margin-bottom: 10px;
      background-color: #fff;
      border: 1px solid #c1c1c1;
      text-decoration: none;
      color: #000; }
      @media screen and (min-width: 990px) {
        .detail__benefits-item {
          margin: 0 10px;
          width: calc(100% / 3 - 20px); } }
    .detail__benefits-title {
      margin-bottom: 15px;
      font-weight: 600; }
    .detail__benefits-product {
      display: flex;
      align-items: center; }
      .detail__benefits-product-image-wrapper {
        width: 70px;
        height: 70px;
        margin-right: 20px;
        border: 6px solid #f1f1f1; }
      .detail__benefits-product-text-wrapper {
        flex: 1; }
      .detail__benefits-product-title {
        margin-bottom: 5px;
        font-size: 20px;
        font-weight: 600; }
      .detail__benefits-product-text {
        line-height: 17px;
        font-size: 14px;
        color: #666; }
    .detail__benefits-more {
      line-height: 17px;
      font-size: 14px;
      color: #666; }
    .detail__benefits-price {
      display: flex;
      align-items: baseline; }
      .detail__benefits-price-label {
        margin-right: 5px;
        font-size: 14px;
        color: #666; }
      .detail__benefits-price-value {
        font-size: 24px;
        font-weight: 600;
        color: #000; }
    .detail__benefits-text {
      line-height: 17px;
      margin-bottom: 10px;
      font-size: 14px;
      color: #666; }
      .detail__benefits-text strong {
        color: #000; }
    .detail__benefits-bottom {
      display: flex;
      flex-direction: column; }
      @media screen and (min-width: 480px) {
        .detail__benefits-bottom {
          justify-content: space-between;
          align-items: baseline;
          flex-direction: row; } }
    .detail__benefits-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      height: 36px;
      padding-left: 15px;
      padding-right: 15px;
      padding-left: 7px;
      padding-right: 7px;
      height: 31px;
      margin-top: 5px; }
      .detail__benefits-button.disabled, .detail__benefits-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      @media screen and (min-width: 480px) {
        .detail__benefits-button {
          margin-top: 0; } }
      .detail__benefits-button--green {
        background-color: #4ca728;
        color: #fff; }
        .detail__benefits-button--green:not(:disabled):hover {
          background-color: #81c168;
          color: #fff; }
      .detail__benefits-button--blue {
        background-color: #1fa2cd;
        color: #fff; }
        .detail__benefits-button--blue:not(:disabled):hover {
          background-color: #62bedc;
          color: #fff; }
  .detail__unpacked {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    background-color: #ebebeb;
    color: #666; }
    .detail__unpacked strong {
      font-weight: 700; }
    .detail__unpacked .title {
      font-size: 20px;
      font-weight: 700;
      color: #ee5c23;
      margin-bottom: 10px; }
      .detail__unpacked .title span {
        color: #666; }
    .detail__unpacked .annotation {
      font-size: 14px; }
    .detail__unpacked .row-inner {
      width: 100%;
      max-width: 100%;
      display: flex;
      flex-flow: row wrap;
      margin-top: 0;
      margin-right: auto;
      margin-left: auto;
      align-items: center; }
    .detail__unpacked .col-1 {
      flex: 0 0 auto;
      width: calc(100% / 1); }
      @media (min-width: 992px) {
        .detail__unpacked .col-1 {
          flex: 0 0 auto;
          width: calc(100% / 6); } }
      .detail__unpacked .col-1 .icon {
        width: 64px; }
        @media (min-width: 992px) {
          .detail__unpacked .col-1 .icon {
            width: 100px; } }
    .detail__unpacked .col-2 {
      flex: 0 0 auto;
      width: calc(100% / 1); }
      @media (min-width: 992px) {
        .detail__unpacked .col-2 {
          flex: 0 0 auto;
          width: calc(100% / 2); } }
      .detail__unpacked .col-2 .icon {
        width: 64px; }
    .detail__unpacked .col-3 {
      flex: 0 0 auto;
      width: calc(100% / 1);
      display: flex;
      padding: 0;
      justify-content: space-between;
      margin-top: 16px; }
      @media (min-width: 992px) {
        .detail__unpacked .col-3 {
          flex: 0 0 auto;
          width: calc(100% / 3); } }
      @media (min-width: 992px) {
        .detail__unpacked .col-3 {
          flex-direction: column;
          justify-items: center;
          padding: 0 50px;
          margin-top: 0; } }
      @media (max-width: 480px) {
        .detail__unpacked .col-3 {
          flex-direction: column; } }
      .detail__unpacked .col-3 .price {
        margin-bottom: 6px;
        text-align: center;
        color: #000; }
        .detail__unpacked .col-3 .price > span {
          font-size: 16px; }
        .detail__unpacked .col-3 .price > strong {
          font-size: 28px; }
    .detail__unpacked .top {
      display: flex; }
      .detail__unpacked .top .icon {
        width: 64px;
        margin-right: 12px; }
        .detail__unpacked .top .icon:before {
          width: 64px; }
    .detail__unpacked .col:first-child {
      width: 100%; }
      @media (min-width: 992px) {
        .detail__unpacked .col:first-child {
          width: 22%; } }
    .detail__unpacked .col:last-child {
      width: 100%; }
      @media (min-width: 992px) {
        .detail__unpacked .col:last-child {
          width: 78%; } }
    .detail__unpacked .col > .icon {
      width: 64px; }
      @media (min-width: 992px) {
        .detail__unpacked .col > .icon {
          width: 100px; } }
    .detail__unpacked .col .bottom {
      margin-top: 20px; }
      .detail__unpacked .col .bottom .annotation {
        font-size: 16px; }
    .detail__unpacked .detail__products-item-button span {
      text-transform: uppercase; }
    .detail__unpacked--children .children {
      display: none;
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      background-color: white; }
  .detail__products {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .detail__products-title {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600; }
    .detail__products-list {
      display: flex;
      flex-wrap: wrap;
      margin-left: -20px;
      margin-right: -20px; }
      .detail__products-list--hidden {
        display: none; }
    .detail__products-item {
      display: flex;
      flex-direction: column;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
      margin-bottom: 20px; }
      @media screen and (min-width: 480px) {
        .detail__products-item {
          width: calc(100% / 2);
          border-right: 1px solid #c1c1c1; } }
      @media (min-width: 480px) and (max-width: 767px) {
        .detail__products-item:nth-child(2n) {
          border-right: none; } }
      @media screen and (min-width: 768px) {
        .detail__products-item {
          width: calc(100% / 3); }
          .detail__products-item:nth-child(3n) {
            border-right: none; } }
      .detail__products-item-title {
        line-height: 27px;
        margin-bottom: 5px;
        height: 54px;
        overflow: hidden;
        font-size: 20px;
        font-weight: 600;
        text-decoration: none;
        color: #000; }
      .detail__products-item-image-wrapper {
        position: relative;
        height: 250px;
        width: 100%;
        margin-bottom: 20px;
        text-align: center; }
        .detail__products-item-image-wrapper-link {
          display: block; }
      .detail__products-item-rating {
        position: relative;
        height: 15px;
        width: 88px;
        margin-bottom: 10px;
        background: url("/img/bg-stars.png") no-repeat 0 0; }
        .detail__products-item-rating-inner {
          position: absolute;
          left: 0;
          top: 0;
          height: 15px;
          width: 0;
          background: url("/img/bg-stars.png") no-repeat 0 -15px; }
      .detail__products-item-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-bottom: 2px; }
      .detail__products-item-base-price {
        position: relative;
        margin-bottom: -1px;
        min-height: 21px;
        line-height: 21px;
        color: #747474; }
        .detail__products-item-base-price:before {
          position: absolute;
          width: 100%;
          height: 1px;
          left: 0;
          top: 10px;
          content: "";
          background-color: #ff0000; }
      .detail__products-item-main-price {
        text-align: right;
        font-size: 24px; }
      .detail__products-item-avaibility {
        margin-bottom: 6px;
        font-size: 12px;
        text-align: right; }
        .detail__products-item-avaibility--green {
          color: #4ca728; }
      .detail__products-item-form {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 5px; }
      .detail__products-item-button {
        flex-shrink: 0;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 300ms ease;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        background-color: #4ca728;
        color: #fff;
        height: 36px;
        padding-left: 15px;
        padding-right: 15px; }
        .detail__products-item-button.disabled, .detail__products-item-button[disabled] {
          cursor: not-allowed;
          background-color: #f8f8f8;
          color: #bbb; }
        .detail__products-item-button:not(:disabled):hover {
          background-color: #81c168;
          color: #fff; }
      .detail__products-item-compare {
        margin-left: auto;
        font-size: 12px; }
    .detail__products-more-wrapper {
      display: flex;
      justify-content: center; }
      .detail__products-more-wrapper--active a span {
        display: none; }
      .detail__products-more-wrapper--active a:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
      .detail__products-more-wrapper--active a:after {
        content: attr(data-less); }
      .detail__products-more-wrapper a {
        position: relative;
        padding-left: 20px;
        font-size: 12px;
        color: #1fa2cd;
        cursor: pointer;
        text-decoration: underline; }
        .detail__products-more-wrapper a:hover {
          text-decoration: none; }
        .detail__products-more-wrapper a:before {
          position: absolute;
          left: 0;
          top: 6px;
          content: "";
          -webkit-transition: all 300ms ease;
          -o-transition: all 300ms ease;
          transition: all 300ms ease;
          display: inline-block;
          vertical-align: top;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 7px 7px 0 7px;
          border-color: #1fa2cd transparent transparent transparent; }
  .detail__top-products {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .detail__top-products-title {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600; }
    @media screen and (max-width: 599px) {
      .detail__top-products-list {
        display: flex;
        flex-direction: column; }
        .detail__top-products-list .top-product {
          margin-bottom: 30px;
          border-bottom: 1px solid #c1c1c1; }
          .detail__top-products-list .top-product:last-child {
            margin-bottom: 0;
            border-bottom: none; }
          .detail__top-products-list .top-product__link {
            padding: 0 15px 15px 15px; }
          .detail__top-products-list .top-product__title {
            height: 34px; } }
    @media screen and (min-width: 600px) and (max-width: 989px) {
      .detail__top-products-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap; }
        .detail__top-products-list .top-product {
          width: 100%;
          margin-bottom: 15px;
          border-bottom: 1px solid #c1c1c1; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 480px) {
      .detail__top-products-list .top-product {
        width: calc(100% / 2 - 1px);
        border-right: 1px solid #c1c1c1;
        border-bottom: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 480px) and (max-width: 599px) {
      .detail__top-products-list .top-product:nth-child(2n) {
        border-right: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 600px) {
      .detail__top-products-list .top-product {
        width: calc(100% / 3 - 1px); } }
  @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 600px) and (min-width: 600px) and (max-width: 979px) {
    .detail__top-products-list .top-product:nth-child(3n) {
      border-right: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 990px) {
      .detail__top-products-list .top-product {
        width: calc(100% / 6 - 1px);
        margin-bottom: 0; } }
    @media screen and (min-width: 600px) and (max-width: 989px) {
          .detail__top-products-list .top-product:last-child {
            border-right: none;
            border-bottom: none; }
          .detail__top-products-list .top-product__link {
            padding: 0 30px 10px 30px; }
          .detail__top-products-list .top-product__title {
            height: 34px; } }
    @media screen and (min-width: 990px) {
      .detail__top-products-list {
        display: flex;
        flex-direction: column; }
        .detail__top-products-list .top-product {
          margin-bottom: 30px;
          border-bottom: 1px solid #c1c1c1; }
          .detail__top-products-list .top-product:last-child {
            margin-bottom: 0;
            border-bottom: none; }
          .detail__top-products-list .top-product__link {
            padding: 0 15px 15px 15px; }
          .detail__top-products-list .top-product__title {
            height: 34px; } }
    .detail__top-products-hidden {
      display: none;
      padding-top: 30px;
      border-top: 1px solid #c1c1c1; }
    .detail__top-products-more-wrapper {
      display: flex;
      justify-content: center; }
      .detail__top-products-more-wrapper--active a span {
        display: none; }
      .detail__top-products-more-wrapper--active a:before {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
      .detail__top-products-more-wrapper--active a:after {
        content: attr(data-less); }
      .detail__top-products-more-wrapper a {
        position: relative;
        padding-left: 20px;
        font-size: 12px;
        color: #1fa2cd;
        cursor: pointer;
        text-decoration: underline; }
        .detail__top-products-more-wrapper a:hover {
          text-decoration: none; }
        .detail__top-products-more-wrapper a:before {
          position: absolute;
          left: 0;
          top: 6px;
          content: "";
          -webkit-transition: all 300ms ease;
          -o-transition: all 300ms ease;
          transition: all 300ms ease;
          display: inline-block;
          vertical-align: top;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 7px 7px 0 7px;
          border-color: #1fa2cd transparent transparent transparent; }
  .detail__reviews {
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
    .detail__reviews-title {
      margin-bottom: 15px;
      font-size: 20px;
      font-weight: 600; }
    .detail__reviews-list {
      margin-bottom: 15px; }
    .detail__reviews-item {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #c1c1c1; }
      .detail__reviews-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none; }
    .detail__reviews-heading {
      display: flex;
      align-items: center;
      margin-bottom: 20px; }
    .detail__reviews-name {
      margin-right: 15px; }
    .detail__reviews-stars {
      position: relative;
      height: 15px;
      width: 88px;
      margin-right: 10px;
      background: url("/img/bg-stars.png") no-repeat 0 0; }
      .detail__reviews-stars-inner {
        position: absolute;
        left: 0;
        top: 0;
        height: 15px;
        width: 0;
        background: url("/img/bg-stars.png") no-repeat 0 -15px; }
    .detail__reviews-text {
      line-height: 17px;
      font-size: 14px; }
      .detail__reviews-text-item {
        margin-bottom: 15px; }
        .detail__reviews-text-item:last-child {
          margin-bottom: 0; }
        .detail__reviews-text-item--plus, .detail__reviews-text-item--minus {
          position: relative;
          padding-left: 15px; }
        .detail__reviews-text-item--plus {
          color: #4ca728; }
          .detail__reviews-text-item--plus:before {
            content: "+"; }
        .detail__reviews-text-item--minus {
          color: #ff0000; }
          .detail__reviews-text-item--minus:before {
            content: "-"; }
        .detail__reviews-text-item:before {
          position: absolute;
          left: 0;
          top: 0; }
    .detail__reviews-buttons-wrapper {
      display: flex;
      justify-content: center; }
    .detail__reviews-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      height: 28px;
      padding-left: 15px;
      padding-right: 15px;
      font-size: 12px;
      background-color: #4ca728;
      color: #fff; }
      .detail__reviews-button.disabled, .detail__reviews-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .detail__reviews-button:not(:disabled):hover {
        background-color: #81c168;
        color: #fff; }
    .detail__reviews-add {
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      margin-top: 20px;
      max-width: 650px; }
      @media screen and (min-width: 768px) {
        .detail__reviews-add {
          left: auto;
          width: 650px; } }
      .detail__reviews-add-title {
        margin-bottom: 30px;
        font-size: 20px;
        font-weight: 600; }
      .detail__reviews-add-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px; }
        @media screen and (min-width: 480px) {
          .detail__reviews-add-row {
            flex-direction: row; } }
      .detail__reviews-add-value {
        flex: 1; }
      .detail__reviews-add-stars {
        width: 153px;
        height: 25px;
        position: relative;
        margin-bottom: 10px;
        margin-top: 7px;
        background: url("/img/bg-stars-big.png") 0 -25px no-repeat;
        cursor: pointer; }
        .detail__reviews-add-stars-inner {
          position: absolute;
          left: 0;
          top: 0;
          width: 0;
          height: 100%;
          cursor: pointer;
          background: url("/img/bg-stars-big.png") 0 0 no-repeat; }
      .detail__reviews-add-label {
        margin-bottom: 5px;
        cursor: pointer; }
        @media screen and (min-width: 480px) {
          .detail__reviews-add-label {
            width: 150px;
            margin: 10px 15px 0 0; } }
      .detail__reviews-add-list {
        display: flex;
        flex-direction: column;
        flex: 1;
        margin-bottom: 10px; }
        .detail__reviews-add-list-item {
          margin-bottom: 5px; }
          .detail__reviews-add-list-item:last-child {
            margin-bottom: 0; }
      .detail__reviews-add-input {
        display: flex;
        align-items: center;
        height: 40px;
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        border: 1px solid #c1c1c1;
        background-color: #fff;
        max-width: 250px; }
        .detail__reviews-add-input::-moz-placeholder {
          color: #777;
          opacity: 1; }
        .detail__reviews-add-input:-ms-input-placeholder {
          color: #777; }
        .detail__reviews-add-input::-webkit-input-placeholder {
          color: #777; }
        .detail__reviews-add-input[disabled] {
          background-color: #f8f8f8;
          cursor: not-allowed;
          border-color: #bbb; }
        .detail__reviews-add-input:focus {
          border-color: #424c58; }
        .detail__reviews-add-input:not(.ng-pristine).ng-invalid {
          border-color: #ff0000;
          background-color: #fff0f0; }
      .detail__reviews-add-textarea {
        display: flex;
        align-items: center;
        height: 75px;
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        border: 1px solid #c1c1c1;
        background-color: #fff;
        resize: none;
        padding-top: 10px;
        padding-bottom: 10px; }
        .detail__reviews-add-textarea::-moz-placeholder {
          color: #777;
          opacity: 1; }
        .detail__reviews-add-textarea:-ms-input-placeholder {
          color: #777; }
        .detail__reviews-add-textarea::-webkit-input-placeholder {
          color: #777; }
        .detail__reviews-add-textarea[disabled] {
          background-color: #f8f8f8;
          cursor: not-allowed;
          border-color: #bbb; }
        .detail__reviews-add-textarea:focus {
          border-color: #424c58; }
        .detail__reviews-add-textarea:not(.ng-pristine).ng-invalid {
          border-color: #ff0000;
          background-color: #fff0f0; }
      .detail__reviews-add-buttons-wrapper {
        display: flex;
        justify-content: center; }
      .detail__reviews-add-send {
        flex-shrink: 0;
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: all 300ms ease;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        background-color: #4ca728;
        color: #fff;
        height: 40px;
        padding-left: 15px;
        padding-right: 15px; }
        .detail__reviews-add-send.disabled, .detail__reviews-add-send[disabled] {
          cursor: not-allowed;
          background-color: #f8f8f8;
          color: #bbb; }
        .detail__reviews-add-send:not(:disabled):hover {
          background-color: #81c168;
          color: #fff; }
  .detail__club {
    width: 100%;
    margin-top: 15px;
    font-size: 14px;
    text-align: center; }
    @media screen and (min-width: 600px) {
      .detail__club {
        text-align: left; } }
  .detail__club-info {
    margin-top: 5px;
    font-size: 12px;
    text-align: center; }
    @media screen and (min-width: 480px) {
      .detail__club-info {
        max-width: 310px;
        width: 100%; } }
    .detail__club-info span {
      color: #ee5c23; }
  .detail__points {
    position: relative;
    z-index: 2;
    padding: 5px;
    max-width: 170px;
    margin-left: auto;
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background-color: #ee5c23; }
    .detail__points:before {
      position: absolute;
      left: 10px;
      top: -10px;
      width: 0;
      height: 0;
      content: "";
      transform: rotate(-30deg);
      border-style: solid;
      border-width: 0 6px 18px 6px;
      border-color: transparent transparent #ee5c23 transparent; }

.miele__inner {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .miele__inner {
      flex-direction: row; } }

@media screen and (min-width: 990px) {
  .miele__left {
    width: 260px;
    margin-right: 20px; } }

.miele__right {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  @media screen and (min-width: 990px) {
    .miele__right {
      flex: 1;
      max-width: calc(100% - 280px); } }

.miele__categories {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .miele__categories-title {
    padding-bottom: 30px;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid #8c0014; }

.miele__miele-stripe {
  margin-bottom: 25px; }

.miele__main-banner {
  margin-bottom: 40px; }

.miele__description {
  margin-bottom: 30px; }
  .miele__description-image-wrapper {
    width: 235px;
    margin-right: 25px; }
  .miele__description-text-wrapper {
    flex: 1; }
  .miele__description-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600; }
  .miele__description-text {
    line-height: 17px;
    color: #666;
    font-size: 14px; }

.miele__banners {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (min-width: 480px) {
    .miele__banners {
      margin-left: -10px;
      margin-right: -10px; } }
  .miele__banners-item {
    margin-bottom: 20px; }
    @media screen and (min-width: 480px) {
      .miele__banners-item {
        width: calc(100% / 2 - 20px);
        margin-left: 10px;
        margin-right: 10px; } }

.miele__info {
  display: flex;
  flex-wrap: wrap; }
  @media screen and (min-width: 480px) {
    .miele__info {
      margin-left: -10px;
      margin-right: -10px; } }
  .miele__info-item {
    margin-bottom: 30px; }
    @media screen and (min-width: 480px) {
      .miele__info-item {
        width: calc(100% / 2 - 20px);
        margin-left: 10px;
        margin-right: 10px; } }
    @media screen and (min-width: 600px) {
      .miele__info-item {
        width: calc(100% / 3 - 20px); } }
  .miele__info-title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600; }
  .miele__info-text {
    line-height: 17px;
    color: #666;
    font-size: 14px; }

.catalog {
  border: 1px solid #c1c1c1; }
  .catalog__main-title {
    margin-bottom: 15px;
    font-size: 34px;
    font-weight: 400;
    color: #ee5c23; }
  .catalog__top {
    padding: 15px;
    background-color: #fff; }
    @media screen and (min-width: 768px) {
      .catalog__top {
        padding: 25px; } }
  .catalog__banner {
    margin: -15px;
    margin-top: 10px; }
    @media screen and (min-width: 768px) {
      .catalog__banner {
        margin: -25px;
        margin-top: 10px; } }
  .catalog__inner {
    display: flex;
    flex-direction: column;
    padding: 15px;
    background-color: #f0f0f0; }
    @media screen and (min-width: 768px) {
      .catalog__inner {
        padding: 20px; } }
    @media screen and (min-width: 990px) {
      .catalog__inner {
        flex-direction: row; } }
  .catalog__left {
    position: relative;
    z-index: 2; }
    @media screen and (min-width: 990px) {
      .catalog__left {
        width: 260px;
        margin-right: 20px; } }
  .catalog__right {
    position: relative;
    z-index: 1; }
    @media screen and (min-width: 990px) {
      .catalog__right {
        flex: 1;
        min-width: 0; } }
  .catalog__miele-stripe {
    margin-bottom: 28px; }
  @media screen and (max-width: 989px) {
    .catalog__filter {
      position: fixed;
      z-index: 99;
      right: 0;
      top: 0;
      width: calc(100% - 100px);
      max-width: 500px;
      max-height: 100%;
      overflow-y: auto;
      -webkit-transition: 300ms ease all;
      -o-transition: 300ms ease all;
      transition: 300ms ease all;
      transform: translate(100%); } }
  @media screen and (max-width: 479px) {
    .catalog__filter {
      width: 100%; } }
  .catalog__description {
    line-height: 19px;
    margin-bottom: 25px; }
    .catalog__description--visible .catalog__description-inner {
      max-height: 1000px; }
    .catalog__description--visible .catalog__description-more:after {
      display: block; }
    .catalog__description--visible .catalog__description-more:before {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .catalog__description--visible .catalog__description-more span {
      display: none; }
    .catalog__description-inner {
      max-height: 76px;
      overflow: hidden;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
      .catalog__description-inner .catalog__producers-list > a {
        margin-right: 15px; }
    .catalog__description-more-wrapper {
      display: flex;
      justify-content: center; }
    .catalog__description-more {
      position: relative;
      margin-top: 15px;
      padding-right: 15px;
      cursor: pointer;
      font-size: 12px; }
      .catalog__description-more:hover {
        text-decoration: none; }
      .catalog__description-more:before {
        position: absolute;
        right: 0;
        top: 7px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        display: inline-block;
        vertical-align: top;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 5.5px 0 5.5px;
        border-color: #1fa2cd transparent transparent transparent;
        content: ""; }
      .catalog__description-more:after {
        display: none;
        content: attr(data-less); }
  .catalog__open-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin-bottom: 30px;
    background-color: #1fa2cd;
    color: #fff;
    font-weight: 700;
    cursor: pointer; }
    @media screen and (min-width: 990px) {
      .catalog__open-filter {
        display: none; } }
    .catalog__open-filter:after {
      margin-left: 5px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 5.5px 0 5.5px;
      border-color: #fff transparent transparent transparent; }
  .catalog__show-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    margin-bottom: 30px;
    background-color: #1fa2cd;
    color: #fff;
    font-weight: 700;
    cursor: pointer; }
    @media screen and (min-width: 990px) {
      .catalog__show-filter {
        display: none; } }
    .catalog__show-filter:after {
      margin-left: 5px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 5.5px 0 5.5px;
      border-color: #fff transparent transparent transparent; }
    .catalog__show-filter .icon {
      display: none;
      width: 12px; }
  .catalog__sort {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px; }
    @media screen and (min-width: 480px) {
      .catalog__sort {
        flex-direction: row;
        align-items: baseline; } }
    .catalog__sort-label {
      margin-bottom: 10px;
      font-size: 14px;
      color: #666; }
      @media screen and (min-width: 480px) {
        .catalog__sort-label {
          margin-right: 20px;
          margin-bottom: 0; } }
    .catalog__sort-list {
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
      .catalog__sort-list a span {
        font-size: 20px;
        margin-top: -5px;
        margin-right: 10px; }
      .catalog__sort-list a .non-active-up {
        color: #747474; }
      .catalog__sort-list a .non-active-down {
        color: #747474; }
      .catalog__sort-list a .active-down {
        color: #fff; }
      .catalog__sort-list a .active-up {
        color: #fff; }
    .catalog__sort-item {
      display: flex;
      align-items: center;
      height: 34px;
      margin-right: 10px;
      padding-left: 10px;
      padding-right: 10px;
      margin-top: 10px;
      border: 1px solid #cdcdcd;
      border-bottom-width: 2px;
      border-radius: 3px;
      font-size: 14px;
      background-color: #fff;
      color: #ee5c23;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none; }
      .catalog__sort-item:last-child {
        margin-right: 0; }
      .catalog__sort-item--active {
        background-color: #fa6c08;
        color: #fff;
        border-color: #fa6c08;
        border-bottom-color: #ca5802; }
    .catalog__sort-select {
      display: none;
      max-width: 300px; }
  .catalog__products {
    margin-bottom: 20px;
    padding: 15px;
    margin-right: -16px;
    margin-left: -16px;
    border: 1px solid #cdcdcd;
    background-color: #fff; }
    @media screen and (min-width: 990px) {
      .catalog__products {
        margin-right: -20px;
        margin-left: 0;
        padding: 20px;
        border-right: none; } }
    .catalog__products-inner {
      overflow: hidden; }
    .catalog__products-wrapper:not(.slick-initialized) {
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      margin-bottom: -16px;
      margin-left: -20px;
      margin-right: -20px; }
    .catalog__products-wrapper .product {
      width: calc(100% / 2); }
      @media screen and (min-width: 768px) {
        .catalog__products-wrapper .product {
          width: calc(100% / 3); } }

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #c1c1c1; }
  .checkout-steps__item {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    height: 44px;
    width: calc(100% / 3);
    font-size: 20px;
    color: #000;
    text-decoration: none; }
    @media screen and (min-width: 768px) {
      .checkout-steps__item {
        display: flex; } }
    .checkout-steps__item--done {
      z-index: 2; }
    @media screen and (min-width: 768px) {
      .checkout-steps__item:before, .checkout-steps__item:after {
        position: absolute;
        left: 100%;
        top: 0;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-width: 22px 0 22px 22px; } }
    .checkout-steps__item:before {
      border-color: transparent transparent transparent #ee5c23; }
    .checkout-steps__item:after {
      margin-left: -1px;
      border-color: transparent transparent transparent #fff; }
    .checkout-steps__item--active {
      display: flex;
      background-color: #ee5c23;
      color: #fff; }
      .checkout-steps__item--active:after {
        border-color: transparent transparent transparent #ee5c23; }
      .checkout-steps__item--active .checkout-steps__icon path {
        fill: #fff; }
    .checkout-steps__item:last-child:before, .checkout-steps__item:last-child:after {
      display: none; }
  .checkout-steps__icon {
    margin-right: 25px; }
    .checkout-steps__icon path {
      fill: #ee5c23; }

.checkout-table {
  margin-bottom: 14px !important; }
  .checkout-table__item {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #c1c1c1; }
    @media screen and (min-width: 990px) {
      .checkout-table__item {
        align-items: flex-start; } }
    .checkout-table__item:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border-bottom: 0; }
    .checkout-table__item-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center; }
      @media screen and (min-width: 990px) {
        .checkout-table__item-top {
          display: grid;
          grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 30px;
          grid-template-rows: 1fr; } }
  .checkout-table__col--position {
    display: none; }
    @media screen and (min-width: 990px) {
      .checkout-table__col--position {
        width: 36px;
        margin-right: 20px; } }
  .checkout-table__col--product {
    width: 100%;
    margin-bottom: 15px; }
    @media screen and (min-width: 990px) {
      .checkout-table__col--product {
        flex: 1;
        width: auto;
        margin-bottom: 0;
        grid-column: 1 / 6;
        grid-row: 1; } }
  @media screen and (min-width: 990px) {
    .checkout-table__col--amount {
      width: 57px;
      grid-column: 6 / 7;
      grid-row: 1; } }
  @media screen and (min-width: 990px) {
    .checkout-table__col--price {
      grid-column: 7 / 12;
      grid-row: 1; } }
  @media screen and (min-width: 990px) and (max-width: 1117px) {
    .checkout-table__col--price {
      margin-bottom: 1em; } }
  .checkout-table__col--salecode {
    width: 100%;
    display: flex; }
    @media screen and (min-width: 990px) {
      .checkout-table__col--salecode {
        grid-column: 7 / 12;
        grid-row: 1;
        position: relative;
        top: 30px;
        left: 0; } }
  @media screen and (min-width: 990px) {
    .checkout-table__col--remove {
      width: 30px;
      text-align: right;
      grid-column: 12 / 13;
      grid-row: 1; } }
  @media screen and (max-width: 989px) {
    .checkout-table__col--remove {
      width: 100%;
      float: right; } }
  .checkout-table__amount {
    display: flex;
    position: relative;
    padding-right: 22px; }
    .checkout-table__amount-input {
      width: 34px;
      height: 32px;
      text-align: center; }
    .checkout-table__amount-controller {
      position: absolute;
      right: 0;
      width: 19px;
      height: 15px;
      line-height: 12px;
      background-color: #1fa2cd;
      color: #fff;
      text-align: center;
      cursor: pointer; }
      .checkout-table__amount-controller--plus {
        top: 0; }
      .checkout-table__amount-controller--minus {
        bottom: 0; }
  .checkout-table__price {
    font-size: 24px;
    text-align: right; }
  .checkout-table__position {
    width: 36px;
    height: 36px;
    padding-top: 2px;
    border-radius: 50%;
    background-color: #ee5c23;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    text-align: center; }
  .checkout-table__product {
    display: flex;
    flex-direction: column; }
    .checkout-table__product-image-wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      width: 45px;
      margin-right: 20px; }
    .checkout-table__product-title {
      font-size: 20px;
      font-weight: 600; }
    .checkout-table__product-main {
      display: flex;
      align-items: center;
      min-height: 1px;
      color: #000;
      text-decoration: none; }
      .checkout-table__product-main:hover {
        text-decoration: underline; }
    .checkout-table__product-gift {
      margin-top: 15px; }
      @media screen and (min-width: 768px) {
        .checkout-table__product-gift {
          margin-left: 65px; } }
    .checkout-table__product-addons {
      margin-top: 15px;
      max-widtH: 415px;
      width: 100%; }
      @media screen and (min-width: 990px) {
        .checkout-table__product-addons {
          margin-left: 65px; } }
      .checkout-table__product-addons-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
        color: #666; }
        @media screen and (min-width: 480px) {
          .checkout-table__product-addons-item {
            flex-direction: row;
            align-items: baseline;
            margin-bottom: 4px; } }
        .checkout-table__product-addons-item:last-child {
          margin-bottom: 0; }
      .checkout-table__product-addons-label {
        flex: 1;
        display: block;
        position: relative;
        padding-left: 20px;
        cursor: pointer; }
      .checkout-table__product-addons-input {
        position: absolute;
        left: 0;
        top: 5px;
        cursor: pointer; }
      .checkout-table__product-addons-price {
        padding-left: 20px; }
        @media screen and (min-width: 480px) {
          .checkout-table__product-addons-price {
            width: 90px;
            padding-left: 0; } }
  .checkout-table__remove {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none; }
    @media screen and (max-width: 989px) {
      .checkout-table__remove {
        float: right; } }
    .checkout-table__remove-icon path {
      fill: #ff0000; }
  .checkout-table__salecode {
    color: #5a5a5a;
    position: relative;
    width: 70%;
    line-height: 26px; }
    @media screen and (min-width: 750px) {
      .checkout-table__salecode {
        position: unset;
        width: 75%;
        text-align: right; } }
    .checkout-table__salecode span {
      color: #cc5501;
      font-weight: 800; }
    .checkout-table__salecode-price {
      font-size: 24px;
      color: #5a5a5a;
      opacity: .75;
      width: 30%;
      text-align: right;
      position: relative;
      top: 0;
      line-height: 26px;
      min-width: 120px; }
      @media screen and (min-width: 750px) {
        .checkout-table__salecode-price {
          position: unset;
          width: 25%; } }
  .checkout-table__guarantee-link {
    margin-top: 3px;
    font-size: 12px; }

.checkout-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end; }
  .checkout-price__row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 7px; }
    .checkout-price__row:last-child {
      margin-bottom: 0; }
    .checkout-price__row--total .checkout-price__label {
      font-size: 24px; }
    .checkout-price__row--total .checkout-price__value {
      font-size: 24px; }
    @media screen and (min-width: 768px) {
      .checkout-price__row {
        align-items: center;
        flex-direction: row; } }
  .checkout-price__label {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    font-weight: 600;
    text-align: right; }
    .checkout-price__label span {
      margin-top: -1px;
      font-weight: 400;
      font-size: 12px; }
  .checkout-price__value {
    width: 190px;
    font-size: 18px;
    text-align: right;
    font-weight: 600; }

.checkout-related__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px; }

.checkout-related__item {
  width: 100%;
  padding: 5px 30px;
  border-right: 1px solid #ccc; }
  @media (max-width: 479px) {
    .checkout-related__item {
      border-right-color: transparent; } }
  @media screen and (min-width: 480px) {
    .checkout-related__item {
      width: calc(100% / 2); } }
  @media (min-width: 480px) and (max-width: 599px) {
    .checkout-related__item:nth-child(2n) {
      border-right: transparent; } }
  @media screen and (min-width: 600px) {
    .checkout-related__item {
      width: calc(100% / 3); } }
  @media (min-width: 600px) and (max-width: 979px) {
    .checkout-related__item:nth-child(3n) {
      border-right: transparent; } }
  @media screen and (min-width: 990px) {
    .checkout-related__item {
      width: calc(100% / 6); }
      .checkout-related__item:nth-child(6n) {
        border-right: transparent; } }

.checkout-related__link {
  color: #000;
  text-decoration: none; }

.checkout-related__image-wrapper {
  margin-bottom: 2px;
  text-align: center; }

.checkout-related__title {
  margin-bottom: 15px;
  line-height: 17px;
  height: 51px;
  overflow: hidden;
  text-align: center;
  font-size: 14px; }

.checkout-related__price {
  margin-bottom: 4px;
  font-size: 14px;
  text-align: center; }

.checkout-related__buy-wrapper {
  display: flex;
  justify-content: center; }

.checkout-related__button {
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 300ms ease;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  background-color: #4ca728;
  color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  height: 28px; }
  .checkout-related__button.disabled, .checkout-related__button[disabled] {
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bbb; }
  .checkout-related__button:not(:disabled):hover {
    background-color: #81c168;
    color: #fff; }

.checkout-order__item {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  border-bottom: 1px solid #c1c1c1; }
  @media screen and (min-width: 600px) {
    .checkout-order__item {
      flex-direction: row;
      align-items: center; } }
  .checkout-order__item:last-child {
    border-bottom: none; }

.checkout-order__left {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 15px 10px; }
  @media screen and (min-width: 600px) {
    .checkout-order__left {
      flex: 1;
      width: auto;
      margin-bottom: 0; } }

.checkout-order__image-wrapper {
  width: 55px;
  margin-right: 10px; }

.checkout-order__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  font-size: 20px;
  font-weight: 600; }
  .checkout-order__text span {
    font-weight: 400;
    font-size: 12px; }

.checkout-order__product-gift {
  padding-left: 10px;
  flex-basis: 100%; }

.checkout-order__price {
  width: 100%;
  font-size: 24px;
  text-align: right; }
  @media screen and (min-width: 600px) {
    .checkout-order__price {
      width: 135px; } }

#ppl-parcelshop-map-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 1000;
  cursor: pointer; }
  #ppl-parcelshop-map-overlay.invisible {
    display: none; }

#ppl-parcelshop-map-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  max-width: 1280px;
  max-height: 900px;
  width: 100%;
  height: 100%;
  cursor: auto;
  padding: 0 1.5rem; }

#ppl-parcel-shop-map {
  height: auto !important; }

#parcelShopPplChosenPlace {
  display: flex;
  column-gap: 30px;
  margin: 0 15px 20px; }

#parcelShopPplPlace {
  display: flex;
  flex-direction: column;
  margin-left: 5px; }

.form__title__ppl {
  float: unset; }

#pplYes {
  margin-left: 25px; }

.checkout-box, .checkout-table, .checkout__related-box, .checkout__bottom {
  padding: 15px 25px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1; }
  @media screen and (min-width: 768px) {
    .checkout-box, .checkout-table, .checkout__related-box, .checkout__bottom {
      padding: 25px 50px; } }

.checkout {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .checkout__steps {
    margin: -20px -20px 20px -20px; }
  .checkout__user {
    display: flex;
    margin-bottom: 35px; }
    .checkout__user-item {
      display: inline-flex;
      align-items: center;
      padding-left: 20px;
      padding-right: 20px;
      margin-right: -1px;
      height: 41px;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      border: 1px solid #c1c1c1;
      font-weight: 600;
      text-decoration: none;
      color: #000; }
      .checkout__user-item--active, .checkout__user-item:hover {
        border-color: #1fa2cd;
        background-color: #1fa2cd;
        color: #fff; }
  .checkout__related {
    margin-bottom: 35px; }
    .checkout__related-title {
      margin-bottom: 15px;
      padding-left: 15px;
      font-size: 20px;
      font-weight: 600; }
    .checkout__related-box {
      margin-bottom: 0; }
  .checkout__discount {
    margin-bottom: 15px; }
    @media screen and (min-width: 768px) {
      .checkout__discount {
        margin-bottom: 0; } }
    .checkout__discount-form {
      display: flex;
      padding-top: 5px; }
    .checkout__discount-form-wrapper {
      max-height: 0;
      overflow: hidden;
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease; }
      .checkout__discount-form-wrapper--active {
        max-height: 50px; }
    .checkout__discount-link {
      font-size: 14px;
      cursor: pointer; }
    .checkout__discount-input {
      display: flex;
      align-items: center;
      height: 36px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      max-width: 300px; }
      .checkout__discount-input::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .checkout__discount-input:-ms-input-placeholder {
        color: #777; }
      .checkout__discount-input::-webkit-input-placeholder {
        color: #777; }
      .checkout__discount-input[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .checkout__discount-input:focus {
        border-color: #424c58; }
      .checkout__discount-input:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
    .checkout__discount-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #4ca728;
      color: #fff;
      height: 36px;
      padding-left: 15px;
      padding-right: 15px; }
      .checkout__discount-button.disabled, .checkout__discount-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .checkout__discount-button:not(:disabled):hover {
        background-color: #81c168;
        color: #fff; }
  .checkout__price {
    margin-left: auto; }
  .checkout__bottom {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .checkout__bottom {
        flex-direction: row;
        align-items: center; } }
    .checkout__bottom-left {
      margin-bottom: 30px; }
      @media screen and (min-width: 990px) {
        .checkout__bottom-left {
          margin-bottom: 0; } }
  .checkout__save-text {
    margin-bottom: 10px;
    font-size: 12px; }
    .checkout__save-text a {
      color: #ee5c23;
      text-decoration: none; }
      .checkout__save-text a:hover {
        text-decoration: underline; }
  .checkout__club-item {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
    font-size: 14px; }
    .checkout__club-item:not(.checkout__club-item--form) {
      font-size: 12px; }
    .checkout__club-item:last-child {
      margin-bottom: 0; }
  .checkout__club form {
    display: flex;
    align-items: center; }
  .checkout__club .form-input {
    width: 130px;
    height: 36px;
    padding-left: 10px;
    padding-right: 10px; }
  .checkout__cols {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .checkout__cols {
        flex-direction: row;
        flex-wrap: wrap; } }
    .checkout__cols-item:first-of-type {
      margin-bottom: 18px; }
      @media screen and (min-width: 990px) {
        .checkout__cols-item:first-of-type {
          margin-right: 18px;
          margin-bottom: 0; } }
    @media screen and (min-width: 990px) {
      .checkout__cols-item--delivery {
        width: 670px; } }
    @media screen and (min-width: 990px) {
      .checkout__cols-item--personal {
        width: 580px; } }
    @media screen and (min-width: 990px) {
      .checkout__cols-item:not(:first-child) {
        flex: 1; } }
    .checkout__cols-box {
      padding: 5px 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1; }
    .checkout__cols-title {
      margin-bottom: 10px;
      padding-left: 18px;
      font-size: 20px;
      font-weight: 600; }
  .checkout__warning-text {
    margin-top: 30px;
    line-height: 15px;
    color: #9d9d9c;
    font-size: 12px;
    text-align: center; }
  .checkout__personal {
    padding-top: 15px;
    padding-bottom: 15px; }
  .checkout__order {
    margin-bottom: 40px; }
    .checkout__order-title {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600; }
    .checkout__order-inner {
      border: 1px solid #c1c1c1; }
  .checkout__delivery-text {
    color: #9d9d9c;
    font-size: 12px;
    text-align: center; }
  .checkout__delivery-item {
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #c1c1c1; }
    .checkout__delivery-item:last-child {
      border-bottom: none; }
    .checkout__delivery-item-inner {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      position: relative;
      padding-left: 37px;
      padding-right: 10px; }
      .checkout__delivery-item-inner .checkout__delivery-item-highlight {
        text-decoration: underline;
        cursor: help; }
    .checkout__delivery-item-label {
      width: 100%;
      position: relative;
      margin-bottom: 10px;
      font-weight: 600;
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center; }
      @media screen and (min-width: 768px) {
        .checkout__delivery-item-label {
          flex: 1;
          width: auto;
          margin-bottom: 0; } }
      .checkout__delivery-item-label:hover .checkout__delivery-item-tooltip {
        display: block; }
    .checkout__delivery-item-logo {
      margin-right: 24px;
      min-width: 60px; }
      .checkout__delivery-item-logo img {
        float: left; }
    .checkout__delivery-item-input {
      position: absolute;
      left: 9px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer; }
      .checkout__delivery-item-input:disabled + .checkout__delivery-item-label {
        cursor: not-allowed;
        color: #747474; }
    .checkout__delivery-item-name {
      width: 100%;
      line-height: 15px;
      font-size: 12px;
      font-weight: 600;
      text-align: left; }
      @media screen and (min-width: 480px) {
        .checkout__delivery-item-name {
          width: calc(100% / 3); } }
      @media screen and (min-width: 768px) {
        .checkout__delivery-item-name {
          width: 135px;
          margin-right: 30px;
          text-align: center; } }
    .checkout__delivery-item-time {
      width: calc(100% / 2);
      font-size: 12px;
      color: #4ca728;
      font-weight: 600; }
      @media screen and (min-width: 480px) {
        .checkout__delivery-item-time {
          width: calc(100% / 3);
          text-align: center; } }
      @media screen and (min-width: 768px) {
        .checkout__delivery-item-time {
          width: 100px;
          text-align: left; } }
    .checkout__delivery-item-right {
      display: flex;
      justify-content: flex-end;
      width: calc(100% / 2);
      margin-left: auto; }
      @media screen and (min-width: 480px) {
        .checkout__delivery-item-right {
          width: calc(100% / 3); } }
      @media screen and (min-width: 768px) {
        .checkout__delivery-item-right {
          width: 115px; } }
    .checkout__delivery-item-price {
      text-align: right;
      font-size: 24px; }
    .checkout__delivery-item-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #1fa2cd;
      color: #fff;
      height: 28px;
      padding-left: 8px;
      padding-right: 8px;
      font-size: 12px; }
      .checkout__delivery-item-button.disabled, .checkout__delivery-item-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .checkout__delivery-item-button:not(:disabled):hover {
        background-color: #62bedc;
        color: #fff; }
    .checkout__delivery-item-text {
      margin-top: 20px;
      color: #9d9d9c;
      font-size: 12px;
      text-align: center; }
    .checkout__delivery-item-choose {
      margin-top: 10px;
      padding-left: 37px; }
      .checkout__delivery-item-choose-select {
        display: flex;
        align-items: center;
        height: 40px;
        width: 100%;
        min-width: 0;
        padding: 0 10px;
        border: 1px solid #c1c1c1;
        background-color: #fff;
        transition: all 300ms ease;
        background-color: #fff; }
        .checkout__delivery-item-choose-select::-moz-placeholder {
          color: #777;
          opacity: 1; }
        .checkout__delivery-item-choose-select:-ms-input-placeholder {
          color: #777; }
        .checkout__delivery-item-choose-select::-webkit-input-placeholder {
          color: #777; }
        .checkout__delivery-item-choose-select[disabled] {
          background-color: #f8f8f8;
          cursor: not-allowed;
          border-color: #bbb; }
        .checkout__delivery-item-choose-select:focus {
          border-color: #424c58; }
        .checkout__delivery-item-choose-select:not(.ng-pristine).ng-invalid {
          border-color: #ff0000;
          background-color: #fff0f0; }
        .checkout__delivery-item-choose-select:invalid {
          color: #777; }
        .checkout__delivery-item-choose-select option {
          color: #000; }
        .checkout__delivery-item-choose-select[value=''][disabled] {
          display: none; }
    .checkout__delivery-item-address {
      margin-top: 10px;
      padding-left: 37px; }
      .checkout__delivery-item-address table td {
        padding: 3px 5px;
        line-height: 24px;
        border: 1px solid #c1c1c1; }
    .checkout__delivery-item-tooltip {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      width: 300px;
      padding: 8px;
      z-index: 2;
      margin-top: 3px;
      border-radius: 3px;
      background-color: #fff;
      border: 1px solid #c1c1c1;
      font-size: 12px; }
      .checkout__delivery-item-tooltip:before, .checkout__delivery-item-tooltip:after {
        position: absolute;
        left: 8px;
        top: -9px;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-width: 0 9px 9px 9px; }
      .checkout__delivery-item-tooltip:before {
        border-color: transparent transparent #c1c1c1 transparent; }
      .checkout__delivery-item-tooltip:after {
        margin-top: 1px;
        border-color: transparent transparent #fff transparent; }
  .checkout__delivery-submenu {
    width: 100%;
    padding-left: 37px;
    padding-top: 9px; }
    .checkout__delivery-submenu-item {
      position: relative;
      padding: 10px 0 10px 0;
      border-bottom: 1px solid #c1c1c1; }
      .checkout__delivery-submenu-item:last-child {
        padding-bottom: 0;
        border-bottom: none; }
      .checkout__delivery-submenu-item-inner {
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 10px;
        padding-right: 10px; }
      .checkout__delivery-submenu-item-logo {
        min-width: 60px;
        margin-right: 10px; }
        .checkout__delivery-submenu-item-logo img {
          float: left; }
    .checkout__delivery-submenu-input {
      margin-right: 10px; }
    .checkout__delivery-submenu-label {
      color: #666;
      cursor: pointer;
      display: flex;
      align-items: center;
      flex-wrap: wrap; }
  .checkout__buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; }
    @media screen and (min-width: 600px) {
      .checkout__buttons-wrapper {
        justify-content: space-between;
        flex-direction: row; } }
  .checkout__done {
    max-width: 760px;
    margin: 75px auto 60px auto;
    text-align: center; }
    .checkout__done-title {
      margin-bottom: 17px;
      font-size: 26px;
      font-weight: 600; }
    .checkout__done-text {
      line-height: 17px;
      font-size: 14px; }
  .checkout__back {
    order: 2;
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background-color: #1fa2cd;
    color: #fff;
    /*@include btn--tiny();*/
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #9d9d9c;
    color: #fff; }
    .checkout__back.disabled, .checkout__back[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .checkout__back:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
    .checkout__back:not(:disabled):hover {
      background-color: #8e8e8e;
      color: #fff; }
    @media screen and (min-width: 600px) {
      .checkout__back {
        order: 1; } }
  .checkout__next {
    order: 1;
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #1fa2cd;
    color: #fff;
    margin-bottom: 10px; }
    .checkout__next.disabled, .checkout__next[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .checkout__next:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
    @media screen and (min-width: 600px) {
      .checkout__next {
        order: 2;
        margin-left: auto;
        margin-bottom: 0; } }
  .checkout__remove-all {
    display: flex;
    justify-content: flex-end;
    margin-top: -28px;
    margin-bottom: 15px; }
    .checkout__remove-all-link {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #1fa2cd;
      color: #fff;
      height: 28px;
      padding-left: 15px;
      padding-right: 15px;
      font-size: 12px; }
      .checkout__remove-all-link.disabled, .checkout__remove-all-link[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .checkout__remove-all-link:not(:disabled):hover {
        background-color: #62bedc;
        color: #fff; }
  .checkout #hdsserviceshide {
    margin-top: 20px; }

.forgotten-password {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .forgotten-password__main-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .forgotten-password__text {
    margin-bottom: 20px; }
  .forgotten-password__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; }
    @media screen and (min-width: 600px) {
      .forgotten-password__form {
        flex-direction: row; } }
    .forgotten-password__form-label {
      margin-bottom: 10px; }
      @media screen and (min-width: 600px) {
        .forgotten-password__form-label {
          padding-top: 10px;
          margin-right: 15px;
          margin-bottom: 0; } }
    .forgotten-password__form-value {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex: 1;
      max-width: 370px;
      width: 100%; }
      @media screen and (min-width: 480px) {
        .forgotten-password__form-value {
          flex-direction: row; } }
    .forgotten-password__form-input {
      flex: 1;
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      margin-right: 5px;
      margin-bottom: 5px; }
      .forgotten-password__form-input::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .forgotten-password__form-input:-ms-input-placeholder {
        color: #777; }
      .forgotten-password__form-input::-webkit-input-placeholder {
        color: #777; }
      .forgotten-password__form-input[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .forgotten-password__form-input:focus {
        border-color: #424c58; }
      .forgotten-password__form-input:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
      @media screen and (min-width: 480px) {
        .forgotten-password__form-input {
          margin-bottom: 0; } }
    .forgotten-password__form-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      background-color: #1fa2cd;
      color: #fff;
      height: 40px;
      padding-left: 15px;
      padding-right: 15px; }
      .forgotten-password__form-button.disabled, .forgotten-password__form-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .forgotten-password__form-button:not(:disabled):hover {
        background-color: #62bedc;
        color: #fff; }

.orders {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .orders__main-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .orders__status {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px; }
    .orders__status-item {
      position: relative;
      margin-right: 15px;
      margin-bottom: 5px; }
      .orders__status-item:last-child {
        margin-right: 0; }
    .orders__status-input {
      position: absolute;
      left: 0;
      top: 5px; }
    .orders__status-label {
      display: block;
      padding-left: 20px;
      color: #666;
      cursor: pointer; }
  .orders__filter {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    margin-bottom: 50px; }
    .orders__filter-inner {
      margin-bottom: 35px; }
    .orders__filter-row {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 25px; }
      .orders__filter-row:last-child {
        margin-bottom: 0; }
    .orders__filter-item {
      display: flex;
      flex-direction: column;
      margin-bottom: 25px; }
      @media screen and (min-width: 480px) {
        .orders__filter-item {
          margin-right: 20px;
          width: calc(100% / 2 - 20px);
          margin-bottom: 0; } }
      @media screen and (min-width: 990px) {
        .orders__filter-item {
          margin-right: 68px;
          width: calc(100% / 3 - 68px); } }
      .orders__filter-item:last-child {
        margin-right: 0;
        margin-bottom: 0; }
    .orders__filter-label {
      margin-bottom: 6px; }
    .orders__filter-input {
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff; }
      .orders__filter-input::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .orders__filter-input:-ms-input-placeholder {
        color: #777; }
      .orders__filter-input::-webkit-input-placeholder {
        color: #777; }
      .orders__filter-input[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .orders__filter-input:focus {
        border-color: #424c58; }
      .orders__filter-input:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
    .orders__filter-button {
      flex-shrink: 0;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: all 300ms ease;
      text-decoration: none;
      text-align: center;
      cursor: pointer;
      font-size: 14px;
      font-weight: 600;
      height: 43px;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 18px;
      background-color: #1fa2cd;
      color: #fff; }
      .orders__filter-button.disabled, .orders__filter-button[disabled] {
        cursor: not-allowed;
        background-color: #f8f8f8;
        color: #bbb; }
      .orders__filter-button:not(:disabled):hover {
        background-color: #62bedc;
        color: #fff; }

.profile {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .profile__main-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .profile__text {
    margin-bottom: 20px; }
  .profile__form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; }
    @media screen and (min-width: 480px) {
      .profile__form-row {
        flex-direction: row;
        align-items: baseline; } }
  .profile__form-label {
    display: block;
    margin-bottom: 9px;
    font-weight: 600; }
    @media screen and (min-width: 480px) {
      .profile__form-label {
        margin-bottom: 0;
        width: 96px; } }
  .profile__form-value {
    flex: 1;
    width: 100%;
    position: relative; }
  .profile__form-input {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    max-width: 406px; }
    .profile__form-input::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .profile__form-input:-ms-input-placeholder {
      color: #777; }
    .profile__form-input::-webkit-input-placeholder {
      color: #777; }
    .profile__form-input[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .profile__form-input:focus {
      border-color: #424c58; }
    .profile__form-input:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  .profile__links {
    display: flex;
    align-items: baseline;
    margin-top: 20px; }
  .profile__forgotten-password {
    margin-left: 15px; }
  .profile__login {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #1fa2cd;
    color: #fff; }
    .profile__login.disabled, .profile__login[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .profile__login:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
  .profile__crossroads {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 600px) {
      .profile__crossroads {
        flex-wrap: wrap;
        flex-direction: row;
        margin-left: -10px;
        margin-right: -10px; } }
    .profile__crossroads-item {
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1;
      color: #000;
      text-decoration: none; }
      @media screen and (min-width: 600px) {
        .profile__crossroads-item {
          width: calc(100% / 2 - 20px);
          margin-left: 10px;
          margin-right: 10px; } }
    .profile__crossroads-title {
      margin-bottom: 15px;
      font-weight: 700;
      font-size: 20px;
      color: #1fa2cd; }
      .profile__crossroads-title:hover {
        text-decoration: underline; }

.helper {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .helper__heading {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px; }
    @media screen and (min-width: 480px) {
      .helper__heading {
        flex-direction: row;
        align-items: center; } }
  .helper__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 55px;
    margin-top: 10px;
    background-color: #8c0014; }
    @media screen and (min-width: 480px) {
      .helper__logo {
        margin-top: 0;
        margin-left: auto; } }
  .helper__main-title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600; }
  .helper__steps {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
    border: 1px solid #c1c1c1; }
    .helper__steps-item {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
      min-width: 80px;
      height: 56px;
      padding-left: 40px;
      padding-right: 10px;
      margin-bottom: 0;
      font-size: 20px;
      font-weight: 600; }
      .helper__steps-item:first-child {
        padding-left: 0;
        padding-right: 0; }
      .helper__steps-item a {
        color: inherit;
        text-decoration: none; }
      .helper__steps-item:before, .helper__steps-item:after {
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        content: "";
        border-style: solid;
        border-width: 28px 0 28px 30px; }
      .helper__steps-item:before {
        left: 100%;
        border-color: transparent transparent transparent #c1c1c1; }
      .helper__steps-item:after {
        left: calc(100% - 1px);
        border-color: transparent transparent transparent #fff; }
      .helper__steps-item--before-active:after {
        display: none; }
      .helper__steps-item--before-active:before {
        border-color: transparent transparent transparent #fff; }
      .helper__steps-item--active {
        z-index: 1;
        background-color: #8c0014;
        color: #fff; }
        .helper__steps-item--active:before {
          border-color: transparent transparent transparent #8c0014; }
        .helper__steps-item--active:after {
          display: none; }
  .helper__list-in {
    display: none;
    flex-direction: column; }
    @media screen and (min-width: 768px) {
      .helper__list-in {
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px; } }
    .helper__list-in--active {
      display: flex; }
  .helper__item {
    width: 100%;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative; }
    @media screen and (min-width: 480px) {
      .helper__item {
        padding-left: 0; } }
    @media screen and (min-width: 768px) {
      .helper__item {
        width: calc(100% / 2 - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 40px; } }
    .helper__item-input {
      position: absolute;
      left: 0;
      top: 4px; }
      @media screen and (min-width: 480px) {
        .helper__item-input {
          left: 170px; } }
      @media screen and (min-width: 990px) {
        .helper__item-input {
          left: 220px; } }
    .helper__item-label {
      display: flex;
      flex-direction: column;
      position: relative; }
      @media screen and (min-width: 480px) {
        .helper__item-label {
          flex-direction: row; } }
    .helper__item-image-wrapper {
      margin-bottom: 20px; }
      @media screen and (min-width: 480px) {
        .helper__item-image-wrapper {
          width: 150px;
          margin-right: 40px;
          margin-bottom: 0; } }
      @media screen and (min-width: 990px) {
        .helper__item-image-wrapper {
          width: 200px; } }
    .helper__item-text-wrapper {
      flex: 1;
      color: #666;
      font-size: 14px; }
  .helper__title {
    margin-bottom: 15px; }
  .helper__inner {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    margin-bottom: 70px; }
  .helper__bottom {
    display: flex;
    justify-content: space-between; }
  .helper__back {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #9d9d9c;
    color: #fff; }
    .helper__back.disabled, .helper__back[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .helper__back:not(:disabled):hover {
      background-color: #8e8e8e;
      color: #fff; }
  .helper__next {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    background-color: #1fa2cd;
    color: #fff;
    margin-left: auto; }
    .helper__next.disabled, .helper__next[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .helper__next:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
  .helper__catalog {
    display: flex;
    flex-direction: column;
    margin-top: 20px; }
    @media screen and (min-width: 990px) {
      .helper__catalog {
        flex-direction: row; } }
    @media screen and (min-width: 990px) {
      .helper__catalog-left {
        width: 260px;
        margin-right: 20px; } }
    .helper__catalog-right {
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1;
      background-color: #fff; }
      @media screen and (min-width: 990px) {
        .helper__catalog-right {
          flex: 1;
          max-width: calc(100% - 280px); } }
    .helper__catalog-results {
      padding: 20px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      background-color: #f5f5f5; }
      .helper__catalog-results-title {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 20px; }
      .helper__catalog-results-section {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #c1c1c1; }
        .helper__catalog-results-section:last-child {
          margin-bottom: 0;
          padding-bottom: 0;
          border-bottom: none; }
    .helper__catalog-products {
      overflow: hidden; }
      .helper__catalog-products-inner:not(.slick-initialized) {
        display: flex;
        flex-wrap: wrap;
        overflow: hidden;
        margin-bottom: -16px;
        margin-left: -20px;
        margin-right: -20px; }
      .helper__catalog-products-inner .product {
        width: calc(100% / 2); }
        @media screen and (min-width: 768px) {
          .helper__catalog-products-inner .product {
            width: calc(100% / 3); } }
  .helper .product:first-child {
    width: 100%; }
    @media screen and (min-width: 990px) {
      .helper .product:first-child .product__image-wrapper {
        max-width: 270px;
        margin-left: auto;
        margin-right: auto; }
      .helper .product:first-child .product__description {
        margin-bottom: 20px; }
      .helper .product:first-child .product__top {
        position: absolute;
        left: 20px;
        top: 0;
        max-width: 250px; }
      .helper .product:first-child .product__bottom-wrapper {
        position: absolute;
        right: 20px;
        top: 0;
        max-width: 275px; } }

.order-detail {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .order-detail__main-title {
    margin-bottom: 35px;
    font-size: 20px;
    font-weight: 600; }
  .order-detail__table {
    margin-bottom: 42px; }
  .order-detail__buttons-wrapper {
    display: flex;
    justify-content: flex-end; }
  .order-detail__back {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #1fa2cd;
    color: #fff; }
    .order-detail__back.disabled, .order-detail__back[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .order-detail__back:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }

.register {
  overflow: hidden;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }
  @media screen and (min-width: 768px) {
    .register:before, .register:after {
      width: 0;
      height: 0;
      position: absolute;
      z-index: 1;
      content: "";
      border-style: solid; } }
  .register:before {
    right: 0;
    top: 120px;
    border-width: 237px 237px 237px 0;
    border-color: transparent #ee5c23 transparent transparent; }
  .register:after {
    left: 0;
    bottom: 20px;
    border-width: 165px 0 216px 165px;
    border-color: transparent transparent transparent #ee5c23; }
  .register .form-checkbox {
    margin-left: 15px; }
  .register__wrapper {
    position: relative;
    z-index: 2; }
  .register .user-data {
    margin-bottom: 30px; }
  .register__main-title {
    margin: 0 0 40px 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 35px;
    letter-spacing: -1.71px; }
  .register__sub {
    display: flex;
    justify-content: center;
    align-items: center; }
    .register__sub--bigger .store-registration__sub-text {
      line-height: 52.48px;
      font-size: 49px; }
    .register__sub img {
      margin-left: 30px; }
    .register__sub-text {
      line-height: 35.75px;
      font-size: 33px;
      font-weight: 700;
      letter-spacing: -1.63px; }
      .register__sub-text span {
        letter-spacing: -2.2px;
        color: #ee5c23; }
  .register__store {
    margin-bottom: 30px;
    text-align: center; }
  .register__info {
    margin-bottom: 30px;
    text-align: center;
    color: #939598;
    font-style: italic; }
  .register__form {
    display: block;
    max-width: 515px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px; }
    .register__form-title {
      margin-bottom: 15px;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: -0.73px; }
  .register__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
    grid-column-gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c1c1c1; }
    @media screen and (min-width: 600px) {
      .register__inner {
        grid-template-columns: 1fr 1fr; } }
  .register__label {
    position: absolute;
    left: 10px;
    top: -9px;
    z-index: 2;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 12px;
    background-color: #fff; }
  .register__list {
    display: flex;
    justify-content: center; }
    .register__list > * {
      margin-right: 10px;
      margin-left: 10px; }
  .register__card {
    display: flex;
    flex-shrink: 0; }
    .register__card-item {
      display: inline-flex;
      align-items: center;
      height: 100%;
      padding-left: 15px;
      padding-right: 15px;
      text-decoration: none;
      background-color: #1fa2cd;
      color: #fff; }
  .register__barcode {
    display: flex;
    justify-content: center;
    margin-bottom: 20px; }
    .register__barcode img {
      max-height: 120px; }
  .register__subtitle {
    padding-left: 20px;
    padding-right: 20px; }
  .register__sign {
    height: 230px;
    margin-bottom: 30px;
    border: 1px solid #c1c1c1;
    resize: none;
    background-color: #fff; }
  .register__delete {
    margin-bottom: 15px; }
  .register__buttons-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; }

.expert-club__main-image {
  display: block;
  margin-bottom: 50px; }

.expert-club__list {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: 1fr1; }

@Media screen and (min-width: 600px) {
  .expert-club__list {
    grid-template-columns: 1fr 1fr; } }

.expert-club img {
  border: 1px solid #c1c1c1; }

.producers-list__box {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.producers-list__section {
  margin-bottom: 30px; }
  .producers-list__section:last-child {
    margin-bottom: 0; }

.producers-list__title {
  padding-bottom: 11px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #c1c1c1; }

.producers-list__list {
  display: flex;
  flex-wrap: wrap; }

.producers-list__item {
  width: calc(100% / 2);
  margin-bottom: 4px;
  font-size: 12px; }
  @media screen and (min-width: 600px) {
    .producers-list__item {
      width: calc(100% / 3); } }
  @media screen and (min-width: 990px) {
    .producers-list__item {
      width: calc(100% / 6); } }

.producers-list__premiere {
  overflow: hidden;
  margin-bottom: 1px; }
  .producers-list__premiere-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: -1px; }
  .producers-list__premiere-item {
    padding: 20px 0;
    width: calc(100% / 2);
    border-bottom: 1px solid #c1c1c1;
    text-align: center; }
    @media screen and (min-width: 600px) {
      .producers-list__premiere-item {
        width: calc(100% / 3); } }
    @media screen and (min-width: 990px) {
      .producers-list__premiere-item {
        width: calc(100% / 6); } }
    .producers-list__premiere-item:last-child .producers-list__premiere-inner {
      border-right: none; }
  .producers-list__premiere-inner {
    padding: 0 30px;
    border-right: 1px solid #c1c1c1; }

.producer-detail__top {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .producer-detail__top {
      flex-direction: row; } }

.producer-detail__main {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .producer-detail__main-inner {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .producer-detail__main-inner {
        flex-direction: row;
        margin-left: -10px;
        margin-right: -10px; } }
  .producer-detail__main-col {
    margin-bottom: 20px; }
    @media screen and (min-width: 990px) {
      .producer-detail__main-col {
        margin: 0 10px;
        width: calc(100% / 2 - 20px); } }
    .producer-detail__main-col:last-child {
      margin-bottom: 0; }

.producer-detail__top-products {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.producer-detail__logo {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  text-align: center; }
  @media screen and (min-width: 990px) {
    .producer-detail__logo {
      width: 270px;
      margin-right: 20px; } }

.producer-detail__banner {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  @media screen and (min-width: 990px) {
    .producer-detail__banner {
      flex: 1; } }

.producer-detail__category {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .producer-detail__category-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .producer-detail__category-list {
    overflow: hidden; }
    .producer-detail__category-list-in {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: -16px; }
  .producer-detail__category-item {
    text-decoration: none;
    color: #666;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #c1c1c1; }
    @media screen and (min-width: 480px) {
      .producer-detail__category-item {
        width: calc(100% / 2); } }
    @media (min-width: 480px) and (max-width: 599px) {
      .producer-detail__category-item:nth-child(2n) .producer-detail__category-item-in {
        border-right: none; } }
    @media screen and (min-width: 600px) {
      .producer-detail__category-item {
        width: calc(100% / 3); } }
    @media (min-width: 600px) and (max-width: 979px) {
      .producer-detail__category-item:nth-child(3n) .producer-detail__category-item-in {
        border-right: none; } }
    @media screen and (min-width: 990px) {
      .producer-detail__category-item {
        width: calc(100% / 4); } }
    @media (min-width: 980px) and (max-width: 1299px) {
      .producer-detail__category-item:nth-child(4n) .producer-detail__category-item-in {
        border-right: none; } }
    @media screen and (min-width: 1300px) {
      .producer-detail__category-item {
        width: calc(100% / 6); }
        .producer-detail__category-item:nth-child(6n) .producer-detail__category-item-in {
          border-right: none; } }
    .producer-detail__category-item:last-child {
      border-right: none; }
    .producer-detail__category-item-in {
      padding: 0 20px 15px 20px; }
      @media screen and (min-width: 480px) {
        .producer-detail__category-item-in {
          border-right: 1px solid #c1c1c1; } }
    .producer-detail__category-item-image-wrapper {
      display: block;
      position: relative;
      margin-bottom: 10px;
      height: 150px; }
      .producer-detail__category-item-image-wrapper img {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%; }
    .producer-detail__category-item-image {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      width: auto;
      height: auto; }
    .producer-detail__category-item-name {
      text-align: center;
      font-size: 14px; }

.producer-detail__description-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.producer-detail__description-inner {
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .producer-detail__description-inner-hidden {
    display: none;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #c1c1c1; }

.producer-detail__description-more-wrapper {
  display: flex;
  justify-content: center; }
  .producer-detail__description-more-wrapper--active a span {
    display: none; }
  .producer-detail__description-more-wrapper--active a:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .producer-detail__description-more-wrapper--active a:after {
    content: attr(data-less); }
  .producer-detail__description-more-wrapper a {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    color: #1fa2cd;
    cursor: pointer;
    text-decoration: underline; }
    .producer-detail__description-more-wrapper a:hover {
      text-decoration: none; }
    .producer-detail__description-more-wrapper a:before {
      position: absolute;
      left: 0;
      top: 6px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 7px 0 7px;
      border-color: #1fa2cd transparent transparent transparent; }

.store-detail {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  padding: 20px 40px 40px; }
  .store-detail__main-title {
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 400;
    color: #ee7701; }
    .store-detail__main-title .store-detail__bold {
      font-weight: 900; }
  .store-detail__info-title {
    font-size: 30px;
    color: #ee7701;
    margin-bottom: 15px; }
  .store-detail__inner > .store-detail__part:nth-child(1) {
    display: flex;
    flex-wrap: wrap; }
    @media screen and (min-width: 990px) {
      .store-detail__inner > .store-detail__part:nth-child(1) {
        flex-wrap: nowrap; } }
  .store-detail__photo {
    min-width: auto; }
    @media screen and (min-width: 600px) {
      .store-detail__photo {
        min-width: 500px; } }
  .store-detail__part-inner {
    padding-right: 15px; }
  .store-detail__part > .store-detail__part-inner:first-child {
    padding: 0;
    width: 100%; }
    @media screen and (min-width: 973px) {
      .store-detail__part > .store-detail__part-inner:first-child {
        margin-right: 25px;
        width: 50%; } }
  .store-detail__part-inner > div {
    margin-bottom: 20px;
    width: 100%;
    text-align: center; }
  .store-detail__part > .store-detail__part-inner:last-child {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column-reverse; }
    @media screen and (min-width: 973px) {
      .store-detail__part > .store-detail__part-inner:last-child {
        margin-left: 25px;
        width: 45%;
        display: block; } }
    .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
      text-align: left; }
      @media screen and (max-width: 973px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
          position: relative;
          top: -35%; } }
      @media screen and (max-width: 800px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
          position: relative;
          top: -40%; } }
      @media screen and (max-width: 650px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
          position: relative;
          top: -45%; } }
      @media screen and (max-width: 500px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
          position: relative;
          top: -55%; } }
      @media screen and (max-width: 350px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(1) {
          position: relative;
          top: -60%; } }
    .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(2) {
      text-align: left; }
      @media screen and (max-width: 973px) {
        .store-detail__part > .store-detail__part-inner:last-child > div:nth-child(2) {
          position: relative;
          flex-wrap: wrap; } }
  .store-detail .store-detail__signature-text {
    color: #6e6e6e; }
  .store-detail__clickncollect {
    display: flex;
    justify-content: flex-start; }
    @media screen and (min-width: 990px) {
      .store-detail__clickncollect {
        justify-content: space-between; } }
  .store-detail .clickncollect-text {
    color: #000000;
    margin-right: 20px; }
    .store-detail .clickncollect-text span {
      color: #0eab06;
      font-weight: 600; }
  .store-detail__signature {
    margin-bottom: 0; }
  .store-detail__signature-img {
    text-align: right;
    margin-top: 15px; }
    .store-detail__signature-img img {
      max-height: 70px; }
  .store-detail__gallery > a {
    color: #ee7701;
    text-decoration: none; }
  .store-detail__gallery-inner {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap; }
    @media screen and (min-width: 600px) {
      .store-detail__gallery-inner {
        flex-wrap: nowrap; } }
    .store-detail__gallery-inner > a {
      margin-right: 15px;
      margin-bottom: 15px; }
      @media screen and (min-width: 600px) {
        .store-detail__gallery-inner > a {
          margin-bottom: 0px; } }
    .store-detail__gallery-inner > a:last-child {
      margin-right: 0; }
    .store-detail__gallery-inner + .slick-slider {
      display: block; }
    .store-detail__gallery-inner .slick-track {
      display: flex; }
      .store-detail__gallery-inner .slick-track a {
        width: 149px !important; }
  .store-detail__rest {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 100px; }
    .store-detail__rest > div {
      width: 100%;
      padding: 10px; }
      @media screen and (min-width: 768px) {
        .store-detail__rest > div {
          width: 33%; }
          .store-detail__rest > div:nth-last-child(1) {
            margin-top: 2em; }
          .store-detail__rest > div:nth-last-child(2) {
            margin-top: 2em; } }
    .store-detail__rest > .store-detail__service {
      width: 100%; }
      @media screen and (min-width: 768px) {
        .store-detail__rest > .store-detail__service {
          width: 50%; } }
  .store-detail__mail {
    margin-top: 15px; }
    .store-detail__mail a {
      display: block; }
  .store-detail__service ul {
    list-style: none; }
    .store-detail__service ul li {
      position: relative;
      margin-bottom: 10px;
      color: #000000;
      font-weight: 500; }
      .store-detail__service ul li a {
        text-decoration: none; }
        .store-detail__service ul li a:hover {
          text-decoration: underline; }
      .store-detail__service ul li::before {
        content: "✔";
        margin-right: 20px;
        color: #0eab06;
        font-weight: 600; }
  .store-detail__international {
    border-top: 2px solid #f5f5f5;
    padding-top: 30px; }
  .store-detail__opening-table {
    max-width: 200px; }
    .store-detail__opening-table td:first-child {
      font-weight: 500; }
  .store-detail .store__day {
    font-weight: 600; }

.stores {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .stores__main-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }
  .stores__map {
    margin-bottom: 35px;
    border: 1px solid #c1c1c1; }
    .stores__map-inner {
      vertical-align: bottom;
      display: inline-block;
      height: 485px;
      width: 100%; }
  .stores__zip {
    margin-bottom: 30px; }
  .stores__zip-input {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    max-width: 300px; }
    .stores__zip-input::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .stores__zip-input:-ms-input-placeholder {
      color: #777; }
    .stores__zip-input::-webkit-input-placeholder {
      color: #777; }
    .stores__zip-input[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .stores__zip-input:focus {
      border-color: #424c58; }
    .stores__zip-input:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
  .stores__region {
    margin-bottom: 20px; }
    .stores__region-title {
      margin-bottom: 20px;
      font-size: 20px;
      font-weight: 600; }
    .stores__region-item {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 13px;
      margin-bottom: 20px;
      border: 1px solid #c1c1c1; }
      .stores__region-item:last-child {
        margin-bottom: 0; }
      .stores__region-item-image-wrapper {
        width: 95px;
        margin-right: 25px; }
      .stores__region-item-text-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column; }
      .stores__region-item-name {
        margin-bottom: -3px;
        font-size: 18px;
        font-weight: 600;
        color: #000;
        text-decoration: none; }
      .stores__region-item-address {
        margin-bottom: -2px; }
  .stores__list-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px; }
    @media screen and (min-width: 480px) {
      .stores__list-heading {
        flex-direction: row;
        align-items: baseline;
        flex-wrap: wrap; } }
  .stores__list-title {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px; }
    @media screen and (min-width: 480px) {
      .stores__list-title {
        margin-bottom: 0;
        margin-right: 15px; } }
  .stores__list-select {
    display: flex;
    align-items: center;
    height: 40px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    transition: all 300ms ease;
    background-color: #fff;
    max-width: 300px; }
    .stores__list-select::-moz-placeholder {
      color: #777;
      opacity: 1; }
    .stores__list-select:-ms-input-placeholder {
      color: #777; }
    .stores__list-select::-webkit-input-placeholder {
      color: #777; }
    .stores__list-select[disabled] {
      background-color: #f8f8f8;
      cursor: not-allowed;
      border-color: #bbb; }
    .stores__list-select:focus {
      border-color: #424c58; }
    .stores__list-select:not(.ng-pristine).ng-invalid {
      border-color: #ff0000;
      background-color: #fff0f0; }
    .stores__list-select:invalid {
      color: #777; }
    .stores__list-select option {
      color: #000; }
    .stores__list-select[value=''][disabled] {
      display: none; }
  .stores__list-box {
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
  .stores__list-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px; }
    @media screen and (min-width: 480px) {
      .stores__list-inner {
        grid-template-columns: 1fr 1fr; } }
    @media screen and (min-width: 768px) {
      .stores__list-inner {
        grid-template-columns: 1fr 1fr 1fr; } }
  .stores__about h2 {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 600; }
  .stores__about p {
    line-height: 19px;
    margin-bottom: 15px; }

.compare {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .compare__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px; }
    @media screen and (min-width: 768px) {
      .compare__top {
        flex-direction: row; } }
    .compare__top-left {
      display: flex;
      flex-direction: column;
      margin-bottom: 10px; }
      @media screen and (min-width: 768px) {
        .compare__top-left {
          margin-bottom: 0; } }
  .compare__main-title {
    margin-bottom: 7px;
    font-size: 20px;
    font-weight: 600; }
  .compare__remove-all {
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 300ms ease;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    background-color: #1fa2cd;
    color: #fff;
    height: 43px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px; }
    .compare__remove-all.disabled, .compare__remove-all[disabled] {
      cursor: not-allowed;
      background-color: #f8f8f8;
      color: #bbb; }
    .compare__remove-all:not(:disabled):hover {
      background-color: #62bedc;
      color: #fff; }
    @media screen and (min-width: 768px) {
      .compare__remove-all {
        margin-left: auto; } }
  .compare__filter {
    display: flex;
    align-items: baseline;
    color: #666; }
    .compare__filter-title {
      margin-right: 7px; }
    .compare__filter-values {
      display: flex;
      align-items: baseline; }
    .compare__filter-item {
      position: relative;
      padding-left: 17px;
      margin-right: 15px; }
      .compare__filter-item:last-child {
        margin-right: 0; }
      .compare__filter-item-input {
        position: absolute;
        left: 0;
        top: 6px; }
  .compare__table {
    flex-shrink: 0; }
  .compare__table-head {
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #c1c1c1;
    border-bottom: none; }
  .compare__table-body {
    border: 1px solid #c1c1c1;
    border-top: none;
    border-bottom: none; }
  .compare__table-wrapper {
    position: relative; }
  .compare__table-inner {
    display: flex;
    overflow: auto;
    margin-left: 150px; }
    @media screen and (min-width: 768px) {
      .compare__table-inner {
        margin-left: 350px; } }
  .compare__row {
    display: flex; }
    .compare__row:first-child .compare__col {
      border-top: none; }
  .compare__col {
    flex-shrink: 0;
    padding: 7px 13px;
    width: 260px;
    border-right: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1; }
    .compare__col--title {
      width: 150px;
      position: absolute;
      left: 0;
      border-right: none;
      border-left: 1px solid #c1c1c1; }
      @media screen and (min-width: 768px) {
        .compare__col--title {
          width: 350px; } }
    .compare__col:last-child {
      border-right: none; }
  .compare__group:not(:last-child) .compare__row:last-child .compare__col {
    border-bottom: none; }
  .compare__group-title {
    height: 35px;
    font-size: 18px;
    font-weight: 600; }
    .compare__group-title-text {
      position: absolute;
      left: 0;
      height: 35px;
      width: calc(100% - 1px);
      padding: 5px 13px;
      background-color: #f5f5f5;
      border-left: 1px solid #c1c1c1;
      border-bottom: 1px solid #c1c1c1;
      border-top: 1px solid #c1c1c1; }
  .compare__product {
    flex-shrink: 0;
    width: 260px;
    padding: 25px;
    border-right: 1px solid #c1c1c1; }
    .compare__product:last-child {
      border-right: none; }
    .compare__product-image-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 210px;
      margin-bottom: 20px; }
    .compare__product-title {
      line-height: 24px;
      height: 48px;
      overflow: hidden;
      margin-bottom: 5px;
      display: block;
      font-size: 18px;
      font-weight: 600;
      text-transform: uppercase;
      color: #000;
      text-decoration: none; }
    .compare__product-rating {
      position: relative;
      height: 15px;
      width: 88px;
      background: url("../assets/img/bg-stars.png") no-repeat 0 0; }
      .compare__product-rating-stars {
        position: absolute;
        left: 0;
        top: 0;
        height: 15px;
        width: 0;
        background: url("../assets/img/bg-stars.png") no-repeat 0 -15px; }
    .compare__product-price {
      margin-top: 45px;
      margin-bottom: 2px;
      font-size: 24px; }
    .compare__product-avaibility {
      font-size: 12px;
      color: #4ca728;
      font-weight: 600; }
    .compare__product-remove {
      margin-top: 35px;
      display: block;
      text-align: center;
      color: #1fa2cd;
      font-size: 12px;
      font-weight: 600; }
      .compare__product-remove:hover {
        text-decoration: none; }

.hello-bank {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .hello-bank__main-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600; }

.tips__inner {
  display: flex;
  flex-direction: column; }
  @media screen and (min-width: 990px) {
    .tips__inner {
      flex-direction: row; } }

.tips__left {
  flex: 1;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff;
  margin-bottom: 18px; }
  @media screen and (min-width: 990px) {
    .tips__left {
      margin-bottom: 0; } }

@media screen and (min-width: 990px) {
  .tips__right {
    width: 260px;
    margin-left: 18px; } }

.tips__main-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600; }

.tips__main-text {
  margin-bottom: 20px;
  color: #666;
  font-size: 14px; }

.tips__tabs {
  margin-bottom: 28px; }

.tips__tags {
  margin-bottom: 48px; }

.tips__list {
  margin-bottom: 20px; }

.tips__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #c1c1c1; }
  @media screen and (min-width: 600px) {
    .tips__item {
      flex-direction: row;
      flex-wrap: wrap; } }
  .tips__item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0; }
  .tips__item-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px; }
    @media screen and (min-width: 600px) {
      .tips__item-image-wrapper {
        width: 200px;
        margin-bottom: 0; } }
  .tips__item-image {
    max-width: 185px; }
  .tips__item-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column; }
  .tips__item-title {
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease; }
    .tips__item-title:hover {
      color: #ee5c23; }
  .tips__item-date {
    font-size: 14px;
    color: gray; }
  .tips__item-annotation {
    line-height: 17px;
    font-size: 14px;
    color: #666; }
  .tips__item-more {
    font-size: 14px; }

.tips__newsletter {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }

.tips__news {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .tips__news-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 1px solid #c1c1c1;
    text-align: center; }
  @media screen and (max-width: 599px) {
    .tips__news-list {
      display: flex;
      flex-direction: column; }
      .tips__news-list .top-product {
        margin-bottom: 30px;
        border-bottom: 1px solid #c1c1c1; }
        .tips__news-list .top-product:last-child {
          margin-bottom: 0;
          border-bottom: none; }
        .tips__news-list .top-product__link {
          padding: 0 15px 15px 15px; }
        .tips__news-list .top-product__title {
          height: 34px; } }
  @media screen and (min-width: 600px) and (max-width: 989px) {
    .tips__news-list {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap; }
      .tips__news-list .top-product {
        width: 100%;
        margin-bottom: 15px;
        border-bottom: 1px solid #c1c1c1; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 480px) {
      .tips__news-list .top-product {
        width: calc(100% / 2 - 1px);
        border-right: 1px solid #c1c1c1;
        border-bottom: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 480px) and (max-width: 599px) {
      .tips__news-list .top-product:nth-child(2n) {
        border-right: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 600px) {
      .tips__news-list .top-product {
        width: calc(100% / 3 - 1px); } }
  @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 600px) and (min-width: 600px) and (max-width: 979px) {
    .tips__news-list .top-product:nth-child(3n) {
      border-right: none; } }
    @media screen and (min-width: 600px) and (max-width: 989px) and (min-width: 990px) {
      .tips__news-list .top-product {
        width: calc(100% / 6 - 1px);
        margin-bottom: 0; } }
  @media screen and (min-width: 600px) and (max-width: 989px) {
        .tips__news-list .top-product:last-child {
          border-right: none;
          border-bottom: none; }
        .tips__news-list .top-product__link {
          padding: 0 30px 10px 30px; }
        .tips__news-list .top-product__title {
          height: 34px; } }
  @media screen and (min-width: 990px) {
    .tips__news-list {
      display: flex;
      flex-direction: column; }
      .tips__news-list .top-product {
        margin-bottom: 30px;
        border-bottom: 1px solid #c1c1c1; }
        .tips__news-list .top-product:last-child {
          margin-bottom: 0;
          border-bottom: none; }
        .tips__news-list .top-product__link {
          padding: 0 15px 15px 15px; }
        .tips__news-list .top-product__title {
          height: 34px; } }

.tips__more-wrapper {
  display: flex;
  justify-content: center; }
  .tips__more-wrapper--active a span {
    display: none; }
  .tips__more-wrapper--active a:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .tips__more-wrapper--active a:after {
    content: attr(data-less); }
  .tips__more-wrapper a {
    position: relative;
    padding-left: 20px;
    font-size: 12px;
    color: #1fa2cd;
    cursor: pointer;
    text-decoration: underline; }
    .tips__more-wrapper a:hover {
      text-decoration: none; }
    .tips__more-wrapper a:before {
      position: absolute;
      left: 0;
      top: 6px;
      content: "";
      -webkit-transition: all 300ms ease;
      -o-transition: all 300ms ease;
      transition: all 300ms ease;
      display: inline-block;
      vertical-align: top;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 7px 0 7px;
      border-color: #1fa2cd transparent transparent transparent; }

.tips__date-more-wrapper {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px; }

.sale {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #c1c1c1;
  background-color: #fff; }
  .sale__main-title {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 600; }
  .sale__choose {
    display: flex;
    flex-direction: column; }
    @media screen and (min-width: 990px) {
      .sale__choose {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: baseline; } }
    .sale__choose-item {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px; }
      @media screen and (min-width: 480px) {
        .sale__choose-item {
          flex-direction: row;
          align-items: baseline; } }
      @media screen and (min-width: 990px) {
        .sale__choose-item {
          margin-right: 30px;
          margin-bottom: 0; } }
      .sale__choose-item:last-child {
        margin-right: 0;
        margin-bottom: 0; }
    .sale__choose-label {
      margin-bottom: 5px; }
      @media screen and (min-width: 480px) {
        .sale__choose-label {
          margin-right: 15px;
          margin-bottom: 0; } }
    @media screen and (min-width: 480px) {
      .sale__choose-value {
        width: 200px; } }
    .sale__choose-select {
      display: flex;
      align-items: center;
      height: 40px;
      width: 100%;
      min-width: 0;
      padding: 0 10px;
      border: 1px solid #c1c1c1;
      background-color: #fff;
      transition: all 300ms ease;
      background-color: #fff; }
      .sale__choose-select::-moz-placeholder {
        color: #777;
        opacity: 1; }
      .sale__choose-select:-ms-input-placeholder {
        color: #777; }
      .sale__choose-select::-webkit-input-placeholder {
        color: #777; }
      .sale__choose-select[disabled] {
        background-color: #f8f8f8;
        cursor: not-allowed;
        border-color: #bbb; }
      .sale__choose-select:focus {
        border-color: #424c58; }
      .sale__choose-select:not(.ng-pristine).ng-invalid {
        border-color: #ff0000;
        background-color: #fff0f0; }
      .sale__choose-select:invalid {
        color: #777; }
      .sale__choose-select option {
        color: #000; }
      .sale__choose-select[value=''][disabled] {
        display: none; }

.login-card {
  max-width: 516px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  .login-card__title {
    display: flex;
    align-items: center;
    margin-top: -15px;
    margin-bottom: 30px;
    font-size: 26px;
    color: #ee5c23;
    font-weight: 700; }
    .login-card__title img {
      margin-right: 15px; }
  .login-card__text {
    margin-bottom: 10px;
    font-weight: 700; }
  .login-card__in {
    margin-bottom: 20px; }
  .login-card__item {
    margin-bottom: 10px; }
    .login-card__item:last-child {
      margin-bottom: 0; }
  .login-card__value {
    position: relative; }
  .login-card__actions {
    display: flex;
    justify-content: center; }

.register-club {
  width: 100%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto; }
  .register-club__title {
    margin-bottom: 30px;
    font-size: 40px;
    text-align: center; }
    .register-club__title span {
      color: #ee5c23; }
  .register-club__banner {
    width: 100%;
    margin-bottom: 30px; }
  .register-club__subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    color: #777;
    font-size: 18px;
    font-weight: 400; }
    .register-club__subtitle:before, .register-club__subtitle:after {
      max-width: 50px;
      height: 1px;
      flex: 1;
      content: "";
      opacity: 0.4;
      background-color: #777; }
    .register-club__subtitle:before {
      margin-right: 15px; }
    .register-club__subtitle:after {
      margin-left: 15px; }
  .register-club__in {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
    margin-bottom: 60px; }
    @media screen and (min-width: 768px) {
      .register-club__in {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 15px; } }
  .register-club__section--advantages {
    order: -1; }
    @media screen and (min-width: 768px) {
      .register-club__section--advantages {
        order: unset; } }
  .register-club__section--bottom {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px; }
    @media screen and (min-width: 768px) {
      .register-club__section--bottom {
        grid-template-columns: 1fr 1fr;
        grid-column-start: 1;
        grid-column-end: 3; } }
    .register-club__section--bottom .register-club__item {
      margin-bottom: 0; }
  .register-club__item {
    margin-bottom: 10px; }
    @media screen and (min-width: 768px) {
      .register-club__item--full {
        grid-column-start: 1;
        grid-column-end: 3; } }
    .register-club__item--multi {
      display: flex; }
      .register-club__item--multi .register-club__input {
        flex: 1;
        margin-right: -1px; }
        .register-club__item--multi .register-club__input:last-child {
          margin-right: 0; }
    .register-club__item:last-child {
      margin-bottom: 0; }
  .register-club__input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    border: 1px solid #c1c1c1;
    background-color: #fff; }
  .register-club__actions {
    display: flex;
    justify-content: center; }
  .register-club__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 42px;
    color: #fff;
    background-color: #4ca728;
    cursor: pointer;
    font-weight: 700; }
  @media screen and (min-width: 768px) {
    .register-club .club__image-wrapper {
      width: 412px;
      overflow: hidden; }
      .register-club .club__image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: none;
        object-position: top; } }

.register-club-policy {
  margin-bottom: 60px; }
  @media screen and (min-width: 768px) {
    .register-club-policy {
      padding-left: 30px; } }
  .register-club-policy__item {
    margin-bottom: 20px; }
    .register-club-policy__item--margin {
      padding-left: 15px; }
      @media screen and (min-width: 768px) {
        .register-club-policy__item--margin {
          padding-left: 30px; } }
    .register-club-policy__item:last-child {
      margin-bottom: 0; }
    .register-club-policy__item input {
      display: none; }
      .register-club-policy__item input:checked + label:after {
        opacity: 1; }
    .register-club-policy__item label {
      position: relative;
      padding-left: 35px; }
      .register-club-policy__item label:before, .register-club-policy__item label:after {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        content: ""; }
      .register-club-policy__item label:before {
        width: 24px;
        height: 24px;
        background-color: #fff;
        border: 1px solid #c1c1c1; }
      .register-club-policy__item label:after {
        opacity: 0;
        width: 11px;
        height: 11px;
        margin-top: 6px;
        margin-left: 6px;
        background-color: #ee5c23; }
  .register-club-policy__text {
    padding-left: 35px; }

.register-club-advantages {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 20px;
  background-color: #d6d6d6; }
  .register-club-advantages__title {
    margin-bottom: 20px;
    color: #ee5c23;
    font-weight: 700;
    font-size: 24px; }
  .register-club-advantages__list {
    margin-bottom: 20px; }
  .register-club-advantages__item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 5px; }
    .register-club-advantages__item:last-child {
      margin-bottom: 0; }
    .register-club-advantages__item:before {
      position: absolute;
      left: 0;
      top: 0;
      width: 26px;
      height: 28px;
      content: "";
      background: url("../assets/img/ico-club-dot.png") no-repeat 0 0; }

.events {
  border: 1px solid #c1c1c1; }
  .events__main-title {
    margin-bottom: 15px;
    font-size: 34px;
    font-weight: 400;
    color: #ee5c23; }
  .events__top {
    padding: 15px;
    background-color: #fff; }
    @media screen and (min-width: 768px) {
      .events__top {
        padding: 25px; } }
  .events__image {
    width: 100%;
    height: auto; }
  .events-section__image {
    width: auto;
    height: auto; }
  .events-section__description {
    width: auto;
    line-height: 20px;
    margin-top: 1em;
    margin-bottom: 2em; }
  .events__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px; }
    @media screen and (min-width: 480px) {
      .events__inner {
        grid-template-columns: 1fr 1fr; } }
    @media screen and (min-width: 768px) {
      .events__inner {
        grid-template-columns: 1fr 1fr 1fr; } }

.single-event {
  text-decoration: none;
  color: inherit; }
  .single-event:hover .single-event__hover {
    opacity: 1;
    visibility: visible; }
  .single-event__image-wrapper {
    position: relative;
    margin-bottom: 10px; }
  .single-event__title {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700; }
    .single-event__title:hover {
      text-decoration: underline; }
  .single-event__description {
    font-size: 16px; }
  .single-event__hover {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    background: rgba(0, 0, 0, 0.5); }
  .single-event__button {
    padding: 16px 26px;
    background: #ee5c23;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer; }
