/*! nouislider - 14.6.4 - 3/18/2021 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
          transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  -webkit-box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
          box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  -webkit-box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
          box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
      transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
      transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
      transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
      transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
      transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
      transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.glide {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .glide * {
    -webkit-box-sizing: inherit;
            box-sizing: inherit; }
  .glide__track {
    overflow: hidden; }
  .glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    -ms-touch-action: pan-Y;
        touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    will-change: transform; }
    .glide__slides--dragging {
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
  .glide__slide {
    width: 100%;
    height: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: normal;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent; }
    .glide__slide a {
      -webkit-user-select: none;
              user-select: none;
      -webkit-user-drag: none;
      -moz-user-select: none;
      -ms-user-select: none; }
  .glide__arrows {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .glide__bullets {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  .glide--rtl {
    direction: rtl; }

/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-open {
  overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          -moz-user-select: none;
       user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices [hidden] {
  display: none !important;
}

.choices[data-type*='select-one'] {
  cursor: pointer;
}

.choices[data-type*='select-one'] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*='select-one'] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
  background-color: #ffffff;
  margin: 0;
}

.choices[data-type*='select-one'] .choices__button {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.25;
}

.choices[data-type*='select-one'] .choices__button:hover, .choices[data-type*='select-one'] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*='select-one'] .choices__button:focus {
  -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
          box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
  display: none;
}

.choices[data-type*='select-one']:after {
  content: '';
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*='select-one'].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*='select-one'][dir='rtl']:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*='select-one'][dir='rtl'] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
  cursor: text;
}

.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}

.choices[data-type*='select-multiple'] .choices__button:hover, .choices[data-type*='select-multiple'] .choices__button:focus,
.choices[data-type*='text'] .choices__button:hover,
.choices[data-type*='text'] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #dddddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

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

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir='rtl'] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #ffffff;
  word-break: break-all;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir='rtl'] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}

.choices__list--dropdown.is-active {
  visibility: visible;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir='rtl'] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
      -ms-user-select: none;
          -moz-user-select: none;
       user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir='rtl'] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/*=====  End of Choices  ======*/

/**
 * Withdrawal form — light styling.
 * Inputs/buttons inherit project Bootstrap (`form-control`, `btn`); these rules
 * only add layout + interactive feedback for the row picker.
 */

.withdrawal-form {
	font-family: inherit;
}

.withdrawal-form__steps {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	padding: 0;
	margin: 0 0 16px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.withdrawal-form__step {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	min-width: 120px;
	padding: 8px 12px;
	background: #f1f1f1;
	border-radius: 3px;
	font-size: 14px;
	color: #666;
}

.withdrawal-form__step--active {
	background: #e6f0ff;
	color: #003e91;
}

.withdrawal-form__step--done {
	background: #d7f5d7;
	color: #1a6b1a;
}

.withdrawal-form__form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 12px;
}

.withdrawal-form__field {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 4px;
}

.withdrawal-form__field--consent {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 8px;
}

.withdrawal-form__items {
	width: 100%;
}

.withdrawal-form__item {
	cursor: pointer;
	-webkit-transition: background-color 120ms ease;
	-o-transition: background-color 120ms ease;
	transition: background-color 120ms ease;
}

.withdrawal-form__item:hover {
	background-color: #f5faff;
}

.withdrawal-form__item.is-selected {
	background-color: #e6f0ff;
}

.withdrawal-form__item-label {
	cursor: pointer;
	margin: 0;
	font-weight: normal;
}

.withdrawal-form__item-piece {
	max-width: 80px;
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	        appearance: textfield;
}

.withdrawal-form__item-piece::-webkit-outer-spin-button,
.withdrawal-form__item-piece::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.withdrawal-form__item-checkbox {
	width: 1%;
	white-space: nowrap;
}

.withdrawal-form__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 8px;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	margin-top: 16px;
}

.withdrawal-form__error {
	margin-bottom: 16px;
}

@media (max-width: 480px) {
	.withdrawal-form__items th,
	.withdrawal-form__items td {
		font-size: 12px;
		padding: 4px;
	}
	.withdrawal-form__item-piece {
		max-width: 60px;
	}
}

@charset "UTF-8";
@font-face {
  font-family: "icons";
  src: url("../../fonts/icons.eot");
  src: url("../../fonts/icons.eot?#iefix") format("embedded-opentype"), url("../../fonts/icons.svg#icons") format("svg"), url("../../fonts/icons.ttf") format("truetype"), url("../../fonts/icons.woff") format("woff");
  font-display: swap;
  font-weight: normal;
}
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #32404E;
  font-family: "Work Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 960px) {
  body {
    font-size: 1.7rem;
  }
}

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

.text-red {
  color: #c33c26 !important;
}

h1,
h2,
h3,
h4,
h5,
.--title {
  color: #32404E;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
}

h1,
.--title-h1 {
  font-size: 3rem;
  font-weight: 700;
}
@media (min-width: 1280px) {
  h1,
.--title-h1 {
    font-size: 4rem;
  }
}

h2,
.--title-h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (min-width: 1280px) {
  h2,
.--title-h2 {
    font-size: 3rem;
  }
}

h3,
.--title-h3 {
  font-size: 1.8rem;
}
@media (min-width: 1280px) {
  h3,
.--title-h3 {
    font-size: 2.4rem;
  }
}

h4,
.--title-h4 {
  font-size: 1.6rem;
}
@media (min-width: 1280px) {
  h4,
.--title-h4 {
    font-size: 1.8rem;
  }
}

h5,
.--title-h5 {
  font-size: 1.6rem;
}
@media (min-width: 1280px) {
  h5,
.--title-h5 {
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
}

a {
  color: #E62F63;
  text-decoration: none;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media (hover: hover), (-ms-high-contrast: none) {
  a:hover {
    color: #fa5884;
  }
}
a:focus {
  outline: 0;
}

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background: #f18aa7;
  color: #32404E;
}

::selection {
  background: #f18aa7;
  color: #32404E;
}

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

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

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

figure,
picture {
  display: block;
  margin: 0;
}

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

video {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

form,
button,
[role=button] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  display: block;
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
  outline: 0;
}

button,
[role=button],
label[for],
select {
  cursor: pointer;
  outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

input:focus {
  outline: 0;
}

input::-ms-check {
  display: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  max-width: 100%;
  resize: vertical;
}

.--bg-light {
  background: #F6F8F9;
}

.--bg-white {
  background: #fff;
}

.--bg-info {
  background: #2a7298;
}

.--block {
  display: block;
}

.--green {
  color: #37B56D;
}

.--red {
  color: #c33c26;
}

.--content {
  display: block;
  margin: auto;
  min-width: 320px;
  padding: 0 16px;
  position: relative;
  width: 100%;
  max-width: 972px;
}
@media (min-width: 1280px) {
  .--content {
    max-width: 1232px;
  }
}
@media (min-width: 1600px) {
  .--content {
    max-width: 1452px;
  }
}

.--row {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 16px);
  /* 8px column offset */
  margin: 0 -8px;
  /* 8px column offset */
}

.--column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 8px;
  /* 8px column offset */
}

.--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
}

.--flex-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.--flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}

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

.--flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.--flex-centre,
.--flex-centre-x {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.--flex-centre,
.--flex-centre-y {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.--flex-end-x {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.--flex-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.--flex-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.--flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.--flex-start-x {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.--hide {
  display: none;
}

.--hide-text {
  font-size: 0;
  line-height: 0;
}

.--sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.--link,
.--link-rev {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.--link::after,
.--link-rev::after {
  background: #32404E;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.--link, .--link::after,
.--link-rev,
.--link-rev::after {
  -webkit-transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
  -o-transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
  transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
}

.--link::after {
  width: 100%;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .--link:hover::after {
    width: 0;
  }
}

.--link-rev::after {
  width: 0;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .--link-rev:hover::after {
    width: 100%;
  }
}

.--link-underline {
  text-decoration: underline;
}

.--shadow {
  -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

.--sticker,
.--sticker-small,
.--sticker-round {
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}
.--sticker::after,
.--sticker-small::after,
.--sticker-round::after {
  background: #E62F63;
  border-radius: 6px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.--sticker {
  font-size: 1.8rem;
  padding: 4px 12px;
}

.--sticker-small {
  font-size: 1.4rem;
  height: 24px;
  padding: 5px 12px;
}

.--sticker-round {
  font-size: 1.4rem;
  height: 26px;
  padding: 6px 14px;
}
.--sticker-round::after {
  border-radius: 13px;
}

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

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

.--text-line-through {
  text-decoration: line-through;
}

.--text-brand {
  color: #E62F63;
}

.--text-dark {
  color: #000;
}

.--text-underline {
  text-decoration: underline;
}

.--w-hide {
  display: none;
}
.--w-1 {
  width: 8.333333%;
}
.--w-2 {
  width: 16.666667%;
}
.--w-3 {
  width: 25%;
}
.--w-4 {
  width: 33.333333%;
}
.--w-5 {
  width: 41.666667%;
}
.--w-6 {
  width: 50%;
}
.--w-7 {
  width: 58.333333%;
}
.--w-8 {
  width: 66.666667%;
}
.--w-9 {
  width: 75%;
}
.--w-10 {
  width: 83.333333%;
}
.--w-11 {
  width: 91.666667%;
}
.--w-12 {
  width: 100%;
}
@media (min-width: 480px) {
  .--w-t-3 {
    width: 25%;
  }
  .--w-t-6 {
    width: 50%;
  }
  .--w-t-9 {
    width: 75%;
  }
}
@media (min-width: 640px) {
  .--w-s-auto {
    width: auto;
  }
  .--w-s-hide {
    display: none;
  }
  .--w-s-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .--w-s-1 {
    width: 8.333333%;
  }
  .--w-s-3 {
    width: 25%;
  }
  .--w-s-4 {
    width: 33.333333%;
  }
  .--w-s-5 {
    width: 41.666667%;
  }
  .--w-s-6 {
    width: 50%;
  }
  .--w-s-7 {
    width: 58.333333%;
  }
  .--w-s-8 {
    width: 66.666667%;
  }
  .--w-s-9 {
    width: 75%;
  }
  .--w-s-10 {
    width: 83.333333%;
  }
  .--w-s-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .--w-m-show {
    display: block;
  }
  .--w-m-1 {
    width: 8.333333%;
  }
  .--w-m-3 {
    width: 25%;
  }
  .--w-m-4 {
    width: 33.333333%;
  }
  .--w-m-5 {
    width: 41.666667%;
  }
  .--w-m-6 {
    width: 50%;
  }
  .--w-m-7 {
    width: 58.333333%;
  }
  .--w-m-8 {
    width: 66.666667%;
  }
  .--w-m-9 {
    width: 75%;
  }
  .--w-m-10 {
    width: 83.333333%;
  }
  .--w-m-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .--w-l-2 {
    width: 16.666667%;
  }
  .--w-l-3 {
    width: 25%;
  }
  .--w-l-4 {
    width: 33.333333%;
  }
  .--w-l-5 {
    width: 41.666667%;
  }
  .--w-l-6 {
    width: 50%;
  }
  .--w-l-7 {
    width: 58.333333%;
  }
  .--w-l-8 {
    width: 66.666667%;
  }
  .--w-l-9 {
    width: 75%;
  }
  .--w-l-12 {
    width: 100%;
  }
}
.--offset-2 {
  margin-left: 16.666667%;
}
@media (min-width: 960px) {
  .--offset-m-1 {
    margin-left: 8.333333%;
  }
  .--offset-m-3 {
    margin-left: 25%;
  }
  .--offset-m-6 {
    margin-left: 50%;
  }
}
@media (min-width: 1280px) {
  .--offset-l-1 {
    margin-left: 8.333333%;
  }
  .--offset-l-2 {
    margin-left: 16.666667%;
  }
  .--offset-l-3 {
    margin-left: 25%;
  }
  .--offset-l-4 {
    margin-left: 33.333333%;
  }
}
@media (min-width: 640px) {
  .--flex-s-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .--flex-s-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 960px) {
  .--flex-m-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.--bold {
  font-weight: bold;
}

[class*=__button-wrap] {
  margin: -4px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap] {
    margin: -4px;
  }
}

[class*=__button-wrap--wide] {
  margin: -8px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap--wide] {
    margin: -8px;
    width: calc(100% + 16px);
  }
}

.button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 700;
  min-height: 54px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
  overflow: hidden;
  padding: 6px 15px;
  position: relative;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  z-index: 1;
}
@media (min-width: 480px) {
  .button {
    font-size: 1.5rem;
  }
}
.button, .button::before, .button::after,
.button .button__counter {
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
[class*=__button-wrap--wide] .button {
  margin: 8px;
}

.button--small {
  font-size: 1.3rem;
  min-height: 40px;
}
@media (min-width: 480px) {
  .button--small {
    font-size: 1.5rem;
  }
}

.button--brand {
  background: #E62F63;
  color: #fff;
  text-transform: uppercase;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--brand:hover {
    background: #fa5884;
    color: #fff;
  }
}

.button--ghost {
  background: transparent;
  color: #E62F63;
  border: 2px solid #E62F63;
  text-transform: uppercase;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--ghost:hover {
    background: #E62F63;
    color: #fff;
  }
}

.button--basket {
  background: #37B56D;
  color: #fff;
  text-transform: uppercase;
}
.button--basket.--ended {
  background: #c33c26;
  max-width: 340px;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--basket.--ended:hover {
    background: #da5742;
    color: #fff;
  }
}
.button--basket::before {
  font-size: 2.2rem;
  margin: 0 12px 0 0;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--basket:hover {
    background: #57d08d;
    color: #fff;
  }
}

.button--disabled.button--basket {
  background: rgba(55, 181, 109, 0.5);
}

.button--text {
  background: #32404E;
  color: #fff;
  text-transform: uppercase;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--text:hover {
    background: #E62F63;
    color: #fff;
  }
}

.button--large.button--text {
  padding: 6px 40px;
  font-size: 1.3rem;
}
.button--large.button--basket {
  padding: 6px 30px;
}

/* Remove specificity and set .icon styles everywhere except for .ppl-parcelshop-map */
:where(:not(.ppl-parcelshop-map .icon)).icon::before {
  font-family: "icons";
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-transform: none;
}

.icon--facebook:before {
  content: "";
}

.icon--home:before {
  content: "";
}

.icon--mail:before {
  content: "";
}

.icon--percent:before {
  content: "";
}

.icon--phone:before {
  content: "";
}

.icon--print:before {
  content: "";
}

.icon--search:before {
  content: "";
}

.icon--user:before {
  content: "";
}

.icon--cart:before {
  content: "";
}

.content {
  font-size: 1.5rem;
}

.content__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px;
}

.content__column {
  padding-left: 8px;
  padding-right: 8px;
}

.content__flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content--section {
  color: #000;
  margin: 0 auto 16px;
  max-width: 768px;
  width: 100%;
}
.content--section:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .content--section {
    margin: 0 0 40px;
  }
  .content--section:last-child {
    margin-bottom: 0;
  }
}

.content > h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 16px;
}

.content > h2 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.content > ul, .content > p ul,
.--list {
  margin: 0 0 32px;
}

.content > ul li, .content > p ul li,
.--list-item {
  font-size: 1.5rem;
  margin: 4px 0 4px 18px;
  position: relative;
}
.content > ul li::before, .content > p ul li::before,
.--list-item::before {
  background: #E62F63;
  border-radius: 2px;
  content: "";
  height: 6px;
  left: -16px;
  position: absolute;
  top: 8px;
  width: 6px;
}

.content > ol, .content > p ol,
.--list-num {
  counter-reset: counter-list;
  margin: 0 0 32px;
}

.content > ol li, .content > p ol li,
.--list-num-item {
  counter-increment: counter-list;
  font-size: 1.5rem;
  padding: 4px 0 4px 30px;
  position: relative;
}
.content > ol li::before, .content > p ol li::before,
.--list-num-item::before {
  color: #E62F63;
  content: "0" counter(counter-list);
  left: 0;
  position: absolute;
  top: 4px;
}
.content > ol li:nth-child(n+10)::before, .content > p ol li:nth-child(n+10)::before,
.--list-num-item:nth-child(n+10)::before {
  content: counter(counter-list);
}

.content > p {
  margin: 0 0 1.5em;
}

.content > a, .content > p a, .content table a {
  text-decoration: underline;
}

.table-wrapper {
  padding: 6px 14px 6px 14px;
  background-color: #fff;
  margin-bottom: 32px;
  border: 1px solid #C4D0DB;
  overflow-x: auto;
  font-size: 1.5rem;
}
.table-wrapper .--bold {
  color: #000;
}
@media (min-width: 640px) {
  .table-wrapper {
    padding: 6px 28px 6px 28px;
  }
}

.content table {
  border: none;
}

.content table td, .content table th {
  padding: 8px 4px;
  border: none;
}
@media (min-width: 640px) {
  .content table td, .content table th {
    padding: 13px 4px;
  }
}

.content table tr {
  padding: 10px;
  border: none;
}
.content table tr:not(:last-of-type) td {
  border-bottom: 1px solid #C4D0DB;
}

.content table td {
  font-size: 15px;
  color: #000;
}

.content table th {
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #C4D0DB;
  font-size: 1.8rem;
}

.content > img, .content > p img {
  margin: 0 0 12px;
  height: auto;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__bottom .menu__list {
  background: #E4E8EC;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 6px 15px;
  font-size: 1.5rem;
  margin-top: 15px;
  width: 100%;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
}
@media (min-width: 1280px) {
  .header__bottom .menu__list {
    padding: 6px 30px;
    max-height: calc(100vh - 200px);
  }
}
.header__bottom .menu__list::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  bottom: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 16px 11px 16px;
  border-color: transparent transparent #E4E8EC transparent;
  right: 54px;
}
@media (min-width: 1280px) {
  .header__bottom .menu__list::before {
    left: calc(50% - 16px);
    right: auto;
  }
}

.menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 1280px) {
  .menu__top {
    display: none;
  }
}

.menu__additional-list {
  background: #E4E8EC;
  width: 100%;
  padding: 35px 15px;
  max-height: 150px;
}

.menu__additional-link {
  padding: 10px 0;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: #32404E;
}

.menu__list--main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__button {
  display: inline-block;
  height: 36px;
  padding: 3px;
  position: absolute;
  right: 8px;
  top: -4px;
  width: 40px;
  z-index: 1;
}
@media (min-width: 1280px) {
  .menu__button {
    display: none;
  }
}

.menu__link {
  color: #32404E;
  display: block;
}
.menu__link:hover, .menu__link:focus {
  color: #E62F63;
}
.header__top .menu__link {
  font-size: 1.4rem;
  text-transform: uppercase;
  padding: 3px 8px;
}
@media (min-width: 1600px) {
  .header__top .menu__link {
    padding: 5px 13px;
  }
}
.header__bottom .menu__link {
  width: 100%;
  padding: 9.65px 2px;
  border-bottom: 1px solid #C4D0DB;
}
@media (min-width: 1600px) {
  .header__bottom .menu__link {
    padding: 12.3px 2px;
  }
}

.header__bottom .menu__link--last {
  border-bottom: 0;
}

.header {
  background: #fff;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  overflow: visible;
  border-bottom: 1px solid #E4E8EC;
  padding-bottom: 25px;
}

.header--fixed {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
}

.header--hide {
  top: -100%;
}

.header__menu {
  position: relative;
}
.header__bottom .header__menu {
  max-height: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  right: -16px;
  left: -16px;
}
@media (min-width: 1280px) {
  .header__bottom .header__menu {
    left: 0;
    right: auto;
  }
}

.header__top .header__menu {
  display: none;
}
@media (min-width: 1280px) {
  .header__top .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__bottom .header__menu {
  position: absolute;
  z-index: 4;
}
@media (min-width: 1280px) {
  .header__bottom .header__menu {
    width: 100%;
  }
}

.header__mobile-part {
  display: initial;
}
@media (min-width: 1280px) {
  .header__mobile-part {
    display: none;
  }
}

.header__desktop-part {
  display: none;
}
@media (min-width: 1280px) {
  .header__desktop-part {
    display: initial;
  }
}

.header__call {
  white-space: nowrap;
  margin-right: 15px;
  line-height: 1.2;
}
@media (min-width: 1280px) {
  .header__call {
    margin-left: auto;
  }
}
.header__top .header__call {
  display: none;
}
@media (min-width: 1280px) {
  .header__top .header__call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__call-link {
  color: #37B56D;
  margin-right: 8px;
}
.header__call-link::before {
  font-size: 1.3rem;
}

.header__call-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1280px) {
  .header__call-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.header__call-text {
  color: #ABB6C1;
  display: block;
}

.header__logo {
  width: 110px;
  margin-right: 15px;
}
@media (min-width: 375px) {
  .header__logo {
    width: 130px;
  }
}
@media (min-width: 1280px) {
  .header__logo {
    margin-right: 25px;
  }
}
@media (min-width: 1600px) {
  .header__logo {
    margin-right: 40px;
    width: 190px;
  }
}

.header__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header__top {
  padding: 25px 0;
  font-size: 1.4rem;
  display: none;
  width: 100%;
}
@media (min-width: 1280px) {
  .header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__button {
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 4px 11px;
}
@media (min-width: 375px) {
  .header__button {
    padding: 8px 17px;
  }
}
@media (min-width: 1280px) {
  .header__button {
    padding: 8px 32px;
  }
}

.header__button-bar-wrap {
  margin-right: 10px;
  pointer-events: none;
}

.header__button-bar {
  display: block;
  background: white;
  width: 18px;
  height: 2px;
}
.header__button-bar:not(:last-of-type) {
  margin-bottom: 3px;
}

.header__search {
  width: 100%;
  position: relative;
  max-width: 525px;
}
.header__search::before {
  position: absolute;
  left: 18px;
  top: 19px;
  color: #E62F63;
  font-size: 1.6rem;
  z-index: 2;
}
@media (min-width: 1600px) {
  .header__search {
    max-width: 665px;
  }
}

.header__search-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__column {
  position: relative;
}

.header__column--right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}
@media (min-width: 1280px) {
  .header__column--right {
    padding: 0 0 0 55px;
  }
}

.header__login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
  margin-left: auto;
  color: #32404E;
}
@media (min-width: 1280px) {
  .header__login {
    margin-right: 25px;
  }
}

.header__top .lang {
  display: none;
}
@media (min-width: 1280px) {
  .header__top .lang {
    display: block;
  }
}

.lang__item {
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.lang__item:not(:last-of-type) {
  margin-right: 8px;
}
.lang__item:hover, .lang__item:focus {
  opacity: 1;
}

.lang__item--selected {
  opacity: 1;
}

/* Footer */
.footer {
  padding: 40px 0 40px 0;
  background: #32404E;
  color: #fff;
}
@media (min-width: 960px) {
  .footer {
    padding: 80px 0 60px 0;
  }
}

.footer__top {
  margin-bottom: 50px;
}

/* Footer | Title */
.footer__title {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 15px 0;
  padding-left: 25px;
  position: relative;
}
@media (min-width: 480px) {
  .footer__title {
    padding-left: 0px;
    margin: 0 0 25px 0;
  }
}
.footer__title::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  left: 0;
  top: 0px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #E62F63;
  border-bottom: 1px solid #E62F63;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (min-width: 480px) {
  .footer__title::before {
    content: none;
  }
}

.footer__title--active::before {
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 6px;
}

.footer__item--contact {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 960px) {
  .footer__item--contact {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.footer__item--socials {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 960px) {
  .footer__item--socials {
    -webkit-box-ordinal-group: unset;
        -ms-flex-order: unset;
            order: unset;
  }
}

.footer__menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 25px;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
}
@media (min-width: 480px) {
  .footer__menu {
    max-height: none;
    padding-left: 0px;
  }
}

/* Footer | Wrap */
.footer__wrap {
  max-width: 245px;
  width: 100%;
  margin: 0 0 30px 0;
}
@media (min-width: 1600px) {
  .footer__wrap {
    max-width: 295px;
  }
}

/* Footer | Link */
.footer__link {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: #E4E8EC;
  padding: 8px 0;
}

.footer__heureka {
  height: 130px;
  width: 100%;
  margin: 0 0 40px 0;
}

.footer__facebook {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 960px) {
  .footer__facebook {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer__facebook::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: url("/img/facebook-logo.svg") no-repeat 0 0/cover;
  margin: 0 8px 0 0;
}

.footer__small {
  font-size: 1.3rem;
  color: #ABB6C1;
}

.footer__copyright {
  max-width: 625px;
  margin: 0 0 20px 0;
}

.footer__bottom .footer__content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
@media (min-width: 1280px) {
  .footer__bottom .footer__content {
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (min-width: 1280px) {
  .footer__madeby {
    margin-left: auto;
  }
}
.footer__madeby a {
  color: #ABB6C1;
}
.footer__madeby a:hover, .footer__madeby a:focus {
  color: #E62F63;
}

/* Breadcrumb */
.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 480px) {
  .breadcrumb {
    text-align: left;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.breadcrumb__item {
  position: relative;
  font-size: 1.4rem;
}
.breadcrumb__item:not(:first-of-type) {
  padding-left: 23px;
}
.breadcrumb__item:not(:first-of-type)::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 1px;
  background: #E4E8EC;
  left: 6px;
  top: 9px;
}

.breadcrumb__item--active {
  color: #ABB6C1;
}

.breadcrumb__home::before {
  color: #32404E;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.breadcrumb__home:hover::before, .breadcrumb__home:focus::before {
  color: #E62F63;
}

.breadcrumb__link {
  color: #32404E;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: #E62F63;
}

.basket {
  position: relative;
}

.basket__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #32404E;
  margin-right: 10px;
}
.basket__info:hover, .basket__info:focus {
  color: #E62F63;
}
@media (min-width: 1280px) {
  .basket__info {
    margin-right: 0;
  }
}

.basket__icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.basket__icon::before {
  font-size: 2.1rem;
}
@media (min-width: 375px) {
  .basket__icon::before {
    font-size: 2.6rem;
  }
}

.basket__wrap {
  position: absolute;
  background: #fff;
  right: -92px;
  top: 100%;
  width: 400px;
  z-index: 2;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
  display: none;
}
@media (min-width: 960px) {
  .basket__wrap {
    right: -107px;
    display: block;
  }
}
@media (min-width: 1280px) {
  .basket__wrap {
    right: 0px;
  }
}

.basket__box {
  padding: 10px;
  border: 1px solid #E4E8EC;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.basket__summary {
  font-size: 1.8rem;
  margin: 10px -10px 15px;
  padding: 10px;
  background: #E4E8EC;
}

.basket__sum-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.basket__sum-price {
  font-weight: 700;
}

.basket__sum-item {
  margin: 5px 0;
}

.basket__sum-item--small {
  font-size: 1.3rem;
}

.basket__price {
  display: none;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 1280px) {
  .basket__price {
    display: block;
  }
}

.basket__icon {
  margin-right: 8px;
}

.basket__count {
  position: absolute;
  padding: 1px 8px;
  right: -10px;
  top: -14px;
  border-radius: 30px;
  background: #37B56D;
  font-size: 1.4rem;
  color: #fff;
}

.basket__figure {
  width: 50px;
  height: 50px;
  margin: 0 12px 0 0;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.basket__product {
  color: #32404E;
}
.basket__product:not(:last-of-type) {
  margin: 0 0 10px 0;
  border-bottom: 1px solid #E4E8EC;
  padding-bottom: 6px;
}

.basket__img {
  max-width: 100%;
  max-height: 100%;
}

.basket__title {
  width: 100%;
  font-size: 1.7rem;
  margin: 0 0 20px 0;
}

.basket__subtitle {
  width: 100%;
  font-size: 1.5rem;
}
.basket__subtitle span {
  font-size: 1.3rem;
  display: block;
}

.basket__product-price, .basket__product-count {
  font-size: 1.3rem;
}

.basket__product-price {
  color: #32404E;
}

.basket__product-count {
  color: #ABB6C1;
}

.order-transfer-wrap {
  margin: 15px 40px 15px 0;
}

.order-payment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
}

.order-final .order-text {
  max-width: 600px;
}
.order-final fieldset {
  border: 1px solid black;
  position: relative;
  max-width: 180px;
  width: 100%;
}
.order-final fieldset legend {
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: white;
  padding: 0 5px;
  width: auto;
  font-size: 20px;
  border: none;
  margin: 0;
}
.order-final fieldset img {
  width: 100%;
}

.js--active {
  max-height: none;
}

.js--fixed {
  position: fixed;
  left: 0;
  right: 0;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
  overflow: auto;
}
.modal iframe {
  height: 50vw;
  min-height: 250px;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 960px) {
  .modal iframe {
    height: 650px;
    max-height: 80vh;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal__close {
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  top: -20px;
  right: -20px;
  position: absolute;
}
.modal__close:before, .modal__close:after {
  background: #707070;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal__close:after {
  width: 15px;
  height: 2px;
}
.modal__close:before {
  width: 2px;
  height: 15px;
}

.modal__top {
  margin: 0 0 15px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 960px) {
  .modal__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 30px 0;
  }
}

.modal__link {
  font-size: 1.4rem;
  color: #32404E;
}

.modal__wrap {
  max-width: 460px;
  width: 100%;
}

.modal__title {
  text-align: center;
  font-weight: 700;
}
@media (min-width: 1280px) {
  .modal__title {
    font-size: 3rem;
  }
}

.modal__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #37B56D;
  margin: 10px 0;
  position: relative;
}
@media (min-width: 960px) {
  .modal__icon {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }
}
.modal__icon::after {
  content: "";
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 16px;
  top: -2px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal__container {
  position: relative;
  z-index: 22;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  text-align: left;
  width: 100%;
}
.modal--product .modal__container {
  max-width: 940px;
}
.modal--parcelshop .modal__container {
  max-width: 1500px;
}
.modal--info .modal__container {
  max-width: 530px;
}
.modal--product .modal__container, .modal--gdpr .modal__container, .modal--info .modal__container {
  padding: 15px;
}
@media (min-width: 960px) {
  .modal--product .modal__container, .modal--gdpr .modal__container, .modal--info .modal__container {
    padding: 30px;
  }
}
.modal--centered .modal__container {
  margin: auto;
}
.modal__container .content p:last-of-type {
  margin: 0;
}
.modal__container .button {
  margin-left: 0;
  margin-top: 20px;
}

.modal__container--light {
  background: #E4E8EC;
}

.modal__products {
  background: #E4E8EC;
}

.modal__parcelshop {
  max-height: 100%;
}

.modal__product-add {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 960px) {
  .modal__product-add {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.modal__product {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  padding: 10px 0;
  margin: 0 0 20px 0;
}
@media (min-width: 960px) {
  .modal__product {
    padding: 25px 0;
  }
}

.modal__product-info {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 480px) {
  .modal__product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 960px) {
  .modal__product-info {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.modal__product-title {
  font-size: 1.4rem;
  max-width: 200px;
}
@media (min-width: 960px) {
  .modal__product-title {
    font-size: 1.6rem;
  }
}

.modal__product-figure {
  height: 50px;
  width: 50px;
  margin: 8px 0;
}
@media (min-width: 480px) {
  .modal__product-figure {
    margin-right: 12px;
  }
}
@media (min-width: 960px) {
  .modal__product-figure {
    width: 75px;
    margin-right: 20px;
  }
}

.modal__product-img {
  max-height: 100%;
  max-width: 100%;
}

.modal__product-vat {
  font-weight: 700;
  font-size: 2rem;
}

.modal__buttons {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal__buttons .modal__button:first-of-type {
  margin-right: 20px;
}

[data-withdrawal-page] .withdrawal-confirmation {
  margin-top: 15px;
  margin-bottom: 15px;
}
[data-withdrawal-page] .withdrawal-form {
  margin-top: 15px;
  margin-bottom: 30px;
}
[data-withdrawal-page] .withdrawal-form__error {
  padding: 8px 12px;
  margin-bottom: 15px;
}
[data-withdrawal-page]:has([data-withdrawal-step="2"]) .page-content, [data-withdrawal-page]:has([data-withdrawal-step="3"]) .page-content, [data-withdrawal-page]:has(.withdrawal-confirmation) .page-content {
  display: none;
}

.withdrawal-form .withdrawal-form__steps {
  counter-reset: withdrawal-step;
}
.withdrawal-form .withdrawal-form__step {
  counter-increment: withdrawal-step;
  font-size: 1.5rem;
}
.withdrawal-form .withdrawal-form__step::before {
  content: counter(withdrawal-step) ". ";
  font-weight: 700;
}
.withdrawal-form .form-control {
  display: block;
  width: 100%;
  background: #fff;
  border: 2px solid #E4E8EC;
  border-radius: 0;
  color: #32404E;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 8px 12px;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.withdrawal-form .form-control:focus {
  border-color: #E62F63;
}
.withdrawal-form textarea.form-control {
  min-height: 90px;
  resize: vertical;
}
.withdrawal-form .control-label {
  font-weight: 600;
  font-size: 1.5rem;
}
.withdrawal-form .withdrawal-form__items {
  border-collapse: collapse;
}
.withdrawal-form .withdrawal-form__items th,
.withdrawal-form .withdrawal-form__items td {
  padding: 8px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #C4D0DB;
}
.withdrawal-form .withdrawal-form__items th {
  font-weight: 700;
  font-size: 1.4rem;
  color: #7D8B98;
}
.withdrawal-form input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: auto;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.withdrawal-form .withdrawal-form__item-checkbox {
  text-align: center;
}
.withdrawal-form .withdrawal-form__field--consent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.withdrawal-form .withdrawal-form__field--consent label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: normal;
  cursor: pointer;
}
.withdrawal-form .withdrawal-form__item-piece {
  display: inline-block;
  width: auto;
}
.withdrawal-form .withdrawal-form__submit,
.withdrawal-form .withdrawal-form__back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 54px;
  padding: 6px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.withdrawal-form .withdrawal-form__submit {
  background-color: #E62F63;
  border-color: #E62F63;
  color: #fff;
  text-transform: uppercase;
}
.withdrawal-form .withdrawal-form__submit:hover, .withdrawal-form .withdrawal-form__submit:focus, .withdrawal-form .withdrawal-form__submit:active {
  background-color: #fa5884;
  border-color: #fa5884;
  color: #fff;
}
.withdrawal-form .withdrawal-form__back {
  background: #fff;
  border-color: #E4E8EC;
  color: #32404E;
}
.withdrawal-form .withdrawal-form__back:hover, .withdrawal-form .withdrawal-form__back:focus {
  border-color: #32404E;
  color: #32404E;
}
.withdrawal-form .withdrawal-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 8px;
}

.withdrawal-link--list {
  margin-bottom: 5px;
}

@media (min-width: 1280px) {
  .main-header--homepage .main-header__column--right {
    padding-left: 55px;
  }
}

.main-header__title {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 30px 0;
  text-align: center;
}
@media (min-width: 480px) {
  .main-header__title {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .main-header__title {
    font-size: 4rem;
  }
}
.main-header--title .main-header__title {
  margin: 0;
}
.main-header--product .main-header__title {
  font-size: 2.5rem;
  margin-top: 10px;
}
@media (min-width: 1280px) {
  .main-header--product .main-header__title {
    font-size: 3rem;
  }
}
.main-header__category .main-header__title {
  font-size: 4rem;
}

.main-header__title--desktop {
  display: none;
}
@media (min-width: 960px) {
  .main-header__title--desktop {
    display: block;
  }
}

.main-header__title--mobile {
  display: block;
}
@media (min-width: 960px) {
  .main-header__title--mobile {
    display: none;
  }
}

.main-header {
  padding: 30px 0;
  margin-top: 165px;
}
@media (min-width: 960px) {
  .main-header {
    padding-top: 50px;
  }
}

.main-header--product {
  padding-bottom: 40px;
}

.main-header__category {
  border: 2px solid #E4E8EC;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 30px 30px;
  white-space: normal;
}
@media (min-width: 960px) {
  .main-header__category {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 60px 60px;
    margin: 0 0 30px 0;
  }
}
@media (min-width: 960px) {
  .glide .main-header__category {
    margin: 0;
  }
}

.main-header__figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.main-header--product .main-header__figure {
  width: 100%;
  margin: 0 0 20px 0;
  height: 360px;
}
@media (min-width: 1280px) {
  .main-header--product .main-header__figure {
    height: 430px;
  }
}
.main-header--blog-detail .main-header__figure {
  min-height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  padding: 25px;
  margin: 0 0 30px 0;
}
.main-header--blog-detail .main-header__figure::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #000), color-stop(50%, transparent));
  background: -o-linear-gradient(bottom, #000 0, transparent 50%);
  background: linear-gradient(0deg, #000 0, transparent 50%);
}
.main-header__category .main-header__figure {
  max-width: 625px;
  width: 100%;
  margin: 0 0 20px 0;
}
@media (min-width: 960px) {
  .main-header__category .main-header__figure {
    margin: 0;
  }
}

.main-header__picture {
  width: 100%;
  height: 100%;
}

.main-header--product .main-header__img {
  max-width: 100%;
  max-height: 100%;
}
.main-header--blog-detail .main-header__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
}

.main-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-header__address {
  font-size: 1.6rem;
}

.main-header__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 25px 0;
}

.main-header__label {
  font-size: 1.5rem;
}

.main-header--product .main-header__box {
  padding-top: 30px;
}
.main-header--contact .main-header__box {
  padding: 8px 0;
}

.main-header--product .main-header__gallery {
  max-width: 350px;
  margin: 0 0 25px 0;
}
@media (min-width: 1280px) {
  .main-header--product .main-header__gallery {
    max-width: 650px;
  }
}

.main-header__category .main-header__desc {
  text-align: center;
}
@media (min-width: 480px) {
  .main-header__category .main-header__desc {
    margin-right: 35px;
    text-align: left;
  }
}

/* Benefit */
.benefit {
  padding: 25px 0;
}
@media (min-width: 960px) {
  .benefit {
    padding: 60px 0;
  }
}
.category + .benefit {
  padding-top: 0;
}
@media (min-width: 960px) {
  .category + .benefit {
    padding: 60px 0;
  }
}

.benefit__item {
  max-width: 225px;
  margin: 10px 45px;
  line-height: 1.2;
}

.benefit__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 350px;
  margin: auto;
}
@media (min-width: 960px) {
  .benefit__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: none;
  }
}

.benefit__figure {
  width: 55px;
  height: 50px;
  margin: 0 12px 0 0;
}

.benefit__img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.benefit__text {
  font-size: 1.7rem;
}
.benefit__text strong {
  display: block;
}

/* Files */
.files {
  margin: 0 0 30px 0;
}

.files--product {
  padding-top: 30px;
  margin-top: 15px;
  border-top: 1px solid #E4E8EC;
}

.files__title {
  font-weight: 700;
  margin: 0 0 10px 0;
}

.files__link {
  text-decoration: underline;
}

/* Form | Input */
.form__input {
  height: 54px;
  width: 100%;
}
.form--search .form__input {
  padding: 8px 12px 8px 40px;
  font-size: 1.2rem;
}
@media (min-width: 370px) {
  .form--search .form__input {
    font-size: 1.5rem;
  }
}

.form__label {
  font-size: 1.4rem;
  display: block;
}

.form__input, .form__textarea {
  display: block;
  background: #fff;
  border: 2px solid #E4E8EC;
  color: #32404E;
  font-size: 1.5rem;
  padding: 8px 12px;
  width: 100%;
}
.form--contact .form__input, .form--contact .form__textarea {
  margin: 5px 0 10px 0;
}
.form__line-wrap .form__input, .form__line-wrap .form__textarea {
  margin: 0;
}

.form__line-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 5px 0 10px 0;
}

.form__wrap {
  margin: 0 0 30px 0;
}

.form__textarea {
  height: 230px;
}

/* Form | Button */
.form__button {
  background: #32404E;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #fff;
  padding: 4px 32px;
}
.form--search .form__button {
  margin-left: -2px;
}
.form__line-wrap .form__button {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__button:hover, .form__button:focus {
  background: #000;
}

.form__error-text {
  font-size: 1.3rem;
  color: #c33c26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 6px 0;
}
.form__error-text::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 14px;
  height: 12px;
  margin: 0 5px 0 0;
  background: url("/img/alert.svg") 0/cover;
}

.form__button-wrap {
  padding-top: 20px;
}

.form__item {
  font-size: 1.4rem;
}

.form__item--terms {
  max-width: 330px;
  margin: 10px 25px 10px 0;
}

.form__item--button {
  margin-left: auto;
}

.order .form__bottom {
  margin-bottom: 20px;
}

/* Newsletter */
.newsletter {
  padding: 35px 0;
  min-height: 230px;
  background: #F6F8F9;
  text-align: center;
}
@media (min-width: 960px) {
  .newsletter {
    text-align: left;
  }
}

.newsletter__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 960px) {
  .newsletter__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* Newsletter | Form */
.newsletter__form-wrap {
  width: 100%;
  max-width: 330px;
}
@media (min-width: 960px) {
  .newsletter__form-wrap {
    max-width: 400px;
  }
}

.newsletter__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 10px 0;
}

/* Newsletter | Icon */
.newsletter__icon {
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
  margin: 0 0 15px 0;
}
@media (min-width: 960px) {
  .newsletter__icon {
    margin: 0 80px 0 0;
  }
}
.newsletter__icon:hover::before, .newsletter__icon:focus::before {
  color: #E62F63;
}
.newsletter__icon::before {
  font-size: 5rem;
  color: #E4E8EC;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.newsletter__icon::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: -9px;
  right: -9px;
  padding: 3px 8px;
  content: "1";
  border-radius: 50%;
  line-height: 1;
  font-size: 1.7rem;
  background: #E62F63;
  color: #fff;
}

/* Newsletter | Title */
.newsletter__title {
  margin: 0 0 8px 0;
  text-align: center;
}
@media (min-width: 960px) {
  .newsletter__title {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .newsletter__title {
    font-size: 2.6rem;
  }
}

/* Newsletter | Text */
.newsletter__text {
  max-width: 400px;
  margin: 0 0 15px 0;
}
@media (min-width: 960px) {
  .newsletter__text {
    margin: 0 70px 0 0;
  }
}

.newsletter__terms {
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 960px) {
  .newsletter__terms {
    text-align: right;
  }
}
.newsletter__terms a {
  text-decoration: underline;
  color: #32404E;
}
.newsletter__terms a:hover, .newsletter__terms a:focus {
  color: #E62F63;
}

/* Spec */
.spec {
  margin: -2px -8px;
}

.spec--header-top {
  margin: -2px -8px -2px -33px;
}

/* Spec | Item */
.spec__item {
  color: #ABB6C1;
  font-size: 15px;
  margin: 2px 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.spec__item--date {
  font-size: 1.3rem;
  padding: 6px 14px;
  color: #fff;
  font-weight: 700;
  background: #E62F63;
}

.spec__title--hide {
  display: none;
}

/* Articles */
.articles {
  background: #F6F8F9;
  padding: 45px 0;
}
@media (min-width: 1280px) {
  .articles {
    padding: 75px 0;
  }
}
.articles:hover, .articles:focus {
  color: #32404E;
}

/* Articles | Title */
.articles__title {
  margin: 0 0 10px 0;
}
@media (min-width: 1280px) {
  .articles__title {
    margin: 0 0 40px 0;
  }
}

/* Articles | List */
.articles__list {
  margin: 0 0 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1280px) {
  .articles__list {
    margin: 0 0 30px 0;
  }
}

/* Articles | Item */
.articles__item {
  padding: 20px 8px;
}

/* Article */
.article {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .article {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article--small {
  margin: auto;
  max-width: 700px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1600px) {
  .article--small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.article--large {
  max-width: 945px;
  margin: 0 0 55px 0;
}

/* Article | Spec */
.article__spec {
  margin-bottom: 15px;
}

/* Article | Figure */
.article__figure {
  max-width: 340px;
  width: 100%;
  height: 344px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 1;
  padding: 18px 25px;
}
@media (min-width: 1600px) {
  .article__figure {
    width: 344px;
    height: 344px;
  }
}
.article__figure::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), color-stop(60%, transparent));
  background: -o-linear-gradient(bottom, #000 0%, transparent 60%);
  background: linear-gradient(to top, #000 0%, transparent 60%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.article--small .article__figure {
  height: 255px;
}
@media (min-width: 1600px) {
  .article--small .article__figure {
    width: 255px;
    height: 255px;
  }
}

/* Article | Author */
.article__author {
  z-index: 2;
}

/* Article | Img */
.article__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Article | Title */
.article__title {
  font-weight: bold;
  margin: 0 0 10px 0;
}
@media (min-width: 1280px) {
  .article__title {
    font-size: 2.5rem;
  }
}

/* Article | Perex */
.article__perex {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
}

/* Article | Link */
.article__link {
  text-decoration: underline;
}
.article__title .article__link {
  text-decoration: none;
  color: #32404E;
}
.article__title .article__link:hover, .article__title .article__link:focus {
  color: #E62F63;
}

.article__link--small {
  font-size: 1.5rem;
}

/* Article | Text */
.article__text {
  padding: 14px 0px;
  max-width: 340px;
}
@media (min-width: 960px) {
  .article--large .article__text {
    padding: 14px 34px;
    max-width: none;
  }
}
@media (min-width: 1600px) {
  .article--small .article__text {
    padding: 14px 34px;
    max-width: none;
  }
}

/* Author */
.author {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.about-author .author {
  margin: 0 20px 15px 0;
}

.author__figure {
  width: 54px;
  height: 54px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 10px 0 0;
  border: 1px solid #E4E8EC;
}

.author__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.author__text {
  line-height: 1.2;
}

.author__label {
  display: block;
  font-size: 13px;
  color: #ABB6C1;
}

.author__name {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
}
.author--dark .author__name {
  color: #32404E;
}

/* About author */
@media (min-width: 1280px) {
  .about-author {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.about-author__text {
  font-size: 1.3rem;
  max-width: 450px;
}

/* Contact box */
.contact-box {
  padding: 8px 0px;
}
.footer__item--contact .contact-box {
  margin: 0 0 40px 0;
  width: 100%;
}
@media (min-width: 480px) {
  .footer__item--contact .contact-box {
    width: auto;
  }
}
@media (min-width: 960px) {
  .footer__item--contact .contact-box {
    margin: 0;
  }
}

.contact-box--footer {
  padding: 35px 20px;
  background: #25323E;
}
@media (min-width: 960px) {
  .contact-box--footer {
    padding: 35px 55px;
  }
}

/* Contact box | Wrap */
.contact-box__wrap {
  margin: 0 0 8px 0;
}

/* Contact box | Figure */
.contact-box__figure {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #32404E;
  overflow: hidden;
  margin-right: 15px;
}

.contact-box__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Contact box | Icon */
.contact-box__icon::before {
  color: #fff;
  font-size: 2.2rem;
  top: 2px;
}

.contact-box__icon--mail::before {
  font-size: 1.7rem;
}

/* Contact box | Link */
.contact-box__link {
  line-height: 1.2;
}

/* Contact box | Title */
.contact-box__subtitle {
  font-size: 1.9rem;
  font-weight: 400;
}
.contact-box--footer .contact-box__subtitle {
  color: #fff;
}

/* Contact box | Mail */
.contact-box__mail {
  font-size: 1.9rem;
  font-weight: 400;
  text-decoration: underline;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.contact-box__mail:hover, .contact-box__mail:focus {
  color: #32404E;
}
.contact-box--footer .contact-box__mail {
  color: #fff;
}
.contact-box--footer .contact-box__mail:hover, .contact-box--footer .contact-box__mail:focus {
  color: #E62F63;
}

/* Contact box | Phone */
.contact-box__phone {
  font-size: 1.9rem;
  font-weight: 700;
  color: #37B56D;
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.contact-box__link:hover .contact-box__phone, .contact-box__link:focus .contact-box__phone {
  color: #E62F63;
}

/* Contact box | Opening */
.contact-box__opening {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ABB6C1;
  display: block;
}

.contact-box__title {
  margin: 0 0 20px 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.map__wrap {
  min-height: 510px;
  position: relative;
  padding: 120px 60px 60px 20px;
}
@media (min-width: 1280px) {
  .map__wrap {
    padding: 120px 60px 60px;
  }
}

.map__box {
  padding: 15px;
  background: #fff;
  max-width: 330px;
  width: 100%;
  z-index: 2;
  position: relative;
}
@media (min-width: 1280px) {
  .map__box {
    padding: 40px;
  }
}

.map__title {
  font-size: 1.6rem;
  margin: 0 0 20px 0;
  font-weight: 700;
}
@media (min-width: 960px) {
  .map__title {
    font-size: 2rem;
  }
}

.map__info {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
}
@media (min-width: 960px) {
  .map__info {
    font-size: 1.5rem;
    margin: 0 0 30px 0;
  }
}

.map__iframe {
  position: absolute;
  left: 0;
  top: 0;
}

/* Tabs */
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (min-width: 1280px) {
  .tabs {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}

.tabs__link {
  font-size: 1.8rem;
  padding: 15px 0;
  display: block;
  color: #32404E;
  cursor: pointer;
}
.tabs__item--selected .tabs__link {
  border-bottom: 2px solid #E62F63;
  font-size: 1.8rem;
  font-weight: 700;
}
.tabs--big .tabs__link {
  font-weight: 700;
}
@media (min-width: 1280px) {
  .tabs__link {
    padding: 35px 0;
  }
}

.tabs__link--active {
  font-weight: 700;
}

/* Tabs nav */
.tabs-nav {
  background: #F6F8F9;
  top: 0;
  z-index: 900;
}
.tabs-nav.js--fixed {
  -webkit-box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

/* Tabs content */
.tabs-content__block {
  display: none;
}

.tabs-content__block--active {
  display: block;
}

.tabs-content__title {
  margin-top: 30px;
  margin-bottom: 20px;
}

.section {
  padding: 0 0 35px 0;
}

.section--offset-bottom {
  padding-bottom: 60px;
}

@media (min-width: 1280px) {
  .section__column--right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.section__subtitle {
  margin: 0 0 20px 0;
  font-size: 2.4rem;
  font-weight: 700;
}
.section--account .section__subtitle {
  margin: 0 0 10px 0;
}

.section__block {
  margin: 0 auto 35px auto;
}
@media (min-width: 1280px) {
  .section__block {
    margin: 0 0 35px 0;
  }
}

.section__desc {
  margin: 0 0 25px 0;
}

.section__table tr td, .section__table tr th {
  padding: 8px;
}
.section__table tr:not(:last-of-type) td, .section__table tr th {
  border-bottom: 1px solid #C4D0DB;
}

.pagination {
  margin: 0 0 25px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1280px) {
  .pagination {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.pagination__column {
  width: 100%;
}

.pagination__button-more {
  margin: auto;
  margin-bottom: 10px;
}
@media (min-width: 1280px) {
  .pagination__button-more {
    margin-bottom: 0px;
  }
}

.pagination__wrap {
  font-family: "Work Sans", sans-serif;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (min-width: 1280px) {
  .pagination__wrap {
    margin-left: auto;
  }
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 5px;
}

.pagination__item {
  font-size: 1.6rem;
  color: #32404E;
  line-height: 1.4;
  cursor: pointer;
  display: block;
}
.pagination__item:hover {
  background: rgba(228, 232, 236, 0.5);
}

.pagination__link, .pagination__current {
  color: #32404E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 5px 13px;
}
@media (min-width: 960px) {
  .pagination__link, .pagination__current {
    padding: 12px 22px;
  }
}

.pagination__item--active {
  background-color: #E4E8EC;
}

.pagination__button {
  padding: 5px 13px;
  color: #fff;
  background: #32404E;
}
.pagination__button::before {
  content: "";
  display: inline-block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 960px) {
  .pagination__button {
    padding: 12px 22px;
  }
}

.pagination__button--left {
  margin-right: 10px;
}
.pagination__button--left::before {
  top: -2px;
  right: -2px;
}

.pagination__button--right {
  margin-left: 10px;
}
.pagination__button--right::before {
  top: -2px;
  left: -2px;
}

.pagination__button--left::before {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.gallery--photos {
  margin: 30px 0;
}

.gallery__link {
  width: 100%;
  background: #E4E8EC;
  color: #32404E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 200px;
  max-width: 220px;
  margin: auto;
  cursor: pointer;
}
.gallery__link:hover, .gallery__link:focus {
  color: #32404E;
  background: #d5dbe1;
}
.gallery--photos .gallery__link {
  margin-bottom: 16px;
}
.gallery--product .gallery__link {
  max-width: 120px;
  height: 110px;
}
@media (min-width: 1280px) {
  .gallery--product .gallery__link {
    height: 120px;
  }
}
.gallery--page .gallery__link {
  max-width: 250px;
  height: 150px;
}
@media (min-width: 960px) {
  .gallery--page .gallery__link {
    max-width: none;
  }
}
@media (min-width: 1280px) {
  .gallery--page .gallery__link {
    height: 200px;
  }
}

.gallery__video {
  max-width: 100%;
}
.gallery__video iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.gallery__icon {
  height: 32px;
  width: 32px;
  margin: 0 0 8px 0;
}

.gallery__column {
  padding: 8px;
}
.gallery--product .gallery__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 122px;
          flex: 0 1 122px;
}
@media (min-width: 1280px) {
  .gallery--product .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% / 5);
            flex: 0 1 calc(100% / 5);
  }
}
.gallery--photos .gallery__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100% / 3);
          flex: 0 1 calc(100% / 3);
}
.gallery--page .gallery__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
@media (min-width: 480px) {
  .gallery--page .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% / 2);
            flex: 0 1 calc(100% / 2);
  }
}
@media (min-width: 640px) {
  .gallery--page .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% / 3);
            flex: 0 1 calc(100% / 3);
  }
}
@media (min-width: 960px) {
  .gallery--page .gallery__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(100% / 4);
            flex: 0 1 calc(100% / 4);
  }
}

.gallery__img {
  max-width: 100%;
  max-height: 100%;
}
.gallery--photos .gallery__img, .gallery--page .gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery--product .gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__icon--photos {
  background: #32404E;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 50%;
}

.tag {
  margin: -4px -8px;
}

.tag__item {
  display: inline-block;
  margin: 4px 8px;
}

.tag__link {
  font-size: 1.5rem;
  text-decoration: underline;
  color: #E62F63;
}
.tag__link:hover, .tag__link:focus {
  color: #32404E;
}

.menu-side__list {
  background: white;
  border-radius: 6px;
  margin: auto;
}

.menu-side__item {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 8px 0;
  position: relative;
  width: 100%;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.menu-side__item:last-child {
  border: 0;
}

.menu-side__link {
  color: #000;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-side__link--active {
  color: #E62F63;
  font-weight: 700;
}

.menu-side__counter {
  color: #E4E8EC;
}

.share {
  background-color: #fff;
  border: 1px solid #E4E8EC;
  padding: 30px 35px;
  margin: 40px 0;
}

.share__title {
  margin-left: 30px;
  margin-right: 30px;
  font-size: 1.7rem;
  font-weight: 400;
}
@media (min-width: 640px) {
  .share__title {
    text-align: left;
    width: auto;
  }
}
.share__title span {
  display: block;
  font-weight: 700;
}

.share__icon {
  margin-left: auto;
}
.share__icon::before {
  font-size: 4.7rem;
  color: #4267B2;
}

.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 5px;
  height: 12px;
  left: 6px;
  top: 1px;
  border-right: 2px solid #E62F63;
  border-bottom: 2px solid #E62F63;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox__link {
  color: #E62F63;
}
.checkbox__link:hover, .checkbox__link:focus {
  color: #fa5884;
}

.checkbox__mark {
  width: 20px;
  height: 20px;
  border: 2px solid #C4D0DB;
  background: white;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  margin: 0 8px 0 0;
}

.checkbox {
  margin: 6px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

.radio__input {
  display: none;
}
.radio__input:checked + .radio__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  left: 4px;
  top: 4px;
  background: #E62F63;
  border-radius: 50%;
}

.radio__link {
  color: #E62F63;
}
.radio__link:hover, .radio__link:focus {
  color: #fa5884;
}

.radio {
  margin: 6px 0 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}

.radio__mark {
  width: 20px;
  height: 20px;
  border: 1px solid #C4D0DB;
  display: block;
  position: relative;
  border-radius: 50%;
  margin: 0 8px 0 0;
}

.contact-form__box {
  padding: 40px 0;
  margin: auto;
}
@media (min-width: 1280px) {
  .contact-form__box {
    padding: 60px 0;
  }
}

.contact-form__title {
  margin: 0 0 20px 0;
}

.login {
  position: relative;
  cursor: pointer;
}

.login__form {
  width: 100%;
  margin: 0 0 10px 0;
}

.login__icon:hover, .login__icon:focus {
  color: #E62F63;
}
.login__icon::before {
  font-size: 2.1rem;
}
@media (min-width: 375px) {
  .login__icon::before {
    font-size: 2.6rem;
  }
}

.login__wrap {
  position: absolute;
  background: #fff;
  right: -92px;
  top: 100%;
  width: 290px;
  z-index: 2;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-in-out;
  -o-transition: max-height 0.2s ease-in-out;
  transition: max-height 0.2s ease-in-out;
}
@media (min-width: 375px) {
  .login__wrap {
    right: -107px;
  }
}
@media (min-width: 1280px) {
  .login__wrap {
    right: 0px;
  }
}

.login__box {
  padding: 10px;
  border: 1px solid #E4E8EC;
}

.login__title {
  width: 100%;
  font-size: 1.5rem;
}

.banner {
  border: 1px solid #C4D0DB;
  margin: 50px 0;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #32404E;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 20px;
}
@media (min-width: 960px) {
  .banner {
    padding: 15px 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.banner:hover, .banner:focus {
  color: #32404E;
}

.banner__figure {
  width: 100%;
  margin: 10px 0 10px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 960px) {
  .banner__figure {
    width: 230px;
    height: 230px;
    margin: 10px 25px 10px 0;
  }
}

.banner__img {
  max-width: 100%;
  max-height: 100%;
}

.banner__wrap {
  margin: 10px 0 10px 0;
}

.banner__title {
  font-size: 2rem;
  margin: 0 0 20px 0;
}

.banner__desc {
  font-size: 14px;
  margin: 0 0 20px 0;
}

.banner__prices {
  line-height: 1.2;
  margin: 8px 15px 8px 0;
}

.banner__price--old {
  color: #ABB6C1;
  text-decoration: line-through;
  font-size: 1.4rem;
}

.banner__price--current {
  color: #E62F63;
  font-weight: 700;
  font-size: 2rem;
}

.glide {
  max-width: 1920px;
  margin: auto;
}

.glide__arrow {
  background: #32404E;
  pointer-events: all;
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 54px;
}
@media (min-width: 1280px) {
  .glide__arrow {
    width: 64px;
    height: 64px;
  }
}
.glide__arrow::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-65%, -50%) rotate(-45deg);
      -ms-transform: translate(-65%, -50%) rotate(-45deg);
          transform: translate(-65%, -50%) rotate(-45deg);
}
.glide__arrow:hover, .glide__arrow:focus {
  background: #E62F63;
}

.glide__bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  position: relative;
}

.glide__bullet {
  margin: 0 5px;
  width: 12px;
  height: 12px;
  background: #E4E8EC;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s background;
  -o-transition: 0.3s background;
  transition: 0.3s background;
}

.glide__bullet--active {
  background: #E62F63;
}

.glide__arrow--left::after {
  -webkit-transform: translate(-35%, -50%) rotate(135deg);
      -ms-transform: translate(-35%, -50%) rotate(135deg);
          transform: translate(-35%, -50%) rotate(135deg);
}

.glide__arrows {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 0;
  right: 0;
}
@media (min-width: 1280px) {
  .main-header__slider .glide__arrows {
    left: -30px;
    right: -30px;
  }
}
.modal--product .glide__arrows {
  left: -30px;
  right: -30px;
}
@media (min-width: 1280px) {
  .modal--product .glide__arrows {
    left: -63px;
    right: -63px;
  }
}

.example {
  max-width: 1920px;
  margin: auto;
}

/* Cookie css settings */
/* Cookie modal */
.cookie-modal {
  padding: 15px;
  z-index: 9999999999;
  pointer-events: none !important;
}

/* Cookie modal | Container */
.cookie-modal__container {
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  pointer-events: all;
  z-index: 9999999999;
}

/* Cookie box */
.cookie-box {
  background: white;
  display: block;
  padding: 30px;
  z-index: 9999999999;
  position: relative;
}
@media screen and (max-width: 992px) {
  .cookie-box {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box {
    padding: 8px;
  }
}

.cookie-box--modal {
  max-width: 520px;
  margin: auto;
  pointer-events: all;
}

.cookie-box--bar {
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
}

.cookie-box--hidden .cookie-box--bar {
  display: none;
}
.cookie-box--hidden .cookie-overlay {
  display: none;
}

.click-through {
  pointer-events: none;
}

/* Cookie overlay */
.cookie-overlay {
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999999998;
  opacity: 1;
}

/* Cookie box | Settings */
.cookie-box__settings {
  margin-bottom: 20px;
}

.cookie-box__settings-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-right: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.cookie-box__settings-label {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

/* Cookie box | Content */
.cookie-box__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1420px) {
  .cookie-box__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cookie-box--modal .cookie-box__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Cookie box | Title */
.cookie-box__title {
  font-weight: 700;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 992px) {
  .cookie-box__title {
    font-size: 19px;
  }
}
.cookie-box__title:not(:first-child) {
  margin-top: 35px;
}

/* Cookie box | Text */
.cookie-box__text {
  margin-right: 40px;
  overflow: auto;
  -ms-overflow-style: none;
  /* width */
  /* Track */
  /* Handle */
  /* Track piece */
}
@media screen and (max-width: 1420px) {
  .cookie-box__text {
    margin-right: 0px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box--bar .cookie-box__text {
    max-height: 130px;
  }
}
.cookie-box--modal .cookie-box__text {
  margin-right: 0px;
  max-height: 450px;
}
@media screen and (max-width: 992px) {
  .cookie-box--modal .cookie-box__text {
    max-height: 200px;
  }
}
.cookie-box__text::-webkit-scrollbar {
  background: none;
  border: none;
  width: 7px;
}
.cookie-box__text::-webkit-scrollbar-track {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-thumb {
  background: #c2c2c2;
}
.cookie-box__text::-webkit-scrollbar-corner {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-track-piece {
  border-left: none;
}

/* Cookie box | Lead */
.cookie-box__lead {
  font-size: 14px;
  /* Cookie box | Lead - Anchor underline */
}
@media screen and (max-width: 992px) {
  .cookie-box__lead {
    font-size: 12px;
  }
}
.cookie-box__lead > a, .cookie-box__lead > p a {
  text-decoration: underline;
}

/* Cookie box | Buttons */
.cookie-box__buttons {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1420px) {
  .cookie-box__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 10px;
  }
}
.cookie-box--modal .cookie-box__buttons {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-box__button, .cookie-box__button.btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  min-height: 52px;
  font-size: 14px;
  height: auto;
  line-height: 1.2;
  padding: 4px 10px 4px 10px;
  white-space: nowrap;
}
.cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
  .cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 12px;
    min-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 11px;
    min-height: 34px;
    padding: 4px 8px 4px 8px;
  }
}

.cookie-box__mobile-item {
  display: none;
}
@media all and (max-width: 992px) {
  .cookie-box__mobile-item {
    display: block;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.cookie-box__desktop-item {
  display: block;
}
@media all and (max-width: 992px) {
  .cookie-box__desktop-item {
    display: none;
  }
}

.cookie-box__toggle {
  display: block;
  background: #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  height: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 50px;
}

.cookie-box__toggle-mark {
  background: #bbbbbb;
  border-radius: 50%;
  display: block;
  height: 20px;
  position: absolute;
  left: 3px;
  top: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 20px;
}

.cookie-box__checkbox {
  display: none;
}
.cookie-box__checkbox:checked + .cookie-box__toggle-mark {
  background: #E62F63;
  left: 27px;
}

.cookie-box__checkbox--disabled:checked + .cookie-box__toggle-mark {
  background: #f18aa7;
  cursor: not-allowed;
}

.cookie-box__manage {
  text-decoration: underline;
  font-size: 14px;
}
.cookie-box--modal .cookie-box__manage {
  margin-top: 8px;
}

/* Cookie box | Content | Bottom */
.cookie-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.cookie-box__bottom a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .cookie-box__bottom {
    font-size: 12px;
  }
}

.basket-nav {
  border: 1px solid #C4D0DB;
  overflow: hidden;
  min-height: 60px;
  margin-bottom: 35px;
}

.basket-nav__item {
  padding: 15px;
  position: relative;
  height: 100%;
  color: #32404E;
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .basket-nav__item {
    font-size: 1.8rem;
  }
}
@media (min-width: 960px) {
  .basket-nav__item::before, .basket-nav__item::after {
    content: "";
    display: block;
    position: absolute;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-bottom: 33px solid rgba(0, 0, 0, 0);
    border-left: 15px solid #fff;
    border-top: 33px solid rgba(0, 0, 0, 0);
    right: 0;
    -webkit-transform: translate(100%);
        -ms-transform: translate(100%);
            transform: translate(100%);
    z-index: 10;
  }
}
.basket-nav__item::before {
  right: -1px;
  border-left-color: #C4D0DB;
}

.basket-nav__link {
  color: #32404E;
}
.basket-nav__link:hover .basket-nav__item, .basket-nav__link:focus .basket-nav__item {
  background: #F6F8F9;
}
.basket-nav__link:hover .basket-nav__item::after, .basket-nav__link:focus .basket-nav__item::after {
  border-left-color: #F6F8F9;
}

.basket-nav__item--selected {
  background: #F6F8F9;
}
.basket-nav__item--selected::after {
  border-left-color: #F6F8F9;
}

.basket-nav__desc {
  counter-increment: step;
  text-align: center;
}
.basket-nav__desc::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 8px 0 0;
  background: no-repeat 0/cover;
}

.basket-nav__desc--first::before {
  width: 40px;
  height: 33px;
  background-image: url("/img/order/steps/1.svg");
}

.basket-nav__desc--second::before {
  width: 36px;
  height: 33px;
  background-image: url("/img/order/steps/2.svg");
}

.basket-nav__desc--last::before {
  width: 39px;
  height: 33px;
  background-image: url("/img/order/steps/3.svg");
}

/* Category */
.category {
  padding: 25px 0 25px 0;
}

.category--offset-bottom {
  padding: 0px 0 25px 0;
}

/* Category | Figure */
.category__figure {
  width: 110px;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.category__img {
  max-width: 100%;
  max-height: 100%;
}

/* Category | List */
.category__item {
  padding: 8px;
}

.category__title {
  margin: 0 0 20px 0;
  font-size: 2.4rem;
  font-weight: 700;
}

/* Category | Box */
.category__box {
  position: relative;
  border: 2px solid #E4E8EC;
  padding-right: 45px;
  min-height: 100px;
}
.category__box:hover, .category__box:focus {
  border-color: #E62F63;
}
.category__box:hover .category__subtitle, .category__box:focus .category__subtitle {
  color: #E62F63;
}
.category__box::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 20px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #E62F63;
  border-bottom: 2px solid #E62F63;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* Category | Title */
.category__subtitle {
  font-size: 1.7rem;
  padding: 15px;
}
.category__item--count .category__subtitle {
  font-weight: 700;
}

.category__count {
  margin-left: auto;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: #E4E8EC;
  color: #32404E;
  font-size: 1.7rem;
}

/* Products */
.products {
  padding: 50px 0;
}

.products--simple {
  margin: auto;
  padding: 0;
}

.products__item {
  padding: 8px;
}

.products__title {
  margin: 0 0 25px 0;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1280px) {
  .products__title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .products--simple .products__title {
    font-size: 2.4rem;
  }
}

.products__list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 30px 0;
}

/* Product */
.product {
  border: 2px solid #E4E8EC;
  color: #32404E;
  min-height: 535px;
  max-width: 350px;
  height: 100%;
  margin: auto;
  white-space: normal;
  outline: none;
}
.product:hover, .product:focus {
  color: #32404E;
}
.products--simple .product {
  min-height: 455px;
}
.modal--product .product {
  background: #fff;
}

.overlay-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.overlay-wrapper .text {
  color: #c33c26;
  font-size: 23px;
  font-weight: 600;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.overlay-wrapper .overlay {
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

/* Product | Figure */
.product__figure {
  width: 100%;
  height: 260px;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product--text .product__figure {
  background: #F6F8F9;
}
.product--image .product__figure {
  padding: 15px;
  background: #fff;
}
.products--simple .product__figure {
  height: 200px;
}

.product__img {
  max-width: 100%;
  max-height: 100%;
}

/* Product | Title */
.product__title {
  font-size: 2.2rem;
  margin: 0 0 15px 0;
  text-align: center;
  font-weight: 700;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.product__title:hover, .product__title:focus {
  color: #E62F63;
}
.products--simple .product__title {
  font-size: 1.9rem;
}

/* Product | Perex */
.product__perex {
  font-size: 1.4rem;
  text-align: center;
  margin: 0 0 15px 0;
  color: #7D8B98;
}
.products--simple .product__perex {
  font-size: 1.2rem;
}

/* Product | Text */
.product__text {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
}

/* Product | Price */
.product__price {
  display: block;
  line-height: 1.2;
}

.product__price--old {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: #7D8B98;
}

.product__price--current {
  text-align: left;
  font-size: 2.2rem;
  font-weight: 700;
}

/* Product | Bottom */
.product__bottom {
  margin-top: auto;
}

/* Product | Badges */
.product__badges {
  position: absolute;
  left: 20px;
  top: 20px;
}

.product__badge {
  display: block;
  font-size: 1.9rem;
  font-weight: 700;
}

.product__badge--discount {
  width: 76px;
  height: 76px;
  background: #E62F63;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Product info */
.product-info {
  padding: 20px 0;
  border-top: 1px solid #E4E8EC;
}

/* Product info | Item */
.product-info__item {
  margin: 10px 20px 10px 0;
}
@media (min-width: 1280px) {
  .product-info__item {
    margin: 10px 60px 10px 0;
  }
}

/* Product info | Label */
.product-info__label {
  font-size: 1.5rem;
  display: block;
}

/* Product info | Value */
.product-info__value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.product-info__value a {
  color: #32404E;
  text-decoration: underline;
}
.product-info__value a:hover, .product-info__value a:focus {
  color: #E62F63;
}

/* Product info | Link */
.product-info__link {
  font-size: 1.5rem;
  color: #32404E;
}
.product-info__link:hover, .product-info__link:focus {
  color: #E62F63;
}

.product-info__link--print {
  margin: 10px 20px 10px auto;
}
@media (min-width: 1280px) {
  .product-info__link--print {
    margin: 10px 50px 10px auto;
  }
}

/* Product inquiry */
.product-inquiry__box {
  padding: 24px;
  border: 2px solid #E4E8EC;
  background: #F6F8F9;
}

.product-inquiry__wrap {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 1280px) {
  .product-inquiry__wrap {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    margin-left: auto;
  }
}

/* Product inquiry | Label */
.product-inquiry__label {
  font-size: 1.5rem;
  margin: 0 0 5px 0;
}

/* Product inquiry | Group */
.product-inquiry__group {
  margin: 0 -12.5px 20px;
  width: calc(100% + 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Product inquiry | Figure */
.product-inquiry__figure {
  width: 62px;
  height: 62px;
  margin: 6px 7.5px;
  border: 5px solid transparent;
  position: relative;
}

.product-inquiry__figure--selected {
  border-color: white;
}
.product-inquiry__figure--selected::after, .product-inquiry__figure--selected::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.product-inquiry__figure--selected::before {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #37B56D;
  border-radius: 50%;
  top: -10px;
  right: -14px;
}
.product-inquiry__figure--selected::after {
  width: 7px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: -6px;
  right: -6px;
}

.product-inquiry__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Product inquiry | Price */
.product-inquiry__prices {
  margin-right: 15px;
}

.product-inquiry__price, .product-inquiry__vat {
  display: block;
  line-height: 1;
}

.product-inquiry__price--old {
  font-size: 1.4rem;
  color: #ABB6C1;
  text-decoration: line-through;
}

.product-inquiry__price--current {
  font-weight: 700;
  font-size: 2.1rem;
  margin: 0 0 3px 0;
}
@media (min-width: 1280px) {
  .product-inquiry__price--current {
    font-size: 3rem;
  }
}

.product-inquiry__vat {
  font-size: 1.3rem;
}

/* Product inquiry | Counter */
.product-inquiry__counter {
  margin-left: auto;
  margin-right: 15px;
}

/* Product detail  */
.product-detail {
  padding: 30px 0;
  border-bottom: 1px solid #E4E8EC;
}

@media (min-width: 1280px) {
  .product-detail__column--right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.free-shipping {
  font-size: 1.5rem;
  margin: 0 0 15px 0;
  width: 100%;
}

.free-shipping__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 8px 0;
}
.free-shipping__top::before {
  content: "";
  display: block;
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 25px;
  height: 20px;
  margin: 0 6px 0 0;
  background: url("/userfiles/images/benefit-transport.svg") no-repeat 0 0/cover;
}

.free-shipping__bar {
  width: 100%;
  padding: 1px;
  border: 1px solid #E4E8EC;
}

.free-shipping__progress {
  height: 4px;
  background: #37B56D;
  -webkit-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  max-width: 100%;
}

/* Filter */
.filter {
  background: #F6F8F9;
  /* Plugin part */
}
.filter .noUi-connect {
  background: #32404E;
}
.filter .noUi-horizontal {
  height: 8px;
}
.filter .noUi-target {
  background: #E4E8EC;
  border-radius: 0px;
  border: none;
  width: 300px;
  max-width: 100%;
  margin: 0 17px;
}
.filter .noUi-handle {
  width: 20px;
  height: 20px;
  background: #E62F63;
  position: absolute;
  border: none;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 20px;
}
.filter .noUi-handle::before, .filter .noUi-handle::after {
  content: none;
}

.filter__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0px;
}
@media (min-width: 1280px) {
  .filter__item {
    margin: 10px 30px;
  }
}

.filter__toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (min-width: 1280px) {
  .filter__toggler {
    display: none;
  }
}

.filter__box {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  overflow-x: auto;
}
@media (min-width: 1280px) {
  .filter__box {
    max-height: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.filter__value {
  width: 105px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border: 2px solid #E4E8EC;
  font-size: 1.5rem;
  padding: 5px 10px;
}

.filter__input {
  min-width: 0px;
  max-width: 100%;
  font-size: 1.5rem;
  text-align: right;
}

.filter__tabs {
  margin-left: auto;
}

@media (min-width: 1280px) {
  .filter__nav {
    margin-left: auto;
  }
}

.filter__label {
  font-size: 1.8rem;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-right: 15px;
}

/* Counter */
.counter {
  margin: 15px 25px 15px 0;
}
@media (min-width: 1280px) {
  .modal--product .counter {
    margin: 15 35px 15px 0;
  }
}

/* Counter | Button */
.counter__button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E4E8EC;
  position: relative;
  cursor: pointer;
}
@media (min-width: 960px) {
  .counter__button {
    width: 32px;
    height: 32px;
  }
}
.counter__button::after, .counter__button::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #32404E;
}
.counter__button::after {
  width: 8px;
  height: 2px;
  left: 9px;
  top: 12px;
}
@media (min-width: 960px) {
  .counter__button::after {
    left: 12px;
    top: 14px;
  }
}
.counter__button::before {
  width: 2px;
  height: 8px;
  left: 12px;
  top: 9px;
}
@media (min-width: 960px) {
  .counter__button::before {
    left: 15px;
    top: 11px;
  }
}

.counter__button--minus::before {
  content: none;
}

.counter__value {
  width: 35px;
  padding: 0 5px;
  font-weight: bold;
  font-size: 1.7rem;
  text-align: center;
}

.order__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 0 20px 0;
}
@media (min-width: 1280px) {
  .order__list {
    display: table;
  }
}

.order__bottom {
  padding: 40px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .order__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.order__info-area {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 960px) {
  .order__info-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.order__link {
  margin: 10px 0;
}

.order__info {
  margin: 0 0 10px 0;
}

/* Order | Labels */
.order__labels {
  display: none;
}
@media (min-width: 1280px) {
  .order__labels {
    display: table-header-group;
  }
}

.order__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1280px) {
  .order__prices {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.order__price {
  width: 140px;
  display: block;
}
.order__price:not(:last-of-type) {
  margin: 0 10px 0 0;
}

.order__sum {
  text-align: center;
}
@media (min-width: 960px) {
  .order__sum {
    text-align: right;
  }
}

.order__sum-label {
  font-size: 1.4rem;
}
@media (min-width: 1280px) {
  .order__sum-label {
    font-size: 1.8rem;
  }
}

.order__sum-value {
  font-size: 1.8rem;
  font-weight: bold;
  display: block;
}
@media (min-width: 1280px) {
  .order__sum-value {
    font-size: 2.2rem;
  }
}

@media (min-width: 1280px) {
  .order__label {
    display: table-cell;
    padding: 8px;
  }
}

.order__label--price {
  text-align: right;
}

.order__address {
  margin: 0 0 30px 0;
}

/* Order | Products */
.order__products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1280px) {
  .order__products {
    display: table-row-group;
  }
}

.order__summary {
  max-width: 400px;
  border: 2px solid #E4E8EC;
  padding: 20px;
}
.order__summary.js-is-sticky {
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
@media (min-width: 1280px) {
  .order__summary {
    margin-left: auto;
  }
}

.order__summary-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}
.order__summary-item:not(:last-of-type) {
  border-bottom: 1px solid #E4E8EC;
}

.order__summary-figure {
  width: 50px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 12px 0px 0;
}

.order__summary-name, .order__summary-options, .order__summary-note {
  display: block;
  font-size: 1.3rem;
}

.order__summary-count {
  font-size: 1.3rem;
  color: #ABB6C1;
}

.order__summary-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: auto;
}
.order__summary-bottom .order__summary-price {
  font-size: 1.7rem;
}

.order__summary-bottom {
  padding: 10px 0 0;
  text-align: right;
}

.order__summary-name {
  font-size: 1.5rem;
}

.order__summary-info {
  margin: 0 10px 0 0;
  max-width: 200px;
}

.order__summary-wrap {
  margin-left: auto;
}

.order__summary-img {
  max-width: 100%;
  max-height: 100%;
}

.order__subtitle {
  margin: 0 0 15px 0;
  font-size: 2rem;
}

.order-transfer-wrap {
  margin: 15px 40px 15px 0;
}

.order-payment-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 40px 0;
}

.order-final .order-text {
  max-width: 600px;
}
.order-final fieldset {
  border: 1px solid black;
  position: relative;
  max-width: 180px;
  width: 100%;
}
.order-final fieldset legend {
  position: absolute;
  top: 0;
  left: 10px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: white;
  padding: 0 5px;
  width: auto;
  font-size: 20px;
  border: none;
  margin: 0;
}
.order-final fieldset img {
  width: 100%;
}

/* Order item */
.order-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #C4D0DB;
  position: relative;
  padding: 10px 35px 10px 10px;
}
@media (min-width: 1280px) {
  .order-item {
    display: table-row;
    border: none;
    padding: 0;
  }
}

/* Order item | Part */
@media (min-width: 1280px) {
  .order-item__part {
    display: table-cell;
    padding: 5px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #C4D0DB;
  }
}

.order-item__part--remove {
  width: 30px;
  position: absolute;
  right: 0;
  top: 10px;
}
@media (min-width: 1280px) {
  .order-item__part--remove {
    position: static;
  }
}

.order-item__part--name {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.order-item__part--counter {
  margin-left: auto;
}

.order-item__part--stock {
  margin: 0 25px 0 0;
}
@media (min-width: 1280px) {
  .order-item__part--stock {
    margin: 0;
  }
}

.order-item__prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1280px) {
  .order-item__prices {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: right;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.order-item__link {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #E62F63;
  position: relative;
  cursor: pointer;
}
.order-item__link::after, .order-item__link::before {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #fff;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.order-item__link::after {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
      -ms-transform: translate(-50%, -50%) rotate(-135deg);
          transform: translate(-50%, -50%) rotate(-135deg);
}

.order-item__price {
  width: 140px;
  display: block;
}
.order-item__price:not(:last-of-type) {
  margin: 0 10px 0 0;
}

.order-item__figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin: 4px 8px 4px 0;
}
@media (min-width: 1280px) {
  .order-item__figure {
    width: 70px;
    height: 60px;
  }
}

.order-item__img {
  max-width: 100%;
  max-height: 100%;
}

.order-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.coupon-box__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tp {
  padding: 25px 0;
  max-width: 600px;
}

.tp__title {
  margin: 0 0 15px 0;
}
@media (min-width: 1280px) {
  .tp__title {
    font-size: 2.2rem;
  }
}

.tp-item {
  padding: 10px 0;
  cursor: pointer;
}
.tp-item:not(:last-of-type) {
  border-bottom: 1px solid #C4D0DB;
}
.tp-item.--selected .radio__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  left: 4px;
  top: 4px;
  background: #E62F63;
  border-radius: 50%;
}

.tp-item__name {
  margin: 0 0 5px 0;
  font-size: 1.6rem;
}

.tp-item__note {
  display: block;
  font-size: 1.3rem;
}

.tp-item__wrap {
  margin: 0 10px 0 0;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .tp-item__wrap {
    font-size: 1.6rem;
  }
}

.tp-item__figure {
  height: 25px;
  width: 25px;
  flex-shrinK: 0;
  margin: 0 15px 0 0;
}
@media (min-width: 960px) {
  .tp-item__figure {
    height: 40px;
    width: 40px;
  }
}

.tp-item__radio {
  margin: 0 8px 0 0;
}

.tp-item__price {
  margin-left: auto;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .tp-item__price {
    font-size: 1.6rem;
  }
}

.tp-item__img {
  max-width: 100%;
  max-height: 100%;
}

.tp-table {
  display: table;
  margin: 0 0 20px 0;
  width: 100%;
  max-width: 600px;
}

.tp-table__item {
  display: table-cell;
  padding: 8px 6px;
  vertical-align: middle;
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .tp-table__item {
    font-size: 1.6rem;
  }
}
.tp-table__item:last-of-type {
  text-align: right;
}

.tp-table__row {
  display: table-row;
}
.tp-table__row .tp-table__item {
  border-bottom: 1px solid #C4D0DB;
}
.tp-table__body .tp-table__row:last-of-type .tp-table__item {
  border-bottom: none;
}

.tp-table__head {
  display: table-header-group;
}

.tp-table__body {
  display: table-row-group;
}

.tp-item {
  padding: 10px 0;
  cursor: pointer;
}
.tp-item:not(:last-of-type) {
  border-bottom: 1px solid #C4D0DB;
}
.tp-item.--selected .radio__mark::after {
  content: "";
  display: block;
  position: absolute;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  left: 4px;
  top: 4px;
  background: #E62F63;
  border-radius: 50%;
}

.tp-item__info {
  margin: 0 0 5px 0;
  font-size: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 80%;
}

.tp-table__figure {
  height: 35px;
  width: 35px;
  flex-shrinK: 0;
  margin: 0 15px 0 0;
}
@media (min-width: 960px) {
  .tp-table__figure {
    height: 50px;
    width: 50px;
  }
}

.tp-table__img {
  max-width: 100%;
  max-height: 100%;
}

#ppl-parcelshop-map .smap {
  height: auto !important;
}

.not-selectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.carousel *, .carousel *:before, .carousel *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
          box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.carousel__button.is-prev {
  left: 10px;
}

.carousel__button.is-next {
  right: 10px;
}

.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}

.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
          filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4)) ;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container :focus {
  outline: thin dotted;
}

body.is-using-mouse .fancybox__container :focus {
  outline: none;
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px ;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  outline: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px ;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 20;
}

.fancybox__caption {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
  right: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -36px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
          animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
          animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
          animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
          animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
          animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
          animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
          animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
          animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
          animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
          animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
            transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
            transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
            transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -ms-touch-action: none;
      touch-action: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}

.is-closing .has-image .fancybox__content {
  overflow: visible;
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
      touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}

.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
  padding: 0;
  -ms-touch-action: none;
      touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
          animation: 0.15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fancybox__toolbar__items--left {
  margin-right: auto;
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
  margin-left: auto;
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

.incredible-select__bar {
  padding: 4px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #E4E8EC;
}
.incredible-select__bar .incredible-select__close-btn {
  font-size: 13px;
  padding: 4px 8px;
}
.incredible-select--stylable {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  text-transform: none;
  color: #000;
}
.incredible-select__selected-option {
  padding: 13px 25px 13px 15px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  border: 1px solid #C4D0DB;
  min-height: 50px;
}
.incredible-select__selected-option::after {
  position: absolute;
  right: 15px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
  display: block;
  top: 18px;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.incredible-select__options {
  position: absolute;
  background: white;
  top: calc(100% - 1px);
  display: none;
  left: 0px;
  right: 0px;
  border: 1px solid #C4D0DB;
  z-index: 900;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
}
.incredible-select__options .incredible-select__item {
  width: 100%;
  padding: 13px 15px;
  color: #000;
}
.incredible-select__options .incredible-select__item.is-selected {
  font-weight: 700;
}
.incredible-select__options .incredible-select__item:not(:last-of-type) {
  border-bottom: 1px solid #C4D0DB;
}
.incredible-select__options .incredible-select__item:hover {
  cursor: pointer;
}

@media (min-width: 960px) {
  .incredible-select--stylable.var--2 .incredible-select__selected-option {
    font-size: 15px;
  }
}
.twitter-typeahead {
  float: left;
  width: 100%;
}
.twitter-typeahead h3 {
  font-size: 22px;
  margin-top: 12px;
  margin-bottom: 10px;
}

.tt-menu {
  background-color: #fafafa;
  padding: 10px;
  width: 100%;
}

.typeahead_wrapper {
  position: relative;
}
.typeahead_wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.typeahead_image {
  -ms-flex-preferred-size: 15%;
      flex-basis: 15%;
  overflow: hidden;
}

.typeahead_text {
  -ms-flex-preferred-size: 65%;
      flex-basis: 65%;
  padding-left: 10px;
}

.typeahead_price {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  color: #E62F63;
  text-align: right;
  font-weight: 700;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 20px;
  }
}
