:root {
  --iti-hover-color: rgba(0, 0, 0, 0.05);
  --iti-text-gray: #999;
  --iti-border-gray: #ccc;
  --iti-spacer-horizontal: 8px;
  --iti-flag-height: 15px;
  --iti-flag-width: 20px;
  --iti-border-width: 1px;
  --iti-arrow-height: 4px;
  --iti-arrow-width: 6px;
  --iti-triangle-border: calc(var(--iti-arrow-width) / 2);
  --iti-arrow-padding: 6px;
  --iti-arrow-color: #555;
  --iti-input-padding: 6px;
  --iti-right-hand-selected-country-padding: calc(var(--iti-spacer-horizontal) + var(--iti-spacer-horizontal) + var(--iti-flag-width));
  --iti-selected-country-arrow-padding: calc(var(--iti-arrow-padding) + var(--iti-arrow-padding) + var(--iti-flag-width) + var(--iti-spacer-horizontal) + var(--iti-arrow-width) + var(--iti-input-padding));
  --iti-path-flags-1x: url("../img/flags.png?1");
  --iti-path-flags-2x: url("../img/flags@2x.png?1");
  --iti-path-globe-1x: url("../img/globe.png");
  --iti-path-globe-2x: url("../img/globe@2x.png");
  --iti-flag-sprite-width: 5762px;
  --iti-flag-sprite-height: 15px;
  --iti-mobile-popup-margin: 30px;
}

.iti {
  position: relative;
  display: inline-block;
}
.iti * {
  box-sizing: border-box;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti__a11y-text {
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  position: absolute;
}
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: var(--iti-right-hand-selected-country-padding);
  margin-right: 0;
}
.iti__country-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: var(--iti-border-width);
}
.iti__selected-country {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: none;
}
.iti__selected-country-primary {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 var(--iti-arrow-padding) 0 var(--iti-spacer-horizontal);
}
.iti__arrow {
  margin-left: var(--iti-arrow-padding);
  width: 0;
  height: 0;
  border-left: var(--iti-triangle-border) solid transparent;
  border-right: var(--iti-triangle-border) solid transparent;
  border-top: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
[dir=rtl] .iti__arrow {
  margin-right: var(--iti-arrow-padding);
  margin-left: 0;
}
.iti__arrow--up {
  border-top: none;
  border-bottom: var(--iti-arrow-height) solid var(--iti-arrow-color);
}
.iti__dropdown-content {
  border-radius: 3px;
  background-color: white;
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: calc(var(--iti-border-width) * -1);
  border: var(--iti-border-width) solid var(--iti-border-gray);
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding: 9px 12px;
}
.iti__search-input + .iti__country-list {
  border-top: 1px solid var(--iti-border-gray);
}
.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}
.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}
@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}
.iti__flag-box {
  display: inline-block;
  width: var(--iti-flag-width);
}
.iti__country {
  display: flex;
  align-items: center;
  padding: 8px var(--iti-spacer-horizontal);
  outline: none;
}
.iti__dial-code {
  color: var(--iti-text-gray);
}
.iti__country.iti__highlight {
  background-color: var(--iti-hover-color);
}
.iti__flag-box, .iti__country-name {
  margin-right: var(--iti-spacer-horizontal);
}
[dir=rtl] .iti__flag-box, [dir=rtl] .iti__country-name {
  margin-right: 0;
  margin-left: var(--iti-spacer-horizontal);
}
.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type=text],
.iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-input-padding);
  padding-left: var(--iti-selected-country-arrow-padding);
  margin-left: 0;
}
[dir=rtl] .iti--allow-dropdown input.iti__tel-input,
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=text],
[dir=rtl] .iti--allow-dropdown input.iti__tel-input[type=tel] {
  padding-right: var(--iti-selected-country-arrow-padding);
  padding-left: var(--iti-input-padding);
  margin-right: 0;
}
.iti--allow-dropdown .iti__country-container {
  right: auto;
  left: 0;
}
[dir=rtl] .iti--allow-dropdown .iti__country-container {
  right: 0;
  left: auto;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover, .iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover button {
  cursor: pointer;
}
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: var(--iti-hover-color);
}
.iti .iti__selected-dial-code {
  margin-left: 4px;
}
[dir=rtl] .iti .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 4px;
}
.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: var(--iti-border-width);
}
.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: var(--iti-mobile-popup-margin);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}
.iti--fullscreen-popup .iti__country {
  padding: 10px 10px;
  line-height: 1.5em;
}

.iti__flag {
  --iti-flag-offset: 0px;
  --iti-flag-width: 20px;
  --iti-flag-height: 14px;
  height: var(--iti-flag-height);
  width: var(--iti-flag-width);
  box-shadow: 0px 0px 1px 0px #888;
  background-image: var(--iti-path-flags-1x);
  background-repeat: no-repeat;
  background-position: var(--iti-flag-offset) 0;
  background-size: var(--iti-flag-sprite-width) var(--iti-flag-sprite-height);
}

.iti__np {
  --iti-flag-width: 13px;
}

.iti__va, .iti__ch {
  --iti-flag-width: 15px;
}

.iti__ne, .iti__be {
  --iti-flag-width: 18px;
}

.iti__mc {
  --iti-flag-width: 19px;
}

.iti__zw, .iti__ws, .iti__vg, .iti__uz, .iti__uk, .iti__tv, .iti__to, .iti__tl, .iti__tk, .iti__tj, .iti__tc, .iti__ta, .iti__su, .iti__st, .iti__ss, .iti__si, .iti__sh, .iti__sd, .iti__sc, .iti__sb, .iti__ps, .iti__pn, .iti__ph, .iti__om, .iti__nz, .iti__nu, .iti__nr, .iti__ng, .iti__nf, .iti__nc, .iti__my, .iti__ms, .iti__mp, .iti__mn, .iti__mk, .iti__me, .iti__md, .iti__ly, .iti__lv, .iti__lk, .iti__lc, .iti__kz, .iti__ky, .iti__kw, .iti__kp, .iti__ki, .iti__jo, .iti__jm, .iti__io, .iti__im, .iti__ie, .iti__hu, .iti__hr, .iti__hn, .iti__hm, .iti__gw, .iti__gs, .iti__gi, .iti__gb, .iti__fk, .iti__fj, .iti__et, .iti__er, .iti__eh, .iti__dm, .iti__dg, .iti__cx, .iti__cu, .iti__ck, .iti__cc, .iti__ca, .iti__by, .iti__bs, .iti__bn, .iti__bm, .iti__ba, .iti__az, .iti__au, .iti__as, .iti__am, .iti__ai, .iti__ae, .iti__ac {
  --iti-flag-height: 10px;
}

.iti__us, .iti__um, .iti__py, .iti__mh, .iti__lr, .iti__gu, .iti__fm {
  --iti-flag-height: 11px;
}

.iti__vu, .iti__tt, .iti__sv, .iti__ni, .iti__mx, .iti__lu, .iti__lt, .iti__li, .iti__km, .iti__kg, .iti__je, .iti__ir, .iti__ht, .iti__gy, .iti__gd, .iti__fi, .iti__de, .iti__cv, .iti__cr, .iti__cq, .iti__bz, .iti__bi, .iti__bh, .iti__bg, .iti__bd {
  --iti-flag-height: 12px;
}

.iti__tg, .iti__se, .iti__pw, .iti__pl, .iti__kh, .iti__gt, .iti__ee, .iti__ax, .iti__ar {
  --iti-flag-height: 13px;
}

.iti__xk, .iti__va, .iti__sm, .iti__sj, .iti__pg, .iti__np, .iti__no, .iti__ne, .iti__mc, .iti__is, .iti__il, .iti__ga, .iti__fo, .iti__dk, .iti__ch, .iti__cd, .iti__bv, .iti__be, .iti__al {
  --iti-flag-height: 15px;
}

.iti__qa {
  --iti-flag-height: 8px;
}

.iti__ac {
  --iti-flag-offset: 0px;
}

.iti__ad {
  --iti-flag-offset: -22px;
}

.iti__ae {
  --iti-flag-offset: -44px;
}

.iti__af {
  --iti-flag-offset: -66px;
}

.iti__ag {
  --iti-flag-offset: -88px;
}

.iti__ai {
  --iti-flag-offset: -110px;
}

.iti__al {
  --iti-flag-offset: -132px;
}

.iti__am {
  --iti-flag-offset: -154px;
}

.iti__ao {
  --iti-flag-offset: -176px;
}

.iti__aq {
  --iti-flag-offset: -198px;
}

.iti__ar {
  --iti-flag-offset: -220px;
}

.iti__as {
  --iti-flag-offset: -242px;
}

.iti__at {
  --iti-flag-offset: -264px;
}

.iti__au {
  --iti-flag-offset: -286px;
}

.iti__aw {
  --iti-flag-offset: -308px;
}

.iti__ax {
  --iti-flag-offset: -330px;
}

.iti__az {
  --iti-flag-offset: -352px;
}

.iti__ba {
  --iti-flag-offset: -374px;
}

.iti__bb {
  --iti-flag-offset: -396px;
}

.iti__bd {
  --iti-flag-offset: -418px;
}

.iti__be {
  --iti-flag-offset: -440px;
}

.iti__bf {
  --iti-flag-offset: -460px;
}

.iti__bg {
  --iti-flag-offset: -482px;
}

.iti__bh {
  --iti-flag-offset: -504px;
}

.iti__bi {
  --iti-flag-offset: -526px;
}

.iti__bj {
  --iti-flag-offset: -548px;
}

.iti__bl {
  --iti-flag-offset: -570px;
}

.iti__bm {
  --iti-flag-offset: -592px;
}

.iti__bn {
  --iti-flag-offset: -614px;
}

.iti__bo {
  --iti-flag-offset: -636px;
}

.iti__bq {
  --iti-flag-offset: -658px;
}

.iti__br {
  --iti-flag-offset: -680px;
}

.iti__bs {
  --iti-flag-offset: -702px;
}

.iti__bt {
  --iti-flag-offset: -724px;
}

.iti__bv {
  --iti-flag-offset: -746px;
}

.iti__bw {
  --iti-flag-offset: -768px;
}

.iti__by {
  --iti-flag-offset: -790px;
}

.iti__bz {
  --iti-flag-offset: -812px;
}

.iti__ca {
  --iti-flag-offset: -834px;
}

.iti__cc {
  --iti-flag-offset: -856px;
}

.iti__cd {
  --iti-flag-offset: -878px;
}

.iti__cf {
  --iti-flag-offset: -900px;
}

.iti__cg {
  --iti-flag-offset: -922px;
}

.iti__ch {
  --iti-flag-offset: -944px;
}

.iti__ci {
  --iti-flag-offset: -961px;
}

.iti__ck {
  --iti-flag-offset: -983px;
}

.iti__cl {
  --iti-flag-offset: -1005px;
}

.iti__cm {
  --iti-flag-offset: -1027px;
}

.iti__cn {
  --iti-flag-offset: -1049px;
}

.iti__co {
  --iti-flag-offset: -1071px;
}

.iti__cp {
  --iti-flag-offset: -1093px;
}

.iti__cq {
  --iti-flag-offset: -1115px;
}

.iti__cr {
  --iti-flag-offset: -1137px;
}

.iti__cu {
  --iti-flag-offset: -1159px;
}

.iti__cv {
  --iti-flag-offset: -1181px;
}

.iti__cw {
  --iti-flag-offset: -1203px;
}

.iti__cx {
  --iti-flag-offset: -1225px;
}

.iti__cy {
  --iti-flag-offset: -1247px;
}

.iti__cz {
  --iti-flag-offset: -1269px;
}

.iti__de {
  --iti-flag-offset: -1291px;
}

.iti__dg {
  --iti-flag-offset: -1313px;
}

.iti__dj {
  --iti-flag-offset: -1335px;
}

.iti__dk {
  --iti-flag-offset: -1357px;
}

.iti__dm {
  --iti-flag-offset: -1379px;
}

.iti__do {
  --iti-flag-offset: -1401px;
}

.iti__dz {
  --iti-flag-offset: -1423px;
}

.iti__ea {
  --iti-flag-offset: -1445px;
}

.iti__ec {
  --iti-flag-offset: -1467px;
}

.iti__ee {
  --iti-flag-offset: -1489px;
}

.iti__eg {
  --iti-flag-offset: -1511px;
}

.iti__eh {
  --iti-flag-offset: -1533px;
}

.iti__er {
  --iti-flag-offset: -1555px;
}

.iti__es {
  --iti-flag-offset: -1577px;
}

.iti__et {
  --iti-flag-offset: -1599px;
}

.iti__eu {
  --iti-flag-offset: -1621px;
}

.iti__ez {
  --iti-flag-offset: -1643px;
}

.iti__fi {
  --iti-flag-offset: -1665px;
}

.iti__fj {
  --iti-flag-offset: -1687px;
}

.iti__fk {
  --iti-flag-offset: -1709px;
}

.iti__fm {
  --iti-flag-offset: -1731px;
}

.iti__fo {
  --iti-flag-offset: -1753px;
}

.iti__fr {
  --iti-flag-offset: -1775px;
}

.iti__fx {
  --iti-flag-offset: -1797px;
}

.iti__ga {
  --iti-flag-offset: -1819px;
}

.iti__gb {
  --iti-flag-offset: -1841px;
}

.iti__gd {
  --iti-flag-offset: -1863px;
}

.iti__ge {
  --iti-flag-offset: -1885px;
}

.iti__gf {
  --iti-flag-offset: -1907px;
}

.iti__gg {
  --iti-flag-offset: -1929px;
}

.iti__gh {
  --iti-flag-offset: -1951px;
}

.iti__gi {
  --iti-flag-offset: -1973px;
}

.iti__gl {
  --iti-flag-offset: -1995px;
}

.iti__gm {
  --iti-flag-offset: -2017px;
}

.iti__gn {
  --iti-flag-offset: -2039px;
}

.iti__gp {
  --iti-flag-offset: -2061px;
}

.iti__gq {
  --iti-flag-offset: -2083px;
}

.iti__gr {
  --iti-flag-offset: -2105px;
}

.iti__gs {
  --iti-flag-offset: -2127px;
}

.iti__gt {
  --iti-flag-offset: -2149px;
}

.iti__gu {
  --iti-flag-offset: -2171px;
}

.iti__gw {
  --iti-flag-offset: -2193px;
}

.iti__gy {
  --iti-flag-offset: -2215px;
}

.iti__hk {
  --iti-flag-offset: -2237px;
}

.iti__hm {
  --iti-flag-offset: -2259px;
}

.iti__hn {
  --iti-flag-offset: -2281px;
}

.iti__hr {
  --iti-flag-offset: -2303px;
}

.iti__ht {
  --iti-flag-offset: -2325px;
}

.iti__hu {
  --iti-flag-offset: -2347px;
}

.iti__ic {
  --iti-flag-offset: -2369px;
}

.iti__id {
  --iti-flag-offset: -2391px;
}

.iti__ie {
  --iti-flag-offset: -2413px;
}

.iti__il {
  --iti-flag-offset: -2435px;
}

.iti__im {
  --iti-flag-offset: -2457px;
}

.iti__in {
  --iti-flag-offset: -2479px;
}

.iti__io {
  --iti-flag-offset: -2501px;
}

.iti__iq {
  --iti-flag-offset: -2523px;
}

.iti__ir {
  --iti-flag-offset: -2545px;
}

.iti__is {
  --iti-flag-offset: -2567px;
}

.iti__it {
  --iti-flag-offset: -2589px;
}

.iti__je {
  --iti-flag-offset: -2611px;
}

.iti__jm {
  --iti-flag-offset: -2633px;
}

.iti__jo {
  --iti-flag-offset: -2655px;
}

.iti__jp {
  --iti-flag-offset: -2677px;
}

.iti__ke {
  --iti-flag-offset: -2699px;
}

.iti__kg {
  --iti-flag-offset: -2721px;
}

.iti__kh {
  --iti-flag-offset: -2743px;
}

.iti__ki {
  --iti-flag-offset: -2765px;
}

.iti__km {
  --iti-flag-offset: -2787px;
}

.iti__kn {
  --iti-flag-offset: -2809px;
}

.iti__kp {
  --iti-flag-offset: -2831px;
}

.iti__kr {
  --iti-flag-offset: -2853px;
}

.iti__kw {
  --iti-flag-offset: -2875px;
}

.iti__ky {
  --iti-flag-offset: -2897px;
}

.iti__kz {
  --iti-flag-offset: -2919px;
}

.iti__la {
  --iti-flag-offset: -2941px;
}

.iti__lb {
  --iti-flag-offset: -2963px;
}

.iti__lc {
  --iti-flag-offset: -2985px;
}

.iti__li {
  --iti-flag-offset: -3007px;
}

.iti__lk {
  --iti-flag-offset: -3029px;
}

.iti__lr {
  --iti-flag-offset: -3051px;
}

.iti__ls {
  --iti-flag-offset: -3073px;
}

.iti__lt {
  --iti-flag-offset: -3095px;
}

.iti__lu {
  --iti-flag-offset: -3117px;
}

.iti__lv {
  --iti-flag-offset: -3139px;
}

.iti__ly {
  --iti-flag-offset: -3161px;
}

.iti__ma {
  --iti-flag-offset: -3183px;
}

.iti__mc {
  --iti-flag-offset: -3205px;
}

.iti__md {
  --iti-flag-offset: -3226px;
}

.iti__me {
  --iti-flag-offset: -3248px;
}

.iti__mf {
  --iti-flag-offset: -3270px;
}

.iti__mg {
  --iti-flag-offset: -3292px;
}

.iti__mh {
  --iti-flag-offset: -3314px;
}

.iti__mk {
  --iti-flag-offset: -3336px;
}

.iti__ml {
  --iti-flag-offset: -3358px;
}

.iti__mm {
  --iti-flag-offset: -3380px;
}

.iti__mn {
  --iti-flag-offset: -3402px;
}

.iti__mo {
  --iti-flag-offset: -3424px;
}

.iti__mp {
  --iti-flag-offset: -3446px;
}

.iti__mq {
  --iti-flag-offset: -3468px;
}

.iti__mr {
  --iti-flag-offset: -3490px;
}

.iti__ms {
  --iti-flag-offset: -3512px;
}

.iti__mt {
  --iti-flag-offset: -3534px;
}

.iti__mu {
  --iti-flag-offset: -3556px;
}

.iti__mv {
  --iti-flag-offset: -3578px;
}

.iti__mw {
  --iti-flag-offset: -3600px;
}

.iti__mx {
  --iti-flag-offset: -3622px;
}

.iti__my {
  --iti-flag-offset: -3644px;
}

.iti__mz {
  --iti-flag-offset: -3666px;
}

.iti__na {
  --iti-flag-offset: -3688px;
}

.iti__nc {
  --iti-flag-offset: -3710px;
}

.iti__ne {
  --iti-flag-offset: -3732px;
}

.iti__nf {
  --iti-flag-offset: -3752px;
}

.iti__ng {
  --iti-flag-offset: -3774px;
}

.iti__ni {
  --iti-flag-offset: -3796px;
}

.iti__nl {
  --iti-flag-offset: -3818px;
}

.iti__no {
  --iti-flag-offset: -3840px;
}

.iti__np {
  --iti-flag-offset: -3862px;
}

.iti__nr {
  --iti-flag-offset: -3877px;
}

.iti__nu {
  --iti-flag-offset: -3899px;
}

.iti__nz {
  --iti-flag-offset: -3921px;
}

.iti__om {
  --iti-flag-offset: -3943px;
}

.iti__pa {
  --iti-flag-offset: -3965px;
}

.iti__pe {
  --iti-flag-offset: -3987px;
}

.iti__pf {
  --iti-flag-offset: -4009px;
}

.iti__pg {
  --iti-flag-offset: -4031px;
}

.iti__ph {
  --iti-flag-offset: -4053px;
}

.iti__pk {
  --iti-flag-offset: -4075px;
}

.iti__pl {
  --iti-flag-offset: -4097px;
}

.iti__pm {
  --iti-flag-offset: -4119px;
}

.iti__pn {
  --iti-flag-offset: -4141px;
}

.iti__pr {
  --iti-flag-offset: -4163px;
}

.iti__ps {
  --iti-flag-offset: -4185px;
}

.iti__pt {
  --iti-flag-offset: -4207px;
}

.iti__pw {
  --iti-flag-offset: -4229px;
}

.iti__py {
  --iti-flag-offset: -4251px;
}

.iti__qa {
  --iti-flag-offset: -4273px;
}

.iti__re {
  --iti-flag-offset: -4295px;
}

.iti__ro {
  --iti-flag-offset: -4317px;
}

.iti__rs {
  --iti-flag-offset: -4339px;
}

.iti__ru {
  --iti-flag-offset: -4361px;
}

.iti__rw {
  --iti-flag-offset: -4383px;
}

.iti__sa {
  --iti-flag-offset: -4405px;
}

.iti__sb {
  --iti-flag-offset: -4427px;
}

.iti__sc {
  --iti-flag-offset: -4449px;
}

.iti__sd {
  --iti-flag-offset: -4471px;
}

.iti__se {
  --iti-flag-offset: -4493px;
}

.iti__sg {
  --iti-flag-offset: -4515px;
}

.iti__sh {
  --iti-flag-offset: -4537px;
}

.iti__si {
  --iti-flag-offset: -4559px;
}

.iti__sj {
  --iti-flag-offset: -4581px;
}

.iti__sk {
  --iti-flag-offset: -4603px;
}

.iti__sl {
  --iti-flag-offset: -4625px;
}

.iti__sm {
  --iti-flag-offset: -4647px;
}

.iti__sn {
  --iti-flag-offset: -4669px;
}

.iti__so {
  --iti-flag-offset: -4691px;
}

.iti__sr {
  --iti-flag-offset: -4713px;
}

.iti__ss {
  --iti-flag-offset: -4735px;
}

.iti__st {
  --iti-flag-offset: -4757px;
}

.iti__su {
  --iti-flag-offset: -4779px;
}

.iti__sv {
  --iti-flag-offset: -4801px;
}

.iti__sx {
  --iti-flag-offset: -4823px;
}

.iti__sy {
  --iti-flag-offset: -4845px;
}

.iti__sz {
  --iti-flag-offset: -4867px;
}

.iti__ta {
  --iti-flag-offset: -4889px;
}

.iti__tc {
  --iti-flag-offset: -4911px;
}

.iti__td {
  --iti-flag-offset: -4933px;
}

.iti__tf {
  --iti-flag-offset: -4955px;
}

.iti__tg {
  --iti-flag-offset: -4977px;
}

.iti__th {
  --iti-flag-offset: -4999px;
}

.iti__tj {
  --iti-flag-offset: -5021px;
}

.iti__tk {
  --iti-flag-offset: -5043px;
}

.iti__tl {
  --iti-flag-offset: -5065px;
}

.iti__tm {
  --iti-flag-offset: -5087px;
}

.iti__tn {
  --iti-flag-offset: -5109px;
}

.iti__to {
  --iti-flag-offset: -5131px;
}

.iti__tr {
  --iti-flag-offset: -5153px;
}

.iti__tt {
  --iti-flag-offset: -5175px;
}

.iti__tv {
  --iti-flag-offset: -5197px;
}

.iti__tw {
  --iti-flag-offset: -5219px;
}

.iti__tz {
  --iti-flag-offset: -5241px;
}

.iti__ua {
  --iti-flag-offset: -5263px;
}

.iti__ug {
  --iti-flag-offset: -5285px;
}

.iti__uk {
  --iti-flag-offset: -5307px;
}

.iti__um {
  --iti-flag-offset: -5329px;
}

.iti__un {
  --iti-flag-offset: -5351px;
}

.iti__us {
  --iti-flag-offset: -5373px;
}

.iti__uy {
  --iti-flag-offset: -5395px;
}

.iti__uz {
  --iti-flag-offset: -5417px;
}

.iti__va {
  --iti-flag-offset: -5439px;
}

.iti__vc {
  --iti-flag-offset: -5456px;
}

.iti__ve {
  --iti-flag-offset: -5478px;
}

.iti__vg {
  --iti-flag-offset: -5500px;
}

.iti__vi {
  --iti-flag-offset: -5522px;
}

.iti__vn {
  --iti-flag-offset: -5544px;
}

.iti__vu {
  --iti-flag-offset: -5566px;
}

.iti__wf {
  --iti-flag-offset: -5588px;
}

.iti__ws {
  --iti-flag-offset: -5610px;
}

.iti__xk {
  --iti-flag-offset: -5632px;
}

.iti__ye {
  --iti-flag-offset: -5654px;
}

.iti__yt {
  --iti-flag-offset: -5676px;
}

.iti__za {
  --iti-flag-offset: -5698px;
}

.iti__zm {
  --iti-flag-offset: -5720px;
}

.iti__zw {
  --iti-flag-offset: -5742px;
}

.iti__globe {
  background-image: var(--iti-path-globe-1x);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2x) {
  .iti__flag {
    background-image: var(--iti-path-flags-2x);
  }
  .iti__globe {
    background-image: var(--iti-path-globe-2x);
  }
}
/*! nouislider - 13.1.4 - 3/20/2019 */
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;touch-action:none;-moz-user-select:none;user-select:none;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;left:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}html:not([dir=rtl]) .noUi-horizontal .noUi-origin{left:auto;right:0}.noUi-vertical .noUi-origin{width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}html:not([dir=rtl]) .noUi-horizontal .noUi-handle{right:-17px;left:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.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;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{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}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{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{transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{transform:translate(0,-50%);top:50%;right:120%}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Adjusted Arial Fallback";
  src: local(Arial);
  size-adjust: 99%;
  ascent-override: normal;
  descent-override: 27%;
  line-gap-override: normal;
}
/**
 * Media queries mixin.
 */
html {
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Adjusted Arial Fallback";
  color: #1d1d1d;
}

.container-fluid.max-width {
  max-width: 1170px;
}

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

button:focus,
.btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

a {
  outline: 0;
}

.mw-220 {
  min-width: 220px !important;
}

.mw-250 {
  min-width: 250px !important;
}

.color-primary {
  color: #002b6d !important;
}

.text-medium {
  font-weight: 500 !important;
}

.text-bold {
  font-weight: 700 !important;
}

.text-bigger {
  font-size: 1.125rem !important;
}

.bg-primary-light {
  background-color: rgba(0, 43, 109, 0.075);
}

.border-bottom-grey {
  border-bottom: 1px solid;
}

h1 {
  margin-bottom: 60px;
  text-align: center;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 1.8rem;
  font-weight: 700;
}

h2 {
  margin-bottom: 30px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 700;
  font-size: 1.6rem;
}

p + h2,
ul + h2 {
  margin-top: 60px;
}

a {
  color: #002b6d;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
}

p.perex {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.8;
}

ul {
  margin-bottom: 30px;
}

strong,
b {
  font-weight: 700;
}

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

.bigger {
  font-size: 1.125rem !important;
  line-height: 1.6;
}

@media (min-width: md) {
  h1 {
    margin-bottom: 70px;
  }
}
.c {
  text-align: center !important;
}

.l {
  text-align: left !important;
}

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

.center-sm-left, .center-md-left, .center-lg-left, .center-xl-left, .center-sm-right, .center-md-right, .center-lg-right, .center-xl-right {
  text-align: center !important;
}

.c-sm-l, .c-md-l, .c-lg-l, .c-xl-l, .c-sm-r, .c-md-r, .c-lg-r, .c-xl-r {
  text-align: center !important;
}

@media (min-width: sm) {
  .center-sm-left,
  .c-sm-l {
    text-align: left !important;
  }
  .center-sm-right,
  .c-sm-r {
    text-align: right !important;
  }
}
@media (min-width: md) {
  .center-md-left,
  .c-md-l {
    text-align: left !important;
  }
  .center-md-right,
  .c-md-r {
    text-align: right !important;
  }
}
@media (min-width: lg) {
  .center-lg-left,
  .c-lg-l {
    text-align: left !important;
  }
  .center-lg-right,
  .c-lg-r {
    text-align: right !important;
  }
}
@media (min-width: xl) {
  .center-xl-left,
  .c-xl-l {
    text-align: left !important;
  }
  .center-xl-right,
  .c-xl-r {
    text-align: right !important;
  }
}
.scroll-top {
  display: inline-block;
  box-sizing: border-box;
  opacity: 0;
  position: fixed;
  right: 15px;
  bottom: 40px;
  width: 45px;
  height: 45px;
  color: #ffffff;
  background-image: url("../img/icon-arrow-top.svg"), linear-gradient(180deg, #fce300 0%, #e2cb00 100%);
  background-repeat: no-repeat, repeat;
  background-position: center, center;
  transition: opacity 0.5s;
  border-top: 1px solid #fce300;
  border-bottom: 1px solid #e2cb00;
  z-index: 100;
  cursor: pointer;
  transform: rotate(180deg);
}
.scroll-top.show {
  opacity: 1;
}
@media (min-width: md) {
  .scroll-top {
    right: 40px;
    bottom: 40px;
  }
}
@media (min-width: lg) {
  .scroll-top {
    right: 50px;
    bottom: 60px;
  }
}

.w-160 {
  width: 160px;
}

.w-180 {
  width: 180px;
}

.w-200 {
  width: 200px;
}

.m20 {
  margin: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.m-40 {
  margin: 40px !important;
}

.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.m-60 {
  margin: 60px !important;
}

.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mr-60 {
  margin-right: 60px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.m-80 {
  margin: 80px !important;
}

.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.m-120 {
  margin: 120px !important;
}

.mx-120 {
  margin-left: 120px !important;
  margin-right: 120px !important;
}

.my-120 {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mr-120 {
  margin-right: 120px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.ml-120 {
  margin-left: 120px !important;
}

.m-150 {
  margin: 150px !important;
}

.mx-150 {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

.my-150 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mr-150 {
  margin-right: 150px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.ml-150 {
  margin-left: 150px !important;
}

.p-60 {
  padding: 60px !important;
}

.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.p-80 {
  padding: 80px !important;
}

.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.header {
  position: relative;
  max-width: 1310px;
  margin: auto;
}
@media (min-width: 1920px) {
  .header {
    max-width: 1500px;
  }
}
.header__upper-nav-part {
  display: none;
  padding: 30px 0 20px 0;
}
@media (min-width: 1310px) {
  .header__upper-nav-part {
    display: block;
  }
}
.header__upper-nav {
  display: inline-block;
}
.header__upper-nav-link {
  display: inline-block;
  padding: 0 30px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 1rem;
  font-weight: 500;
  color: #002b6d;
  border-right: 1px solid #bcbcbc;
}
.header__upper-nav-link:first-child {
  padding-left: 0;
}
.header__upper-nav-link:last-child {
  border-right: 1px solid transparent;
}
.header__upper-nav-link--categories {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.header__upper-nav-link--categories:hover .header__upper-nav-link--categories-content {
  display: flex;
}
.header__upper-nav-link--categories-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  padding: 50px;
  padding-right: 0;
  z-index: 20;
  background-color: white;
  border: 1px solid #bcbcbc;
}
.header__categories-category {
  display: flex;
  align-items: center;
  width: auto;
  height: 50px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  font-weight: 400;
}
.header__categories-category:last-child {
  margin-bottom: 0;
}
.header__categories-category:hover {
  text-decoration: underline;
}
.header__categories-category-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.header__categories-category-list {
  position: relative;
  display: none;
  height: 100%;
}
.header__categories-category-list:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #bcbcbc;
}
.header__categories-category-list.active {
  display: block;
}
.header__categories-category-list-item {
  display: flex;
  width: 260px;
  padding-right: 50px;
  padding-left: 40px;
  font-size: 0.875rem;
  font-weight: 400;
  padding-bottom: 15px;
}
.header__categories-category-list-item:hover {
  text-decoration: underline;
}
.header__categories-category-list-item:first-child {
  padding-top: 15px;
}
.header__blue-nav {
  position: relative;
  display: flex;
  border-bottom: 4px solid #fce300;
  background: linear-gradient(92deg, #002b6d 1%, #114a95 100%);
}
.header__blue-nav-item {
  position: relative;
  display: inline-block;
  padding: 20px 30px 20px 30px;
  color: #ffffff;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  font-weight: 400;
}
.header__blue-nav-item:hover {
  color: #ffffff;
}
.header__blue-nav-item:hover::after {
  opacity: 1;
}
.header__blue-nav-item:first-child::after {
  -webkit-clip-path: polygon(0 0, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}
.header__blue-nav-item::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #114a94;
  -webkit-clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
          clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
  z-index: 1;
  opacity: 0;
}
.header__blue-nav-item--padding {
  padding-left: 45px;
}
.header__bottom-nav {
  position: relative;
}
.header__bottom-nav .header__blue-nav {
  display: none;
}
@media screen and (min-width: 1310px) {
  .header__bottom-nav .header__blue-nav {
    display: block;
  }
}
.header__yellow-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px 0 20px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  -webkit-clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
  border-right: 4px solid #002b6d;
  background-color: #fce300;
  color: #002b6d;
}
.header__yellow-nav img {
  margin-right: 10px;
  filter: invert(12%) sepia(67%) saturate(4122%) hue-rotate(204deg) brightness(85%) contrast(109%);
}
.header__yellow-nav div {
  display: flex;
  flex-direction: column;
}
.header__yellow-nav:hover {
  color: #002b6d;
}
.header__yellow-nav-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 1100px) {
  .header__yellow-nav-wrapper {
    top: -1px;
  }
}
.header__yellow-nav-wrapper:hover .header__yellow-dropdown {
  display: block;
}
.header__yellow-dropdown {
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  width: 100%;
  background-color: #fce300;
  color: #002b6d;
  z-index: 1;
  text-align: right;
  border-right: 4px solid #002b6d;
}
.header__yellow-dropdown-item {
  display: block;
  padding: 15px 20px;
}
.header__yellow-nav-bold-text {
  margin-right: 7px;
  font-weight: 700;
}
.header__blue-nav-item-text {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.header__blue-nav-item-img {
  position: relative;
  margin-right: 10px;
  z-index: 2;
}
.header__lang-picker {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}
.header__logo img {
  width: 125px;
}
@media (min-width: 1310px) {
  .header__logo img {
    width: 250px;
  }
}
.header__lang-picker-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 9px 9px 15px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
  background-color: #ffffff;
}
.header__lang-picker-item {
  display: flex;
  justify-content: center;
  padding: 5px;
}
.header__lang-picker-item:first-child {
  border-bottom: 1px solid #bcbcbc;
}
.header__lang-picker-active-flag {
  margin-right: 7px;
}
.header__lang-picker-active {
  cursor: pointer;
}
.header__search-part {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 15px;
  z-index: 10;
  background: linear-gradient(92deg, #002b6d 1%, #114a95 100%);
}
@media (min-width: 1310px) {
  .header__search-part {
    padding: 20px 0;
    padding-top: 35px;
    background: #ffffff;
  }
}
.header__burger-logo {
  display: flex;
  cursor: pointer;
}
.header__search-basket {
  display: flex;
}
.header__basket {
  position: relative;
  cursor: pointer;
}
@media (min-width: 1310px) {
  .header__basket {
    display: none;
  }
}
.header__basket:hover {
  text-decoration: none;
}
.header__basket--openable {
  display: none;
}
@media (min-width: 1310px) {
  .header__basket--openable {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.header__basket-preview {
  display: block;
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  width: 380px;
  border-top: 4px solid #002b6d;
  background-color: white;
  box-shadow: 10px 10px 21px -3px rgb(188, 188, 188);
  cursor: default;
  z-index: 1000;
}
.header__basket-preview.hidden {
  display: none;
}
.header__basket-preview::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: -18px;
  right: 20px;
  border-bottom: 8px solid #002b6d;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.header__basket-preview-item-name {
  font-weight: bold;
  font-size: 0.875rem;
  color: #002b6d;
}
.header__basket-preview-variant-name {
  font-size: 0.875rem;
}
.header__basket-preview-price-info {
  font-size: 0.875rem;
}
.header__basket-preview-emty-img {
  display: block;
  width: 150px;
  height: auto;
  margin: 20px auto;
}
.header__basket-preview-item {
  display: flex;
  padding: 15px;
  border-bottom: 1px solid #f8f8f8;
}
.header__basket-preview-item:last-of-type {
  border-bottom: none;
}
.header__basket-preview-links {
  display: flex;
  justify-content: space-around;
  background-color: #002b6d;
}
.header__basket-preview-link {
  color: #fce300;
  cursor: pointer;
  flex: 1;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  font-size: 17px;
}
.header__basket-preview-link:hover {
  text-decoration: underline;
  color: #fce300;
}
.header__basket-preview-price-block {
  padding: 15px;
  border-top: 1px solid #dedede;
  text-align: center;
  color: #002b6d;
  font-weight: bold;
}
.header__basket-preview-price {
  color: #002b6d;
  font-weight: bold;
  font-size: 0.9375rem;
}
.header__basket-preview-price-detail {
  font-size: 0.8125rem;
  color: #717171;
}
.header__basket-preview-product-img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__basket-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #f8f8f8;
}
.header__basket-blue {
  color: #002b6d;
}
.header__basket-preview-close {
  cursor: pointer;
  font-size: 1.25rem;
}
.header__bold-text-center {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.header__basket-count, .header__tablet-menu-count {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0px;
  left: -9px;
  line-height: 20px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #002b6d;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
}
@media (min-width: 1310px) {
  .header__basket-count, .header__tablet-menu-count {
    position: static;
    color: #002b6d;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.header__burger {
  margin-right: 15px;
}
@media (min-width: 1310px) {
  .header__burger {
    display: none;
  }
}
.header__search {
  margin-right: 10px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__search {
    display: none;
  }
}
.header__tablet-search {
  position: relative;
  display: none;
  width: 100%;
  padding: 1px 9px;
  margin: 0 20px;
  border: 1px solid #bcbcbc;
  border-radius: 1%;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .header__tablet-search {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1310px) {
  .header__tablet-search {
    border-radius: 100px;
    max-width: 500px;
  }
}
.header__tablet-search-group {
  display: flex;
  width: 100%;
}
.header__tablet-search-input {
  display: inline-block;
  padding: 0;
  height: 35px;
  width: 100%;
  border: none;
  font-size: 0.8125rem;
}
.header__tablet-search-input:focus {
  border: none;
  outline: none;
}
.header__tablet-search-input:active {
  border: none;
}
.header__tablet-search-icon {
  width: 15px;
  height: auto;
  margin-right: 5px;
}
.header__tablet-search-submit {
  border: none;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.75rem;
  color: #114a94;
  background-color: transparent;
}
@media (min-width: 1310px) {
  .header__tablet-search-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 25px;
    background-color: #114a94;
    color: #ffffff;
    border-radius: 100px;
  }
}
.header__tablet-menu {
  position: relative;
  display: none;
  margin-right: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__tablet-menu {
    display: block;
  }
}
@media (min-width: 1310px) {
  .header__tablet-menu {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-right: 10px;
  }
}
.header__tablet-heart {
  position: relative;
  display: none;
  margin-right: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header__tablet-heart {
    display: block;
    margin-right: 10px;
  }
}
.header__tablet-heart-icon {
  height: 20px;
  width: auto;
}
.header__tablet-heart-count {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0px;
  left: -9px;
  line-height: 20px;
  border-radius: 50%;
  color: #ffffff;
  background-color: #002b6d;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.75rem;
  text-align: center;
}
@media (min-width: 1310px) {
  .header__tablet-heart-count {
    position: static;
    color: #002b6d;
    background-color: transparent;
    font-size: 0.875rem;
    font-weight: 400;
  }
}
.header__tablet-menu-group {
  display: flex;
}
@media (min-width: 1310px) {
  .header__tablet-menu-group {
    padding: 6px 25px;
  }
}
.header__login {
  display: none;
}
@media (min-width: 1310px) {
  .header__login {
    display: flex;
    align-items: center;
    padding-left: 24px;
    margin-left: 15px;
    border-left: 1px solid #002b6d;
    font-size: 0.8125rem;
  }
}

body {
  position: relative;
}

.burger-menu {
  position: absolute;
  top: 0;
  left: 0px;
  height: auto;
  width: 100%;
  z-index: 150;
  background-color: rgba(0, 0, 0, 0.54);
  transition: 0.5s ease-in-out;
}
.burger-menu__logo {
  flex-shrink: 0;
}
.burger-menu__logo img {
  width: 125px;
}
.burger-menu__content {
  background-color: #ffffff;
  height: 100vh;
}
.burger-menu__header {
  padding: 22px 15px;
  background: linear-gradient(92deg, #002b6d 1%, #114a95 100%);
}
.burger-menu__cross-logo {
  display: flex;
  margin-bottom: 35px;
}
.burger-menu__info-mail {
  display: flex;
  align-items: center;
}
.burger-menu__cross {
  margin-right: 21px;
  cursor: pointer;
}
.burger-menu__letter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  margin-right: 13px;
  border-radius: 50%;
  background-color: #8095b0;
  color: #114a94;
  font-size: 0.8125rem;
  font-weight: 700;
}
.burger-menu__link:hover {
  text-decoration: none;
}
.burger-menu__email {
  color: #798fb2;
  font-weight: 400;
  font-family: "Roboto", "Adjusted Arial Fallback";
}
.burger-menu__company {
  font-weight: 700;
  font-family: "Roboto", "Adjusted Arial Fallback";
  color: #ffffff;
}
.burger-menu__navigation {
  position: relative;
  padding-top: 20px;
  background-color: #ffffff;
}
.burger-menu__login {
  display: block;
  padding-top: 10px;
  color: #ffffff;
}
.burger-menu__login:hover {
  color: #ffffff;
}
.burger-menu__nav-link {
  display: block;
  padding: 17px 20px;
  border-bottom: 1px solid #dedede;
  color: #1d1d1d;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.875rem;
  font-weight: 700;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.burger-menu__nav-link:last-child {
  border-bottom: none;
}
.burger-menu__nav-link-icon {
  margin-right: 25px;
}

.new-mobile-menu-first,
.new-mobile-menu-item {
  display: flex;
  justify-content: space-between;
}

.mobile__menu-next {
  cursor: pointer;
}

.new-mobile-menu-third {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1;
  background-color: white;
  height: 100%;
  margin: 0;
  left: 0;
  padding-top: 37px;
}
@media screen and (min-width: 768px) {
  .new-mobile-menu-third {
    padding: 30px !important;
  }
}
.new-mobile-menu-third .mobile__menu-item {
  font-size: 16px;
  font-weight: 400;
}
.new-mobile-menu-third .mobile__menu-item img {
  margin-left: 0;
  margin-right: 15px;
  max-width: 50px;
}
.new-mobile-menu-third > div,
.new-mobile-menu-third .mobile__menu-item {
  max-height: 68px;
}
.new-mobile-menu-third > div {
  display: flex;
  justify-content: space-between;
}
.new-mobile-menu-third > div > span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 80px;
  padding-right: 10px;
}

.mobile__menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.mobile__menu-item img {
  margin-left: auto;
}
.mobile__menu-item:hover {
  color: #114a94;
}

.move__back {
  font-size: 16px;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 20px;
}

.bgc-y {
  background-color: #fce300 !important;
}

.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
}

.search-block {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  background: linear-gradient(92deg, #002b6d 1%, #114a95 100%);
}
.search-block__search-icon {
  width: 15px;
  height: auto;
  margin-right: 5px;
}
.search-block__wrap {
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 15px;
  background-color: #ffffff;
}
.search-block__search-group {
  display: flex;
  padding: 0 5px;
  width: 100%;
  background-color: white;
}
.search-block__search-input {
  border: none;
  width: 100%;
}
.search-block__search-input:focus {
  outline: none;
}
.search-block__search-submit {
  background-color: #ffffff;
  border: none;
  color: #002b6d;
}
.search-block__search-cancel {
  color: #ffffff;
}

.breadcrumbs {
  max-width: 1250px;
  margin: auto;
}
.breadcrumbs--category {
  display: none;
  border-bottom: 1px solid #bcbcbc;
}
@media (min-width: 1310px) {
  .breadcrumbs--category {
    display: block;
  }
}
@media (min-width: 1310px) {
  .breadcrumbs--desktop-disabled {
    display: none;
  }
}
.breadcrumbs__item {
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.75rem;
  color: #717171;
}
.breadcrumbs__item a {
  color: inherit;
}
.breadcrumbs__item--home {
  padding-left: 0;
}
.breadcrumbs__item--home::before {
  display: none;
}
.breadcrumbs__item--home .breadcrumbs__item-text {
  display: none;
}
@media (min-width: 1310px) {
  .breadcrumbs__item--home .breadcrumbs__item-text {
    display: block;
  }
}
.breadcrumbs__item::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.breadcrumbs__item--active {
  color: #002b6d;
  text-decoration: underline;
}
.breadcrumbs__item-icon {
  display: block;
}
@media (min-width: 1310px) {
  .breadcrumbs__item-icon {
    display: none;
  }
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 18px;
  background-color: #f3f5f8;
  list-style-type: none;
}
@media (min-width: 1310px) {
  .breadcrumbs__list {
    padding: 15px 0px;
    background-color: #ffffff;
  }
}
@media screen and (max-width: 800px) {
  .breadcrumbs__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.tabs {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
  background-color: #f3f5f8;
  border-top: 8px solid #f3f5f8;
  border-left: 5px solid #f3f5f8;
  overflow-x: auto;
}
.tabs__tab {
  padding: 12px 20px 20px 20px;
  color: #002b6d;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
}
.tabs__tab.active, .tabs__tab--active {
  font-weight: 700;
  background-color: #ffffff;
  border-radius: 5px 5px 0 0;
}
.tabs__content {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.875rem;
  font-weight: 400;
  list-style-type: none;
  padding: 20px 15px 20px 15px;
  margin: 0;
}
@media (min-width: 768px) {
  .tabs__content {
    padding: 20px 0 20px 0;
  }
}
@media (min-width: 1310px) {
  .tabs__content {
    padding: 20px 0 20px 0;
  }
}
.tabs__content-item > p {
  line-height: 2;
  padding: 0 15px 0 15px;
  color: #717171;
}
@media (min-width: 1310px) {
  .tabs__content-item > p {
    max-width: 80%;
  }
}
.tabs__content-item {
  display: none;
}
.tabs__content-item.active, .tabs__content-item--active {
  display: block;
}
.tabs__content-select-heading {
  margin: 7px 0 4px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.8125rem;
  color: #002b6d;
}
@media (min-width: 1310px) {
  .tabs__content-select {
    margin-right: 17px;
    width: calc(25% - 40px);
    display: inline-block;
  }
}

/* The container must be positioned relative: */
.form-select {
  position: relative;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  font-weight: 400;
}

.form-select select {
  display: none; /*hide original SELECT element: */
}

.select-selected {
  background-color: #f7f7f7;
  color: #717171;
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 15px;
  height: 10px;
  background-image: url(../img/arrow-select-down.svg);
  background-repeat: no-repeat;
}

.select-selected:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  height: 12px;
  border-left: 1px solid #707070;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: rotate(180deg);
  transition: 0.2s;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
  color: #717171;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #f7f7f7;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.favorite {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 100%;
  cursor: pointer;
}
.favorite::before {
  position: relative;
  content: "";
  display: flex;
  width: 60%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  margin: 0 auto;
  background-image: url(/img/heart-outline-red.svg);
}
.favorite--full::before {
  background-image: url(/img/heart.svg);
}
.favorite:hover::before {
  animation: pulse 700ms ease infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.favorite--bigger {
  width: 26px !important;
  height: 20px !important;
}
.favorite--small {
  width: 33px;
  height: 33px;
  background-color: transparent;
  margin-right: 3px;
}
.favorite--no-border {
  width: 18px;
  height: 13px;
  padding: 0;
  border: none;
}
.favorite--margin {
  margin-top: 10px;
}

.lists {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 15px;
  padding-bottom: 0;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 6px 1px #a6a6a6;
  z-index: 1000;
}
.lists__centered {
  display: flex;
  align-items: center;
}
.lists__heading {
  white-space: nowrap;
  text-align: left !important;
  padding: 0 !important;
  padding-bottom: 10px !important;
  color: #717171;
  font-size: 13px;
}
.lists__input {
  text-align: center;
}
.lists__show {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 5px !important;
  background-color: #dcdcdc !important;
  font-weight: 700 !important;
}
.lists__show:hover {
  text-decoration: none !important;
}
.lists__content {
  border-top: 1px solid #f8f8f8 !important;
  border-bottom: 1px solid #f8f8f8 !important;
  width: 250px !important;
  max-height: 150px !important;
  overflow-y: auto !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.lists__label {
  position: relative;
  padding: 5px 0 5px 20px;
  margin-bottom: 0 !important;
}
.lists__checkbox {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.lists__wrapper {
  display: inline-flex;
  position: relative;
}
.lists__content-item {
  display: flex !important;
  justify-content: space-between !important;
  text-align: left !important;
  border-bottom: 1px solid #f8f8f8 !important;
  cursor: pointer !important;
  font-size: 13px !important;
  color: #002b6d !important;
}
.lists__add {
  padding: 17px !important;
  height: auto !important;
  font-size: 13px;
}
.lists__form {
  padding: 14px !important;
  font-size: 14px;
}
.lists__form input {
  border: 1px solid black;
  outline: none;
}
.lists__checkbox {
  margin-right: 15px !important;
}
@media (min-width: 1310px) {
  .variants-list-wrapper {
    display: none;
  }
}

.variant {
  padding: 15px 30px 15px 15px;
}
@media (min-width: 768px) {
  .variant {
    padding: 15px;
  }
}
@media (min-width: 1310px) {
  .variant {
    display: none;
  }
}
.variant:first-child {
  margin-top: 45px;
}
.variant:nth-child(odd) {
  background-color: #eff1f3;
}
.variant__wrap {
  display: flex;
  align-items: center;
}
.variant__heading {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.8125rem;
  color: #002b6d;
}
.variant__stock {
  display: flex;
  position: relative;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.625rem;
  color: #84b518;
}
.variant__stock .variants-table__item-value-hint {
  position: relative;
  top: auto;
  right: auto;
  margin-left: 10px;
}
.variant__size, .variant__count-pallet, .variant__count-packaging {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.8125rem;
  text-decoration: underline;
}
.variant__size {
  margin-right: 20px;
}
.variant__count-pallet, .variant__count-packaging {
  margin-right: 5px;
}
.variant__size-value {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
}
.variant__count-pallet-value, .variant__count-packaging-value {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
  color: #114a94;
}
.variant__count-pallet-value {
  margin-right: 25px;
}
.variant__price {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 500;
  font-size: 0.8125rem;
}
.variant__price-without-vat {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.625rem;
}
.variant__count-input {
  display: inline-block;
  vertical-align: middle;
}
.variant__count-input-text {
  width: 33px;
  height: 33px;
  border: 1px solid #bcbcbc;
  font-family: Verdana, sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  text-align: center;
}
.variant__info {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
}
.variant__info.active {
  display: flex;
}
.variant__header {
  display: flex;
  justify-content: space-between;
}
.variant__price-info {
  display: flex;
  align-items: center;
}
.variant__price-info-group {
  margin-right: 30px;
}
.variant__arrow-down {
  cursor: pointer;
}
.variant__arrow-down.active {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

.button {
  background-color: #002b6d;
  color: #ffffff;
  cursor: pointer;
}
.button--normal {
  padding: 15px 30px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #002b6d;
  color: #ffffff;
  border: none;
  vertical-align: middle;
}
.button--tiny, .button--small {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.button--tiny {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 33px;
  height: 33px;
  vertical-align: middle;
}
.button--text-center {
  text-align: center;
}
.button--small {
  width: 45px;
  height: 45px;
  vertical-align: middle;
}
.button__img--small {
  width: 19px;
  height: 18px;
}
.button--bold {
  font-weight: 700;
}

.variants-table {
  display: none;
  width: 100%;
  margin-top: 35px;
}
@media (min-width: 1310px) {
  .variants-table {
    display: table;
  }
}
.variants-table__item-red-label {
  background-color: red;
  color: white;
  padding: 3px 5px;
}
.variants-table__header {
  padding: 15px 0;
  border-bottom: 20px solid #ffffff;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
  background-color: #002b6d;
  color: #ffffff;
  text-align: center;
}
.variants-table__header-item {
  padding: 15px;
  width: 100px;
}
.variants-table__header-item--tiny {
  width: 70px;
}
.variants-table__header-item--w145 {
  width: 145px;
}
.variants-table__header-item--w70 {
  width: 70px;
}
.variants-table__header-item--w50 {
  width: 50px;
}
.variants-table__item-value-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top: none;
}
.variants-table__item-value {
  padding: 20px 5px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  color: #002b6d;
}
.variants-table__item-value--price {
  white-space: nowrap;
}
.variants-table__item-value--medium {
  font-weight: 500;
  text-decoration: underline;
}
.variants-table__item-value--green {
  color: #84b518;
}
.variants-table__item-value--padding {
  padding-left: 30px;
  padding-right: 30px;
}
.variants-table__item-value--blue {
  font-size: 0.875rem;
  font-weight: 700;
}
.variants-table__item-value--black {
  font-size: 0.6875rem;
  color: black;
}
.variants-table__item-value--align-left {
  text-align: left;
}
.variants-table__item-value--bordered {
  position: relative;
}
.variants-table__item-value--bordered::after {
  position: absolute;
  content: "";
  bottom: 15px;
  top: 15px;
  right: 0;
  width: 1px;
  background-color: rgba(112, 112, 112, 0.1921568627);
}
.variants-table__item-value--fixed-width {
  width: 130px;
}
.variants-table__item-value--hint {
  position: relative;
}
.variants-table__item-value-hint-wrapper {
  display: flex;
}
.variants-table__item-value-hint-block {
  position: relative;
  margin-left: 8px;
  width: 10px;
}
.variants-table__item-value-hint {
  position: absolute;
  top: 27px;
  right: 34px;
  cursor: pointer;
}
.variants-table__item-value-hint--top-right {
  top: 0;
  right: 0;
}
.variants-table__item-value-hint:hover .variants-table__item-value-hint-content {
  position: absolute;
  display: block;
  white-space: nowrap;
}
.variants-table__item-value-hint .variants-table__item-value-hint-content {
  display: none;
  padding: 10px;
  background-color: #ffffff;
  z-index: 5;
}
.variants-table__row:nth-child(even) {
  background-color: #eff1f3;
}
.variants-table__warehouse-name {
  white-space: nowrap;
  color: #000;
}
.variants-table__warehouse-value {
  font-weight: 700;
  color: #002b6d;
}
.variants-table__warehouse {
  white-space: nowrap;
}
.variants-table__loading {
  display: flex;
  justify-content: center;
}
.variants-table__loading .lds-ellipsis div {
  background-color: #002b6d;
}
.variants-table__availability {
  display: flex;
  padding: 0;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

.footer {
  padding: 70px 15px 15px 15px;
  color: #ffffff;
  background-image: linear-gradient(0deg, #001637 1%, #002b6d 100%);
}
@media (min-width: 1310px) {
  .footer {
    background-image: url("../img/footer-bg.png"), linear-gradient(0deg, #001637 1%, #002b6d 100%);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 0;
  }
}
@media (min-width: 1310px) {
  .footer__content {
    max-width: 1310px;
    margin: auto;
  }
}
@media (min-width: 1920px) {
  .footer__content {
    max-width: 1500px;
  }
}
.footer__logo {
  display: inline-block;
  margin-bottom: 40px;
}
@media (min-width: 1310px) {
  .footer__logo {
    display: block;
    margin-bottom: 28px;
  }
}
.footer__address {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  color: #798fb2;
  line-height: 1.8;
}
@media (min-width: 1310px) {
  .footer__address {
    display: inline-block;
    vertical-align: top;
    margin-right: 70px;
    font-size: 0.875rem;
  }
}
@media (min-width: 1310px) {
  .footer__menu {
    display: inline-block;
    vertical-align: top;
    margin-right: 38px;
  }
}
.footer__name {
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer__name {
    font-size: 1rem;
  }
}
.footer__heading {
  position: relative;
  padding-left: 15px;
  margin-top: 40px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
}
.footer__heading::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  top: 0;
  left: 0;
  background-image: url(../img/arrow-right-yellow.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .footer__heading {
    font-size: 1rem;
  }
}
@media (min-width: 1310px) {
  .footer__heading {
    margin-top: 0;
    cursor: default;
  }
}
.footer__link {
  display: block;
  padding-left: 15px;
  margin-bottom: 5px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  color: #798fb2;
}
.footer__link:hover {
  color: #798fb2;
}
@media (min-width: 1310px) {
  .footer__link {
    font-size: 0.875rem;
  }
}
.footer__nav {
  display: none;
}
@media (min-width: 1310px) {
  .footer__nav {
    display: block;
  }
}
.footer__nav.active {
  display: block;
}
.footer__bottom {
  margin-top: 40px;
}
@media (min-width: 1310px) {
  .footer__bottom {
    margin-top: 0;
  }
}
.footer__bottom-link {
  padding: 7px 15px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 0.8125rem;
  color: #798fb2;
}
.footer__bottom-link:hover {
  color: #798fb2;
}
.footer__bottom-link:first-child {
  position: relative;
  padding-left: 0;
}
.footer__bottom-link:last-child {
  position: relative;
  display: block;
  padding-right: 0;
  padding-left: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom-link:last-child {
    display: inline-block;
  }
  .footer__bottom-link:last-child::after {
    display: block;
  }
}
.footer__autor {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #707070;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
  color: #798fb2;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__autor {
    border-top: none;
    text-align: left;
    padding-top: 0;
  }
}
@media (min-width: 1310px) {
  .footer__autor {
    margin-top: 0;
    padding-top: 0;
  }
}
.footer__text-white {
  color: #ffffff;
}
.footer__text-white:hover {
  color: #ffffff;
}
@media (min-width: 1310px) {
  .footer__bottom-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px;
    padding: 10px 30px;
  }
}

.newsletter {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fce300;
}
@media (min-width: 1310px) {
  .newsletter {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.newsletter__message {
  text-align: center;
}
.newsletter__form {
  height: auto;
}
.newsletter__input {
  height: 40px !important;
  width: 250px;
  border-radius: 100px;
}
@media (min-width: 768px) {
  .newsletter__input {
    width: 500px;
  }
}
.newsletter__content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
}
@media (min-width: 1310px) {
  .newsletter__content {
    flex-direction: row;
  }
}
.newsletter__label {
  margin-bottom: 20px;
  font-size: 1.75rem;
  color: #002b6d;
  font-weight: 600;
}
@media (min-width: 1310px) {
  .newsletter__label {
    margin-right: 160px;
    margin-bottom: 0;
  }
}
.newsletter__input-wrapper {
  position: relative;
}
.newsletter__button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  width: 75px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.75rem;
  background-color: #114a94;
  color: #ffffff;
  border-radius: 100px;
}

.lightbox {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 30px 30px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}
.lightbox.active {
  display: flex;
}

.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
  padding: 0;
  height: 100%;
  max-width: 1200px;
}
.lightbox-content img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  line-height: 30px;
  font-size: 2rem;
  color: #002b6d;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #002b6d;
  text-decoration: none;
  cursor: pointer;
}

.lightbox-slides {
  position: relative;
  display: none;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  transform: translateY(-50%);
  color: #002b6d !important;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.lightbox-numbertext {
  color: #ffffff;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: -30px;
}

.lightbox-slides img {
  max-height: 100vh;
}

.gallery {
  position: relative;
  width: 100%;
  height: 220px;
}
@media (min-width: 768px) {
  .gallery {
    height: 330px;
  }
}
@media (min-width: 1310px) {
  .gallery {
    display: flex;
    height: 500px;
  }
}
.gallery__more {
  cursor: pointer;
}
.gallery__main {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #bcbcbc;
  cursor: pointer;
}
.gallery__main-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease !important; /* already in place for smooth transform */
  padding: 15px 0;
}
@media (min-width: 1310px) {
  .gallery__main-img {
    padding: 0;
  }
}
.gallery__dots {
  position: absolute;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 41px;
  gap: 5px;
  width: 85%;
}
@media (min-width: 1310px) {
  .gallery__dots {
    display: none;
  }
}
.gallery__dot {
  display: inline-block;
  margin: 0 10px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #002b6d;
  cursor: pointer;
}
.gallery__dot-img {
  display: none;
}
.gallery__items {
  display: none;
  grid-template-columns: auto;
  grid-template-rows: repeat(5, 1fr);
  width: 20%;
  margin-left: 10px;
}
@media (min-width: 1310px) {
  .gallery__items {
    display: inline-grid;
  }
}
.gallery__item {
  margin-bottom: 10px;
  border: 1px solid #bcbcbc;
  cursor: pointer;
  height: 150px;
}
.gallery__item:last-child {
  margin-bottom: 0;
}
.gallery__item-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.quantity {
  display: inline-flex;
  position: relative;
  align-items: center;
  vertical-align: middle;
  background-color: white;
  border: 1px solid #bcbcbc;
  width: 140px;
}
.quantity__value {
  padding: 0 15px 0 15px;
}
.quantity__input {
  width: 52px;
  color: #002b6d;
  border: none;
  text-align: center;
}
.quantity__input--small {
  height: 100%;
}
.quantity__input:focus {
  outline: none;
}
.quantity--small {
  height: 46px;
}
.quantity__plus, .quantity__minus {
  position: absolute;
  right: 0;
  top: 0;
  height: 50%;
  width: 30px;
  border-left: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  text-align: center;
  font-weight: #1d1d1d;
  cursor: pointer;
}
.quantity__plus::before, .quantity__plus::after, .quantity__minus::before, .quantity__minus::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1d1d1d;
}
.quantity__plus::after, .quantity__minus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.quantity__minus {
  top: 50%;
  border-top: none;
  border-bottom: none;
}
.quantity__minus::before {
  display: none;
}
.quantity__loading-wrapper {
  position: relative;
  white-space: nowrap;
}
.quantity__loading {
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(255, 255, 255, 0.01);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.35);
}
.modal.active {
  display: block;
}
.modal .modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.modal .card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 90%;
  padding: 40px 20px;
  z-index: 10005;
}
.modal .modal-title {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}
.modal .modal-subtitle {
  margin-bottom: 30px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #002b6d;
}
.modal .modal-body {
  margin: 0 0 30px;
  padding: 0;
}
.modal .modal-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
}
.modal .modal-close-btn:hover {
  color: #222;
}
.modal .modal-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.modal .modal-controls .modal-close:hover {
  text-decoration: underline;
}
.modal .modal-controls .btn:not(.modal-close) {
  min-width: 190px;
  font-size: 0.9rem;
  box-sizing: border-box;
  padding: 9px 24px;
  color: #ffffff;
  background: transparent radial-gradient(closest-side at 35% 25%, #f01e1e 0%, #9e0707 100%) 0% 0% no-repeat padding-box;
  border: none;
}

@media (min-width: sm) {
  .modal .card {
    min-width: 80%;
    padding: 70px 50px;
  }
}
@media (min-width: md) {
  .modal .card {
    min-width: auto;
    padding: 90px 50px;
  }
}
.comparison {
  display: inline-block;
}
.comparison__action {
  background-color: transparent;
  border: none;
}

.sorting {
  margin-top: 20px;
}
@media (min-width: 1310px) {
  .sorting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f3f5f8;
  }
}
.sorting__heading {
  display: none;
  margin-right: 20px;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #002b6d;
}
@media (min-width: 1310px) {
  .sorting__heading {
    display: inline;
  }
}
.sorting__view {
  display: none;
}
@media (min-width: 1310px) {
  .sorting__view {
    display: inline-flex;
    align-items: center;
  }
}
.sorting__item {
  display: inline-block;
  margin-right: 25px;
  font-size: 0.8125rem;
  color: #002b6d !important;
  cursor: pointer;
}
.sorting__item:last-child {
  margin-right: 0;
}
.sorting__item.active {
  border-bottom: 1px solid #002b6d;
}
.sorting__view-grid, .sorting__view-rows {
  display: inline-block;
  cursor: pointer;
}
.sorting__view-grid.active {
  background-image: url(../img/grid-selected.png);
}
.sorting__view-rows.active {
  background-image: url(../img/rows-selected.png);
}
.sorting__view-grid {
  margin-right: 5px;
  width: 26px;
  height: 26px;
  background-image: url(../img/grid.png);
}
.sorting__view-rows {
  width: 27px;
  height: 26px;
  background-image: url(../img/rows.png);
}

.product-card {
  position: relative;
}
.product-card:hover {
  text-decoration: none;
}
.product-card:hover .product-card__name {
  color: #1d1d1d !important;
}
.product-card:hover .product-card__description {
  color: #717171 !important;
}
@media (min-width: 1310px) {
  .product-card {
    padding: 20px;
    border-top: 1px solid #f8f8f8;
    border-left: 1px solid #f8f8f8;
  }
  .product-card:nth-child(-n+2) {
    border-top: 1px solid #f8f8f8;
  }
  .product-card:nth-child(even) {
    border-left: 1px solid #f8f8f8;
  }
  .product-card:nth-child(-n+4) {
    border-top: none;
  }
  .product-card:first-child, .product-card:nth-child(4n+1) {
    border-left: none;
  }
}
.product-card.rows {
  display: flex;
  padding-bottom: 30px;
  padding-top: 30px;
  width: 100%;
  border-bottom: 1px solid #f8f8f8;
}
@media (min-width: 1310px) {
  .product-card.rows {
    border: none;
    border-bottom: 1px solid #f8f8f8;
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.product-card.rows:first-child {
  padding-top: 0;
}
@media (min-width: 1310px) {
  .product-card.rows:first-child {
    padding-top: 15px;
  }
}
.product-card.rows .product-card__labels {
  display: none;
}
.product-card.rows .product-card__img {
  width: 190px;
  height: 190px;
  margin-right: 10px;
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__img {
    width: 63px;
    height: 63px;
    margin-right: 30px;
  }
}
.product-card.rows .product-card__info-wrapper {
  width: 100%;
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.product-card.rows .product-card__description {
  display: block;
  font-size: 0.8125rem;
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__description {
    display: none;
  }
}
.product-card.rows .product-card__price-info {
  margin-right: 30px;
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__info {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__category {
    margin-top: -3px;
  }
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__add-to-cart {
    padding: 5px 10px;
    margin-right: 10px;
    box-shadow: -2px 7px 15px 2px rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__add-to-cart-text {
    display: inline-block;
    margin-left: 5px;
  }
}
@media (min-width: 1310px) {
  .product-card.rows .product-card__controls {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
}
.product-card.rows .product-card__compare {
  margin-right: 10px;
  cursor: pointer;
}
.product-card.rows .product-card__favorite {
  cursor: pointer;
}
.product-card.rows .product-card__row-labels {
  margin-top: 8px;
}
.product-card.rows .product-card__row-label {
  padding: 3px 5px;
  margin-right: 5px;
  color: #ffffff;
  font-size: 0.75rem;
}
.product-card.rows .product-card__row-label--green {
  background-color: #84b518;
}
.product-card.rows .product-card__row-label--primary {
  background-color: #002b6d;
}
.product-card.rows .product-card__grid-labels {
  display: none;
}
.product-card__grid-labels {
  display: none;
  position: absolute;
  left: 10px;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 1310px) {
  .product-card__grid-labels {
    display: flex;
  }
}
.product-card__grid-label {
  padding: 0 5px;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 0.75rem;
}
.product-card__grid-label--green {
  background-color: #84b518;
}
.product-card__grid-label--primary {
  background-color: #002b6d;
}
.product-card__row-labels {
  display: none;
}
.product-card__labels-compare {
  margin-right: 10px;
  cursor: pointer;
}
.product-card__labels-favorite {
  cursor: pointer;
}
.product-card__controls {
  display: none;
}
.product-card__add-to-cart {
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.product-card__add-to-cart-text {
  display: none;
}
.product-card__description {
  display: none;
}
.product-card__info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f8f8f8;
}
.product-card__category {
  color: #717171;
  font-size: 0.75rem;
}
.product-card__name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1d1d1d;
}
.product-card__labels {
  display: none;
  justify-content: flex-end;
}
@media (min-width: 1310px) {
  .product-card__labels {
    display: flex;
  }
}
.product-card__price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #002b6d;
}
.product-card__price2 {
  font-size: 0.6875rem;
  color: #1d1d1d;
}
.product-card__price-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-card__img {
  width: 100%;
  height: 200px;
  margin-bottom: 5px;
  border: 1px solid #f8f8f8;
}
@media (min-width: 1310px) {
  .product-card__img {
    border: none;
  }
}
.product-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.multiselect__label {
  position: relative;
  padding-left: 20px;
}
.multiselect__checkbox {
  position: absolute;
  top: 3px;
  left: 0;
  accent-color: #002b6d;
}
.multiselect__checkbox:disabled + span {
  color: gray;
}
.multiselect__title {
  font-weight: bold;
  font-size: 14px;
  color: #1d1d1d;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: flex-end;
}
.multiselect__title img {
  cursor: pointer;
}
.multiselect__label-text {
  vertical-align: top;
  font-size: 14px;
  text-align: left;
}
.multiselect__item {
  position: relative;
  display: none;
}
.multiselect__item.active {
  display: block;
}
.multiselect__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.8125rem;
  color: #002b6d;
}
.multiselect__show-more {
  font-size: 0.8125rem;
  color: #114a94;
  cursor: pointer;
}
.multiselect__item.active.color {
  display: inline-block;
}
.multiselect__item.active.color input {
  display: none;
}
.multiselect__item.active.color label {
  box-sizing: border-box;
  position: relative;
  width: 40px;
  height: 40px;
  border: 1px solid rgb(224, 224, 224);
  cursor: pointer;
}
.multiselect__item.active.color label:hover div {
  width: 100%;
  height: 100%;
  border: transparent;
}
.multiselect__item.active.color label div {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  border: 1px solid rgb(224, 224, 224);
  transition: width 200ms, height 200ms;
}
.multiselect__item.active.color label div span {
  display: block;
  width: 100%;
  height: 100%;
}
.multiselect__item.active.color label div.squared span {
  background-size: 100% 50%;
  background-position: center top, center bottom;
  background-repeat: no-repeat;
}
.multiselect__item.active.color input:checked + div {
  width: 100%;
  height: 100%;
  border: none;
}
.multiselect__wrapper {
  margin-bottom: 25px;
}

.slider-page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 200px;
}

.noUi-target {
  border: none;
  background-color: #bcbcbc;
  box-shadow: none;
  cursor: pointer;
}

.noUi-connect {
  background-color: #002b6d;
}

.noUi-handle {
  top: calc(50% + 2px) !important;
  right: -6px !important;
  height: 14px !important;
  width: 14px !important;
  background-color: #002b6d;
  border-radius: 50%;
  border: none;
  box-shadow: none;
  outline: none !important;
  cursor: pointer;
  transform: translateY(-50%);
}
.noUi-handle::before, .noUi-handle::after {
  display: none;
}

.slider__slider {
  position: absolute;
  bottom: 10px;
  left: 7px;
  width: 250px;
  height: 4px;
}
@media (min-width: 1310px) {
  .slider__slider {
    width: calc(100% - 10px);
  }
}
.slider__wrapper {
  position: relative;
  width: 100%;
  height: 20px;
  margin-bottom: 50px;
}
@media (min-width: md) {
  .slider__wrapper {
    height: 20px;
  }
}
@media (min-width: 1310px) {
  .slider__wrapper {
    height: auto;
    padding-top: 70px;
  }
}
.slider__label {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
@media (min-width: md) {
  .slider__label {
    top: -20px;
  }
}
.slider__label .bold {
  font-weight: 600;
}
.slider__label-text {
  display: none;
}
@media (min-width: 1310px) {
  .slider__label-text {
    display: block;
    position: absolute;
    top: 20px;
    font-weight: 700;
    font-size: 0.8125rem;
    color: #002b6d;
  }
}
.slider__min, .slider__max {
  display: inline-block;
  min-width: 80px;
  border: 1px solid #bcbcbc;
  color: #002b6d;
  text-align: center;
  font-size: 0.7rem;
  padding: 2px;
}
.slider__dash {
  margin-left: 10px;
  margin-right: 10px;
}
.slider__unit {
  display: none;
}

.filter {
  padding: 20px 15px 0;
}
.filter__heading {
  display: none;
}
.filter__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 36px;
  margin: 0 -5px;
  /* Small mobile */
}
.filter__list > * {
  flex: 0 0 calc(20% - 10px);
  /* 5 items per row */
  max-width: calc(20% - 10px);
  box-sizing: border-box;
  padding: 0 5px;
}
@media screen and (max-width: 1284px) {
  .filter__list > * {
    flex-basis: calc(25% - 10px);
    /* 4 items per row */
    max-width: calc(25% - 10px);
  }
}
@media screen and (max-width: 960px) {
  .filter__list > * {
    flex-basis: calc(33.33% - 10px);
    /* 3 items per row */
    max-width: calc(33.33% - 10px);
  }
}
@media screen and (max-width: 800px) {
  .filter__list > * {
    flex-basis: calc(50% - 10px);
    /* 2 items per row */
    max-width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .filter__list > * {
    flex-basis: 100%;
    /* 1 item per row */
    max-width: 100%;
  }
}
.filter__list.loading {
  filter: blur(2px);
}
.filter__list img {
  width: 100%;
  height: auto;
}

.filter-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100vh;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.54);
}
@media (min-width: 1310px) {
  .filter-menu {
    display: block;
    position: relative;
    background-color: transparent;
    width: 215px;
    flex-shrink: 0;
  }
}
.filter-menu.active {
  display: block;
}
.filter-menu__content {
  width: 90%;
  height: 100%;
  background-color: white;
}
@media (min-width: 1310px) {
  .filter-menu__content {
    background-color: transparent;
    width: 100%;
  }
}
.filter-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #002b6d, #114a95);
  color: #ffffff;
}
@media (min-width: 1310px) {
  .filter-menu__header {
    display: none;
  }
}
.filter-menu__heading {
  font-size: 1.375rem;
}
.filter-menu__back {
  margin-right: 15px;
  cursor: pointer;
}
.filter-menu__back img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.filter-menu__count {
  font-size: 0.8125rem;
  color: #bcbcbc;
}

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

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.price-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}
.price-list__lists {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .price-list__lists {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.price-list__heading {
  color: #002b6d;
  font-size: 1.5625rem;
  text-align: left;
  padding: 40px 30px 20px 30px;
}
@media screen and (max-width: 800px) {
  .price-list__heading {
    text-align: center;
  }
}
.price-list__file-name {
  color: #002b6d;
  font-size: 0.875rem;
  font-weight: 700;
}
.price-list__wrapper {
  padding: 0px 30px 20px 30px;
}
.price-list__size {
  color: #002b6d;
  font-size: 0.875rem;
}
.price-list__download {
  color: #002b6d;
  font-size: 0.8125rem;
  font-weight: 700;
  border: 2px solid #fce300;
  text-align: center;
  padding: 7px 20px;
  transition: background-color 100ms linear;
}
.price-list__download:hover {
  background-color: #fce300;
  text-decoration: none;
}
.price-list__item {
  display: grid;
  grid-template-columns: 3fr 1fr 0.5fr 1fr;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 1px solid #bcbcbc;
}
@media screen and (max-width: 800px) {
  .price-list__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.price-list__load {
  color: white;
  padding: 15px 25px;
  font-size: 0.875rem;
  background-color: #002b6d;
}

.search-list {
  position: absolute;
  background-color: white;
  top: 100%;
  width: calc(100% + 1px);
  left: -1px;
  padding: 0;
  list-style-type: none;
  border-left: 1px solid #bcbcbc;
  border-bottom: 1px solid #bcbcbc;
  border-right: 1px solid #bcbcbc;
  list-style-position: inside;
  max-height: 300px;
  overflow-y: auto;
}
.search-list li {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 13px;
}
.search-list li:hover {
  background-color: #eceaea;
}
.search-list li a {
  display: block;
}
.search-list li a img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}

#ppl-widget {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
#ppl-widget #ppl-widget-close {
  position: absolute;
  height: 30px;
  width: 30px;
  right: 15px;
  top: 15px;
  padding: 5px;
  border-radius: 50%;
  background: #fff url("/img/cross-blue.svg") center center no-repeat;
  background-size: 15px auto;
  z-index: 1000;
  cursor: pointer;
}
#ppl-widget #ppl-widget-map {
  background: #fff;
  height: 100%;
  overflow: hidden;
}
#ppl-widget #ppl-widget-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.availability-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.availability-form__success {
  color: green;
  font-weight: bold;
}
.availability-form__error {
  color: red;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: left;
}
.availability-form__button {
  padding: 15px 30px;
  font-family: Roboto;
  font-size: 0.875rem;
  font-weight: 400;
  background-color: #002b6d;
  color: #ffffff;
  border: none;
  vertical-align: middle;
  text-align: center;
}
.availability-form__modal .card {
  min-width: auto;
  width: 90%;
  max-width: 500px;
}

.page {
  width: 100%;
  background-color: white;
}
@media (min-width: 1310px) {
  .page {
    max-width: 1310px;
    margin: auto auto 0px auto;
    padding-bottom: 60px;
  }
}
@media (min-width: 1920px) {
  .page {
    max-width: 1500px;
    width: 1500px;
  }
}
@media (min-width: 1920px) {
  .page {
    margin: 0 0 50px 0;
  }
}

.product-detail {
  margin: 20px 15px 15px 15px;
}
@media (min-width: 1310px) {
  .product-detail {
    max-width: 1500px;
    margin: 0 auto 0 auto;
  }
}
.product-detail__text-center {
  text-align: center;
}
.product-detail__inline-flex {
  display: inline-flex;
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.product-detail__list-style-type {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #002b6d;
}
.product-detail__parameters-wrapper {
  position: relative;
  padding-left: 20px;
}
.product-detail__btn-blue {
  padding: 9px 24px;
  background-color: #002b6d;
  border-radius: 3px;
  color: white;
}
.product-detail__btn-blue:hover {
  color: white;
  text-decoration: underline;
}
.product-detail__btn-yellow {
  padding: 9px 24px;
  background-color: #fce300;
  border-radius: 3px;
  color: #002b6d;
  cursor: pointer;
}
.product-detail__btn-yellow:hover {
  color: #002b6d;
  text-decoration: underline;
}
.product-detail__heading {
  padding: 8px 11px;
  margin-bottom: 15px;
  background-color: #f8f8f8;
}
@media (min-width: 1310px) {
  .product-detail__heading {
    display: none;
  }
}
.product-detail__heading--desktop {
  display: none;
}
@media (min-width: 1310px) {
  .product-detail__heading--desktop {
    display: block;
  }
}
.product-detail__heading-text {
  margin-bottom: 0;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 1.375rem;
  font-weight: 700;
  color: #002b6d;
  text-align: left;
}
.product-detail__img {
  height: auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .product-detail__img {
    width: 45%;
  }
}
@media (min-width: 1310px) {
  .product-detail__img {
    width: 65%;
  }
}
@media (min-width: 1310px) {
  .product-detail__modal {
    min-width: 60% !important;
  }
}
@media (min-width: 768px) {
  .product-detail__data {
    display: flex;
  }
}
@media (min-width: 768px) {
  .product-detail__info {
    width: 55%;
    margin-left: 18px;
  }
}
@media (min-width: 1310px) {
  .product-detail__info {
    width: 35%;
  }
}
.product-detail__info-item {
  display: flex;
  margin-bottom: 10px;
}
.product-detail__info-key {
  width: 50%;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: #1d1d1d;
  font-size: 0.8125rem;
  color: #1d1d1d;
}
.product-detail__info-value {
  width: 50%;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
  color: #717171;
  text-align: right;
}
.product-detail__info-value--blue {
  color: #002b6d;
}
@media (min-width: 1310px) {
  .product-detail__info-value {
    text-align: left;
  }
}
.product-detail__stock-info {
  margin-bottom: 10px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 400;
  font-size: 0.8125rem;
  color: #84b518;
}
.product-detail__stock-info:hover .product-detail__stock-info-hint {
  position: absolute;
  display: block;
}
.product-detail__stock-info .product-detail__stock-info-hint {
  display: none;
  padding: 10px;
  background-color: #ffffff;
  z-index: 5;
}
.product-detail__warehouse-name {
  white-space: nowrap;
  color: #000;
}
.product-detail__warehouse-value {
  font-weight: 700;
  color: #002b6d;
}
.product-detail__warehouse {
  white-space: nowrap;
}
.product-detail__quantity {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  width: 82px;
}
.product-detail__quantity-input {
  width: 52px;
  padding: 11px 20px;
  color: #002b6d;
  border: 1px solid #bcbcbc;
}
.product-detail__quantity-plus, .product-detail__quantity-minus {
  position: absolute;
  right: 0;
  top: 0;
  height: 50%;
  width: 30px;
  border: 1px solid #bcbcbc;
  border-left: none;
  text-align: center;
  font-weight: #1d1d1d;
  cursor: pointer;
}
.product-detail__quantity-plus::before, .product-detail__quantity-plus::after, .product-detail__quantity-minus::before, .product-detail__quantity-minus::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1d1d1d;
}
.product-detail__quantity-plus::after, .product-detail__quantity-minus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.product-detail__quantity-minus {
  top: 50%;
  border-top: none;
}
.product-detail__quantity-minus::before {
  display: none;
}
.product-detail__form {
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .info {
    margin: 50px 15px 15px 15px;
  }
}
@media (min-width: 1310px) {
  .info {
    max-width: 1500px;
    margin: 50px auto 15px auto;
  }
}

.document-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 15px 0;
}

.document-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  background-color: #f8f9fa;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
  border: 1px solid #e9ecef;
}

.document-item:hover {
  background-color: #e9ecef;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.document-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 4px;
  background-color: #0056b3;
  color: white;
}

.document-icon i {
  font-size: 18px;
}

.document-info {
  display: flex;
  flex-direction: column;
}

.document-type {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 3px;
}

.document-name {
  font-weight: 500;
}

.product__advantages {
  position: relative;
  max-height: 150px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.product__advantages.expanded {
  max-height: 2000px;
}

.product__tab-heading {
  font-weight: bold;
  margin-bottom: 10px;
}

.load-more-btn {
  display: block;
  margin-top: 10px;
  padding: 8px 15px;
  padding-left: 0px;
  cursor: pointer;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.expanded .fade-overlay {
  opacity: 0;
}

.productp__manufacturer {
  width: 250px;
  height: 50px;
  margin-top: 20px;
  margin-right: 16px;
  overflow: hidden;
}
.productp__manufacturer img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .video-container {
    flex-direction: column;
  }
}
.video-container.video-1 {
  justify-content: center;
}
.video-container.video-1 .video-item {
  width: 100%;
  height: 100%;
}
.video-container.video-1 .video-item iframe {
  width: 100%;
  height: 600px;
}
@media (max-width: 1200px) {
  .video-container.video-1 .video-item iframe {
    height: 550px;
  }
}
@media (max-width: 1000px) {
  .video-container.video-1 .video-item iframe {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .video-container.video-1 .video-item iframe {
    height: 450px;
  }
}
@media (max-width: 600px) {
  .video-container.video-1 .video-item iframe {
    height: 400px;
  }
}
@media (max-width: 400px) {
  .video-container.video-1 .video-item iframe {
    height: 350px;
  }
}
.video-container.video-2 {
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .video-container.video-2 {
    justify-content: center;
  }
}
.video-container.video-2 .video-item {
  flex: 1;
  max-width: 48%;
}
@media (max-width: 1000px) {
  .video-container.video-2 .video-item {
    max-width: 97%;
  }
}
.video-container.video-2 .video-item iframe {
  width: 100%;
  height: 400px;
}

.category {
  padding: 20px 15px 75px 15px;
}
@media (min-width: 1310px) {
  .category {
    display: flex;
    padding: 0;
  }
}
.category__content {
  position: relative;
}
@media (min-width: 1310px) {
  .category__content {
    padding: 0px 15px 20px;
    width: 100%;
  }
}
.category__content:after {
  display: none;
  position: absolute;
  height: 100%;
  content: "";
  background-color: #f3f5f8;
  top: 0;
  left: -215px;
  width: 215px;
}
@media (min-width: 1310px) {
  .category__content:after {
    display: block;
  }
}
.category__heading {
  margin-bottom: 15px;
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-weight: 700;
  font-size: 1.375rem;
  color: #002b6d;
}
@media (min-width: 1310px) {
  .category__heading {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
  }
}
.category h1.category__heading {
  margin-bottom: 15px;
  font-size: 1.8rem;
  text-align: left;
}
.category__manufacturer-logo {
  max-height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.category__description {
  margin-bottom: 35px;
  font-size: 0.8125rem;
  color: #717171;
}
@media (min-width: 1310px) {
  .category__description {
    margin-bottom: 20px;
  }
}
.category__filter-menu {
  display: flex;
  align-items: center;
  padding: 0 13px;
  margin-top: 20px;
  height: 40px;
  background-color: #114a94;
  color: #ffffff;
  cursor: pointer;
}
@media (min-width: 1310px) {
  .category__filter-menu {
    display: none;
  }
}
.category__subcategories {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.category__subcategory {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  min-width: calc(50% - 10px);
  margin-right: 5px;
  background-color: #ecf5fe;
  font-size: 0.8125rem;
  color: #002b6d;
  border: 1px solid #707070;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .category__subcategory {
    min-width: 195px;
  }
}
.category__subcategory:hover {
  text-decoration: none;
}
.category__subcategory-image {
  display: none;
  margin-right: 15px;
  width: 35px;
  height: 30px;
}
@media (min-width: 768px) {
  .category__subcategory-image {
    display: inline-block;
  }
}
.category__subcategory-img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
.category__filter-menu-img {
  display: inline-block;
  margin-right: 10px;
}
.category__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-items: stretch;
  align-items: stretch;
  margin: 15px 0 40px 0;
}
@media screen and (max-width: 500px) {
  .category__items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .category__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1310px) {
  .category__items {
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}
.category__items.rows {
  grid-template-columns: 1fr;
  grid-row-gap: 0;
  grid-column-gap: 0;
}
.category__more {
  display: flex;
  justify-content: center;
}

.items {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
@media (min-width: 1310px) {
  .items {
    display: none;
  }
}
.items__count {
  font-size: 0.875rem;
}
.items__grid, .items__rows {
  display: inline-block;
  cursor: pointer;
}
.items__grid.active {
  background-image: url(../img/grid-selected.png);
}
.items__rows.active {
  background-image: url(../img/rows-selected.png);
}
.items__grid {
  margin-right: 5px;
  width: 26px;
  height: 26px;
  background-image: url(../img/grid.png);
}
.items__rows {
  width: 27px;
  height: 26px;
  background-image: url(../img/rows.png);
}

.reclamations {
  padding: 25px;
}
@media (min-width: 1310px) {
  .reclamations {
    padding: 50px;
  }
}
.reclamations__heading {
  font-family: "Roboto", "Adjusted Arial Fallback";
  margin-bottom: 20px;
  font-size: 1.25rem;
}
.reclamations__paragraph {
  font-family: "Roboto", "Adjusted Arial Fallback";
  font-size: 1rem;
  margin-bottom: 20px;
}
.reclamations__buttons-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .reclamations__buttons-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.reclamations__file-input {
  position: absolute;
  visibility: hidden;
  width: auto !important;
}
.reclamations__button {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 144px;
  margin-bottom: 20px;
  padding: 13px 43px;
  height: 41px;
  color: white;
  background-color: #002b6d;
  cursor: pointer;
}
@media (min-width: 768px) {
  .reclamations__button {
    margin-bottom: 0;
  }
}
.reclamations__error {
  font-family: "Roboto", "Adjusted Arial Fallback";
  color: red;
  font-size: 0.875rem;
  font-weight: 700;
}

.lSSlideOuter {
  position: relative;
}

.lSPager.lSpg {
  position: absolute !important;
  right: 5px;
  top: 5px;
}
@media screen and (min-width: 768px) {
  .lSPager.lSpg {
    right: 20px;
    top: 20px;
  }
}
.lSPager.lSpg li a {
  width: 10px !important;
  height: 10px !important;
  border-radius: 0 !important;
  background-color: #002b6d !important;
  z-index: 5 !important;
}
@media screen and (min-width: 768px) {
  .lSPager.lSpg li a {
    width: 15px !important;
    height: 15px !important;
  }
}
.lSPager.lSpg li.active a {
  background-color: #fce300 !important;
}

.mid-slider {
  overflow: hidden;
}

.mid-slider .lSPager.lSpg {
  position: static !important;
  margin-top: 10px !important;
}

.homepage .sorting__view {
  margin-left: auto;
}
.homepage__banner {
  padding: 10px 55px 10px 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(to right, #ffffff, #a1b1c9);
}
.homepage__banner:hover {
  text-decoration: unset;
}
.homepage__banner p {
  font-size: 28px;
  font-weight: 900;
  color: #1d1d1d;
  line-height: 1.25;
  text-align: center;
}
.homepage__banner-items {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.homepage__banner-btn {
  background-color: #0094e7;
  font-size: 16px;
  display: flex;
  padding-left: 41px;
  padding-right: 36px;
  height: 45px;
  color: white;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  gap: 5px;
  cursor: pointer;
  transition: 0.3s;
}
.homepage__banner-btn:hover {
  text-decoration: underline;
}
.homepage__slide {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}
.homepage__slide--clickable {
  cursor: pointer;
}
.homepage__slide a {
  height: 100%;
}
.homepage__slide picture {
  height: 100%;
}
.homepage__slide img {
  width: 100%;
}
.homepage__slide h3 {
  position: absolute;
  color: white;
  padding: 40px;
}
.homepage__banners {
  display: none;
}
@media (min-width: 1310px) {
  .homepage__banners {
    display: block;
  }
}
.homepage__banners-main {
  height: 340px;
}
.homepage__banners-main div {
  height: 100%;
}
.homepage__banners-main img {
  height: 100% !important;
  width: 100%;
}
.homepage__banners-other {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-top: 5px;
  height: 200px;
}
.homepage__banners-other img {
  height: 100%;
}
.homepage__banners-other h3 {
  padding: 10px;
}
.homepage__mobile-slider {
  overflow: hidden;
}
@media (min-width: 1310px) {
  .homepage__mobile-slider {
    display: none;
  }
}

.features-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  border-radius: 8px;
  margin: 0 auto;
}
.features-container .feature-item {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  justify-content: center;
}
.features-container .feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 2px;
  background-color: #D4D4D4;
}
@media (max-width: 768px) {
  .features-container .feature-item:not(:last-child)::after {
    display: none;
  }
}
.features-container .feature-icon {
  height: auto;
  margin-right: 15px;
}
.features-container .feature-text {
  font-size: 16px;
  color: #002b6d;
  font-weight: 500;
}
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    padding: 15px;
    width: 320px;
    margin: 0 auto;
  }
  .features-container .feature-item {
    width: 100%;
    padding: 15px 0;
    justify-content: center;
    text-align: center;
  }
  .features-container .feature-item:not(:last-child)::after {
    width: 80%;
    height: 1px;
    bottom: 0;
    top: auto;
    right: 10%;
    transform: none;
  }
}

/* Responsive adjustments */
.about__actuality-container {
  width: 100%;
  margin: 0 auto;
}
.about__actuality-container h1, .about__actuality-container h2 {
  color: #003366;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 19px;
  text-align: left;
}
.about__actuality-container .news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .about__actuality-container .news-grid {
    flex-direction: column;
  }
}
.about__actuality-container .featured-news {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  border-right: 2px solid #e0e0e0;
  padding-right: 20px;
}
.about__actuality-container .featured-image {
  width: 470px;
  height: auto;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .about__actuality-container .featured-image {
    width: 320px;
  }
}
.about__actuality-container .news-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 90px;
}
@media (max-width: 768px) {
  .about__actuality-container .news-column {
    padding-left: 0;
  }
}
.about__actuality-container .news-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .about__actuality-container .news-row {
    flex-direction: column;
  }
}
.about__actuality-container a.news-item {
  flex: 1;
  min-width: 250px;
  padding-bottom: 20px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .about__actuality-container a.news-item {
    width: 320px;
  }
}
.about__actuality-container .news-title {
  width: 75%;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
.about__actuality-container .news-description {
  opacity: 0.8;
  color: #000;
  width: 70%;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.about__actuality-container .news-date {
  display: inline-block;
  background-color: #fce300;
  color: #636706;
  padding: 3px 6px;
  font-size: 14px;
  font-weight: 400;
}
.about__actuality-container .divider {
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .about__actuality-container .divider {
    display: none;
  }
}

.btn--primary.about__button {
  background-color: #0f4a93;
  width: 65px;
  height: 34px;
  border-radius: 5px;
  padding: 0;
  min-width: auto;
  margin-top: 27px;
  border: 2px solid #0f4a93;
}

.about__description p {
  font-size: 13px;
  margin-bottom: 19px;
  color: #000;
  opacity: 0.6;
}

.homepage .product-list:before {
  display: none;
}

.homepage .product-list__heading {
  background-color: transparent;
  min-height: 40px !important;
  height: auto !important;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.homepage .product-list__heading:after {
  display: none;
}

.order-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 500px;
  padding: 20px;
  margin-top: 25px;
  border: 1px solid;
}
@media (max-width: 768px) {
  .order-wrapper {
    min-width: 300px;
  }
}
.order-wrapper--center {
  justify-content: center;
}
.order-wrapper__btn {
  margin-left: 40px;
}
.order-wrapper__bold {
  font-weight: bold;
  color: #002b6d;
}

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

.porovnavac .col {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.porovnavac .col:not(:first-child) {
  width: 300px;
}
.porovnavac .gray {
  color: #d5d5d5 !important;
}
.porovnavac .hidden-parameter {
  display: none;
}
.porovnavac .lists {
  left: auto;
  right: 0;
}
.porovnavac__content {
  display: none;
  overflow-x: auto;
  overflow-y: hidden;
}
.porovnavac__content.active {
  display: flex;
}
.porovnavac__content .col:last-child .porovnavac__table--heading {
  border-right: 0.1px solid #707070;
}
.porovnavac__content .col:last-child .porovnavac__card--body > p.porovnavac__table--item {
  border-right: unset;
}
.porovnavac__content .col:first-child {
  min-width: 300px;
}
.porovnavac__content .col:first-child .porovnavac__card {
  width: 100%;
}
.porovnavac__content .col:first-child .porovnavac__card--header {
  margin-bottom: 12px;
}
.porovnavac__content .col:not(:first-child) .porovnavac__table--item {
  justify-content: center;
}
.porovnavac__content .col:not(:first-child) .porovnavac__card--body > p {
  border-right: 0.1px solid #707070;
}
.porovnavac__content .col:not(:first-child) .porovnavac__card--header {
  padding-left: 63px;
  padding-right: 63px;
}
.porovnavac__dropdown-wrapper {
  position: relative;
  margin-bottom: 25px;
}
.porovnavac__dropdown-icon {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 15px;
  height: 150px;
  cursor: pointer;
  transform: translateY(-50%);
}
.porovnavac__dropdown-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.porovnavac__dropdown-icon.show {
  display: flex;
  justify-items: center;
}
.porovnavac__dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  background-color: #f3f5f8;
  right: 0;
  min-width: 50%;
  z-index: 10;
}
.porovnavac__dropdown.open {
  display: flex;
}
.porovnavac__dropdown span {
  text-align: right;
  padding: 15px 20px;
  cursor: pointer;
}
.porovnavac__head {
  height: 50px;
  background-color: #f3f5f8;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.porovnavac__head .hidden {
  display: none;
}
.porovnavac__head span {
  cursor: pointer;
}
.porovnavac__head a,
.porovnavac__head span,
.porovnavac__head p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 8px;
  padding: 0 24px;
}
.porovnavac__head a button,
.porovnavac__head span button,
.porovnavac__head p button {
  height: 100%;
}
.porovnavac__head a button img,
.porovnavac__head span button img,
.porovnavac__head p button img {
  transition: 0.3s;
}
.porovnavac__head a button:hover img,
.porovnavac__head span button:hover img,
.porovnavac__head p button:hover img {
  transform: scale(1.1);
}
.porovnavac__head a.active,
.porovnavac__head span.active,
.porovnavac__head p.active {
  background-color: #e1e1e1;
}
.porovnavac__card--values .porovnavac__table--heading {
  border-left: unset;
}
.porovnavac__card--remove {
  display: flex;
  position: relative;
  transition: 0.3s;
}
.porovnavac__card--remove:hover {
  transform: scale(1.1);
}
.porovnavac__card--hearth, .porovnavac__card--buy {
  position: relative;
}
.porovnavac__card--hearth img, .porovnavac__card--buy img {
  transition: 0.3s;
}
.porovnavac__card--hearth:hover img, .porovnavac__card--buy:hover img {
  transform: scale(1.1);
}
.porovnavac__card--hearth {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
}
.porovnavac__card--hearth img {
  height: 15px;
}
.porovnavac__card--buy {
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.porovnavac__card--buy img {
  height: 21px;
}
.porovnavac__card--header {
  height: 430px;
  box-sizing: border-box;
  margin-bottom: 43px;
}
.porovnavac__card--header p {
  line-height: 1;
}
.porovnavac__card--header .porovnavac__card--thumb {
  display: flex;
  width: 208px;
  margin: 0 auto;
  margin-top: 22px;
  margin-bottom: 8px;
}
.porovnavac__card--header.buttons {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: auto;
}
.porovnavac__card--body {
  position: relative;
}
.porovnavac__card--body > p {
  height: 40px;
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding-left: 10px;
  box-sizing: border-box;
}
.porovnavac__table--heading {
  border: 0.1px solid #707070;
  font-size: 14px;
  background-color: #f8f8f8;
  border-radius: unset;
  font-weight: bold;
  border-right: unset;
}
.porovnavac__table--heading:not(:first-child) {
  border-top: unset;
}
.porovnavac__table--item {
  border-bottom: 0.1px solid #707070;
  font-size: 14px;
  font-weight: 400;
}
.porovnavac__table--item .red {
  color: #002b6d;
}
.porovnavac__table--item .gray {
  color: #9c9c9c;
}
.porovnavac__product--info {
  display: flex;
}
.porovnavac__product--info .product__prices {
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.porovnavac__product--info .product__prices .flex {
  align-items: center;
}
.porovnavac__product--info .product__prices--nodph {
  color: #9c9c9c;
  font-size: 10px;
  font-weight: 400;
}

.remove--button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  margin-top: 21px;
}

@media screen and (max-width: 800px) {
  .manufacturers-page {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
}
.manufacturers-page .top {
  background-color: #f8f8f8;
  padding-bottom: 108px;
}
@media (min-width: mobile) {
  .manufacturers-page .top {
    padding-bottom: 124px;
  }
}
.manufacturers-page .title {
  margin-bottom: 26px;
  font-size: 2.375rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #002b6d;
  text-align: center;
}
.manufacturers-page .description {
  margin-bottom: 43px;
  color: #717171;
  text-align: center;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .manufacturers-page .description {
    width: 610px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1310px) {
  .manufacturers-page .description {
    width: 750px;
  }
}
.manufacturers-page .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.manufacturers-page .tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 60px;
  color: #717171;
  border-bottom: 1px solid #dedede;
  cursor: pointer;
}
.manufacturers-page .tabs__item.active, .manufacturers-page .tabs__item:hover {
  color: #002b6d;
  font-weight: bold;
  border-bottom: 3px solid #fce300;
}

.manufacturers {
  margin-top: -70px;
  padding-bottom: 16px;
}
@media (min-width: mobile) {
  .manufacturers {
    padding-bottom: 60px;
  }
}
.manufacturers__item {
  display: block;
  height: 200px;
  margin-bottom: 10px;
  text-decoration: none !important;
  transition: all 200ms;
}
.manufacturers__top {
  position: relative;
  height: 135px;
  background-color: white;
  border: 1px solid #dedede;
}
.manufacturers__top img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 100px;
  transform: translate(-50%, -50%);
}
.manufacturers__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  font-weight: bold;
  color: #002b6d;
  background-color: #f3f5f8;
  border: 1px solid #dedede;
  border-top: none;
  text-align: center;
  font-size: 0.875rem;
}

.password__heading {
  margin-bottom: 30px;
}
.password__submit {
  width: 60px !important;
}
.password__success {
  padding: 8px 15px;
  max-width: 422px;
  background-color: rgb(210, 240, 210);
  border: 1px solid rgb(75, 136, 75);
  color: rgb(75, 136, 75);
}

.career__double-input {
  display: grid;
  gap: 10px;
}
@media (min-width: 768px) {
  .career__double-input {
    grid-template-columns: 2fr 1fr;
    gap: 10px;
  }
}
.career__file-upload {
  display: none;
}
.career__file-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36px;
  margin-bottom: 0;
  color: #fce300;
  font-weight: bold;
  font-size: 0.8125rem;
  background-color: #002b6d;
  cursor: pointer;
}
.career__file-button img {
  margin-right: 15px;
}
.career__error {
  color: red;
  font-weight: bold;
  font-size: 0.75rem;
}
.career__success {
  font-size: 0.8125rem;
  font-weight: bold;
  color: green;
  padding: 8px 15px;
  background-color: rgb(225, 252, 225);
  border: 1px solid green;
  margin-bottom: 15px;
}

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

.section__heading {
  font-size: 20px;
  font-weight: bold;
  color: #002b6d;
}

.pointer {
  cursor: pointer;
}

/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/
.lSSlideOuter {
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lightSlider:before,
.lightSlider:after {
  content: " ";
  display: table;
}

.lightSlider {
  overflow: hidden;
  margin: 0;
}

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

.lSSlideWrapper > .lightSlider:after {
  clear: both;
}

.lSSlideWrapper .lSSlide {
  transform: translate(0px, 0px);
  -webkit-transition: all 1s;
  transition-property: transform, height;
  transition-duration: inherit !important;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade {
  position: relative;
}

.lSSlideWrapper .lSFade > * {
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 9;
  margin-right: 0;
  width: 100%;
}

.lSSlideWrapper.usingCss .lSFade > * {
  opacity: 0;
  transition-delay: 0s;
  transition-duration: inherit !important;
  transition-property: opacity;
  transition-timing-function: inherit !important;
}

.lSSlideWrapper .lSFade > *.active {
  z-index: 10;
}

.lSSlideWrapper.usingCss .lSFade > *.active {
  opacity: 1;
}

/** /!!! End of core css Should not edit !!!/**/
/* Pager */
.lSSlideOuter .lSPager.lSpg {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
}

.lSSlideOuter .lSPager.lSpg > li a {
  background-color: #222222;
  border-radius: 30px;
  display: inline-block;
  height: 8px;
  overflow: hidden;
  text-indent: -999em;
  width: 8px;
  position: relative;
  z-index: 99;
  transition: all 0.5s linear 0s;
}

.lSSlideOuter .lSPager.lSpg > li:hover a,
.lSSlideOuter .lSPager.lSpg > li.active a {
  background-color: #428bca;
}

.lSSlideOuter .media {
  opacity: 0.8;
}

.lSSlideOuter .media.active {
  opacity: 1;
}

/* End of pager */
/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
  list-style: none outside none;
  padding-left: 0;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0px);
  -moz-transform: translate3d(0px, 0px, 0px);
  -ms-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate3d(0px, 0px, 0px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lSSlideOuter .lSPager.lSGallery li {
  overflow: hidden;
  transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
  border-radius: 5px;
}

.lSSlideOuter .lSPager.lSGallery img {
  display: block;
  height: auto;
  max-width: 100%;
}

.lSSlideOuter .lSPager.lSGallery:before,
.lSSlideOuter .lSPager.lSGallery:after {
  content: " ";
  display: table;
}

.lSSlideOuter .lSPager.lSGallery:after {
  clear: both;
}

/* End of Gallery*/
/* slider actions */
.lSAction > a {
  width: 32px;
  display: block;
  top: 50%;
  height: 32px;
  background-image: url("../img/controls.png");
  cursor: pointer;
  position: absolute;
  z-index: 99;
  margin-top: -16px;
  opacity: 0.5;
  transition: opacity 0.35s linear 0s;
}

.lSAction > a:hover {
  opacity: 1;
}

.lSAction > .lSPrev {
  background-position: 0 0;
  left: 10px;
}

.lSAction > .lSNext {
  background-position: -32px 0;
  right: 10px;
}

.lSAction > a.disabled {
  pointer-events: none;
}

.cS-hidden {
  height: 1px;
  opacity: 0;
  filter: alpha(opacity=0);
  overflow: hidden;
}

/* vertical */
.lSSlideOuter.vertical {
  position: relative;
}

.lSSlideOuter.vertical.noPager {
  padding-right: 0px !important;
}

.lSSlideOuter.vertical .lSGallery {
  position: absolute !important;
  right: 0;
  top: 0;
}

.lSSlideOuter.vertical .lightSlider > * {
  width: 100% !important;
  max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
  left: 50%;
  margin-left: -14px;
  margin-top: 0;
}

.lSSlideOuter.vertical .lSAction > .lSNext {
  background-position: 31px -31px;
  bottom: 10px;
  top: auto;
}

.lSSlideOuter.vertical .lSAction > .lSPrev {
  background-position: 0 -31px;
  bottom: auto;
  top: 10px;
}

/* vertical */
/* Rtl */
.lSSlideOuter.lSrtl {
  direction: rtl;
}

.lSSlideOuter .lightSlider,
.lSSlideOuter .lSPager {
  padding-left: 0;
  list-style: none outside none;
}

.lSSlideOuter.lSrtl .lightSlider,
.lSSlideOuter.lSrtl .lSPager {
  padding-right: 0;
}

.lSSlideOuter .lightSlider > *,
.lSSlideOuter .lSGallery li {
  float: left;
}

.lSSlideOuter.lSrtl .lightSlider > *,
.lSSlideOuter.lSrtl .lSGallery li {
  float: right !important;
}

/* Rtl */
@keyframes rightEnd {
  0% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  100% {
    left: 0;
  }
}
@keyframes topEnd {
  0% {
    top: 0;
  }
  50% {
    top: -15px;
  }
  100% {
    top: 0;
  }
}
@keyframes leftEnd {
  0% {
    left: 0;
  }
  50% {
    left: 15px;
  }
  100% {
    left: 0;
  }
}
@keyframes bottomEnd {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -15px;
  }
  100% {
    bottom: 0;
  }
}
.lSSlideOuter .rightEnd {
  animation: rightEnd 0.3s;
  position: relative;
}

.lSSlideOuter .leftEnd {
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .rightEnd {
  animation: topEnd 0.3s;
  position: relative;
}

.lSSlideOuter.vertical .leftEnd {
  animation: bottomEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .rightEnd {
  animation: leftEnd 0.3s;
  position: relative;
}

.lSSlideOuter.lSrtl .leftEnd {
  animation: rightEnd 0.3s;
  position: relative;
}

/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

body {
  margin: 0;
  min-height: 99vh;
}

.background__gray--linear {
  background: linear-gradient(164deg, #ffffff 0%, #e7e7e7 100%);
}
.background__gray--linear .pagecontent {
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .background__gray--linear .pagecontent {
    padding-bottom: 0;
  }
}

a:hover {
  text-decoration: none;
}

.page-with-banners {
  width: 100%;
  box-shadow: inset 0px 7px 9px 0px rgba(0, 0, 0, 0.15);
  background-color: white;
  padding-top: 20px;
}
@media (min-width: 1912px) {
  .page-with-banners {
    display: grid;
    justify-content: center;
  }
}

.page-with-banners__banner-left,
.page-with-banners__banner-right {
  display: none;
}
@media (min-width: 1912px) {
  .page-with-banners__banner-left,
  .page-with-banners__banner-right {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
  }
}

.page {
  background-color: white;
}

textarea {
  font-family: Roboto;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

.grid {
  display: grid;
}

.dg-2 {
  grid-template-columns: 1fr 1fr;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

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

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

.back {
  font-size: 14px;
}

@media screen and (min-width: 1024px) {
  .mobile--show {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .desktop--show {
    display: none !important;
  }
}
.underline {
  text-decoration: underline;
}

.underline2 {
  position: relative;
  padding-left: 4px;
  padding-right: 4px;
}
.underline2:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -2px;
  right: 0;
  background-color: #114a94;
}

.pagecontent {
  background-color: white;
  margin: 0 auto;
  margin-bottom: 80px;
  min-height: 50vh;
}
@media screen and (max-width: 1024px) {
  .pagecontent {
    margin-bottom: 0;
    padding-bottom: 28px;
  }
}

.container {
  max-width: 1500px;
  padding: 10px;
  margin: 0 auto;
  padding-bottom: 80px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 10px;
  }
}

.homepage.container {
  padding-bottom: 0px;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}
.flex.center {
  justify-content: center;
}
.flex.flexend {
  justify-content: flex-end;
}
.flex.between {
  justify-content: space-between;
}

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

.gap-30 {
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .gap-30 {
    gap: 20px;
  }
}
.gap-13 {
  display: grid;
  gap: 13px;
}
.gap-10 {
  gap: 10px;
}
.gap-16 {
  display: grid;
  gap: 16px;
}
.gap-5 {
  gap: 5px;
}

.h1 {
  font-size: 30px;
  color: #002b6d;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .h1 {
    font-size: 18px;
  }
}

.h2 {
  font-size: 25px;
  color: #002b6d;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .h2 {
    font-size: 18px;
  }
}

.h3 {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .desktop-show {
    display: none !important;
  }
}

@media screen and (min-width: 800px) {
  .desktop-hide {
    display: none !important;
  }
}

.wrap {
  flex-wrap: wrap;
}

body {
  min-height: 101vh;
}

.top-info-banner {
  padding: 9px 5px 9px 5px;
  text-align: center;
  letter-spacing: 2px;
  color: #002b6d;
  font-weight: bold;
  background-color: #fce300;
}

.header__submenu {
  display: flex;
  justify-content: space-between;
  background-color: white;
}
.header__submenu .flex {
  background-color: #fce300;
  padding-left: 10px;
  position: relative;
  overflow: hidden;
  padding-right: 50px;
  -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.header__submenu-item {
  padding: 8px 22px 8px 22px;
  display: flex;
  height: 100%;
  gap: 5px;
  align-items: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.header__submenu-item:hover {
  text-decoration: unset !important;
  background-color: rgba(255, 255, 255, 0.68);
}
.header__submenu-item img {
  fill: red;
}
.header__submenu-item.active {
  background-color: white;
}
.header__submenu-item--left {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 400px;
  padding: 5px 22px;
  font-size: 0.9375rem;
  background-color: rgba(255, 255, 255, 0.68);
  border-left: 4px solid #002b6d;
  border-right: 4px solid #002b6d;
}
.header__submenu-item--left img {
  margin-right: 15px;
  filter: invert(12%) sepia(67%) saturate(4122%) hue-rotate(204deg) brightness(85%) contrast(109%);
}
@media screen and (max-width: 1309px) {
  .header__submenu .flex {
    display: none;
  }
}

.header__yellow-nav {
  max-height: 64.5px;
}

button {
  border: unset;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

.btn--icon {
  border: unset;
  outline: none;
  background-color: transparent;
}
.btn--buy {
  width: 50px;
  height: 50px;
  transition: 0.4s;
  position: relative;
  margin-right: -12px;
}
.btn--buy:hover {
  transform: scale(1.1);
}
.btn--buy img {
  width: 24px;
}
.btn--porovnavac {
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1d;
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  border: 0.1px solid #707070;
  padding-left: 16px;
  height: 58px;
  padding-right: 25px;
  box-sizing: border-box;
  width: auto;
  max-width: 106px;
  transition: 0.3s;
}
.btn--porovnavac:hover {
  color: #002b6d;
}
.btn--porovnavac--large {
  width: 100%;
  max-width: 269px;
}
.btn--unactive {
  background-color: #f9fafa;
  padding-right: 31px;
  padding-left: 17px;
  height: 42px;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
  color: #bcbcbc;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.btn--secondary {
  background-color: #fce300;
  padding-left: 47.5px;
  padding-right: 47.5px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  -webkit-clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
  transition: 0.4s;
}
.btn--secondary:hover {
  padding-left: 64px !important;
}
.btn--primary {
  background-color: #002b6d;
  min-width: 144px;
  padding: 13px 43px;
  box-sizing: border-box;
  height: 41px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  color: white;
  border: 2px solid #002b6d;
}
.btn--primary:hover {
  text-decoration: unset;
  color: #114a94;
  background-color: transparent;
}
.btn--primary--two {
  box-sizing: border-box;
  height: 45px;
  width: auto;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: center;
  color: white;
  background-color: #114a94;
  padding-left: 35px;
  padding-right: 35px;
}
.btn--green {
  background-color: #84b518;
  min-width: 144px;
  box-sizing: border-box;
  height: 41px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding-left: 17px;
  padding-right: 17px;
  gap: 20px;
}
.btn--import {
  background-color: #f3f5f8;
  height: 48px;
  padding-left: 29px;
  padding-right: 29px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #002b6d;
}
.btn--yellow {
  right: 3px;
  top: -55px;
  position: relative !important;
  padding: 13px 30px;
  font-family: Roboto;
  font-size: 0.8125rem;
  -webkit-clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(10% 1%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #fce300;
  font-size: 16px;
  font-weight: bold;
}
.btn--yellow img {
  height: 13px;
  position: relative;
  top: 1px;
  margin-left: 7px;
}
.btn--checkbox {
  background-color: #114a94;
  min-height: 45px;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-decoration: underline;
}
.btn--move {
  background-color: #114a94;
  color: white;
  font-size: 13px;
  padding: 12px 23px;
}
.btn--buy-small {
  font-size: 13px;
  color: white;
  background-color: #84b518;
  padding: 12px 18px;
}
.btn--submit {
  height: 56px;
}
.btn--transparent {
  background-color: transparent;
  min-width: 144px;
  padding: 13px 43px;
  box-sizing: border-box;
  height: 41px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002b6d;
  border: 1px solid rgba(186, 186, 186, 0.3725490196);
  box-sizing: border-box;
  cursor: pointer;
}
.btn--buy-large {
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  font-weight: bold;
  font-size: 13px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 20px;
  gap: 10px;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
}
.btn--buy-large:hover {
  transform: none;
}
.btn--dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  background-color: white;
}
.btn--dropdown img {
  width: 12px;
}
.btn--save {
  background-color: #84b518;
  font-size: 13px;
  color: white;
  padding: 12px 60px;
}
.btn--close {
  background-color: #bcbcbc;
  font-size: 13px;
  color: white;
  padding: 12px 60px;
}
.btn--gray {
  background-color: #f3f5f8;
  font-size: 13px;
  padding: 12px 18px;
  color: #002b6d;
}

.input {
  background-color: #f7f7f7;
  height: 36px;
  display: flex;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 13px;
  font-weight: 400;
  box-sizing: border-box;
  border: none;
}
.input::-moz-placeholder {
  color: #c4c4c4;
}
.input::placeholder {
  color: #c4c4c4;
}
.input:focus {
  outline: none;
}
.input--select {
  height: 45px;
  border: 1px solid rgba(186, 186, 186, 0.3725490196);
  border-radius: 0;
  background-color: #f7f7f7;
  color: #3a3a3a;
  font-size: 14px;
  width: 422px;
}
.input label {
  font-weight: 500;
  font-size: 14px;
  color: #002b6d;
}
.input__group {
  gap: 14px;
  display: grid;
}
.input__group input,
.input__group select {
  width: 100%;
}
.input__group--small {
  gap: 8px;
}
.input--searchbar {
  background-color: transparent;
  color: #717171;
  box-sizing: border-box;
  border: 0.2px solid #002b6d;
  padding-left: 33px;
  width: 100%;
  padding-right: 8px;
  height: 42px;
  max-width: 365px;
  display: flex;
  align-items: center;
}

.input-wrapper {
  display: block;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 801px) {
  .input-wrapper {
    max-width: 422px;
  }
}
.input-wrapper.input-error::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  right: 10px;
  top: 16px;
  background-image: url(../img/red-cross.png);
  background-repeat: no-repeat;
}
.input-wrapper.input-error .input {
  border: 1px solid red;
}
.input-wrapper.input-ok::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 10px;
  right: 10px;
  top: 17px;
  background-image: url(../img/input-ok.png);
  background-repeat: no-repeat;
}

.input__searchbar {
  max-width: 365px;
  width: 100%;
}

input[type=checkbox] {
  height: 14px;
  width: 14px;
  box-sizing: border-box;
  background-color: white;
}

.input__searchbar {
  position: relative;
}
.input__searchbar:after {
  position: absolute;
  content: "";
  height: 14.5px;
  width: 14.5px;
  left: 10px;
  height: 100%;
  top: 0;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  background-image: url("/img/icons/search-blue.svg");
}

.check--required {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  font-size: 14px;
  align-items: flex-end;
  color: #717171;
  align-items: center;
}
.check--required label {
  margin-bottom: 0 !important;
}
.check--required input {
  width: 20px;
}

textarea.input {
  max-height: unset;
  height: auto;
  padding-top: 26px;
  padding-bottom: 26px;
  height: 139px;
}

.paginator {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .paginator {
    width: 100%;
  }
}
.paginator p {
  color: #717171;
  font-size: 13px;
  font-weight: 400;
}
.paginator__status {
  display: flex;
  align-items: center;
  gap: 19px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .paginator__status p {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .paginator__status {
    margin-right: auto;
  }
}
.paginator__status:after {
  position: absolute;
  top: 13px;
  right: 4px;
  background-color: white;
  content: "";
  width: 15px;
  height: 15px;
  z-index: 0;
  background-image: url("/img/icons/arrow-down.svg");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.paginator__status .select {
  height: 42px;
  width: 58px;
  border: 0.1px solid #707070;
  box-sizing: border-box;
  padding-left: 14px;
  color: #002b6d;
}
.paginator__location {
  margin-left: 27px;
  margin-right: 51px;
}
.paginator__buttons button {
  background-color: #002b6d;
  background-image: url("/img/icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 42px;
  width: 47px;
  opacity: 0.66;
}
.paginator__buttons button.active {
  opacity: 1;
}

.paginator--prev {
  transform: rotate(180deg);
}

.product {
  width: 98%;
  padding: 30.5px 10px 18.5px 10px;
  box-sizing: border-box;
  margin: 5px 5px;
  border-right: 1px solid rgba(186, 186, 186, 0.3725490196);
  border-bottom: 1px solid rgba(186, 186, 186, 0.3725490196);
  position: relative;
  box-shadow: 1px 7px 16px 4px #dedede;
}
@media (min-width: 768px) {
  .product__tab-two-columns {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 100px;
  }
}
.product__tab-heading {
  text-transform: uppercase;
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .product__tab-heading {
    margin-top: 0;
  }
}
.product:hover * {
  text-decoration: none !important;
}
.product:hover .product__text--price,
.product:hover .product__text--dph {
  color: #002b6d;
}
.product__prices--price {
  color: #002b6d;
  font-size: 16px;
}
.product__prices--dph {
  font-size: 10px;
  margin-left: 6px;
  color: #1d1d1d;
}
.product--category {
  font-weight: 400;
  font-size: 12px;
  margin-top: 12px;
  color: #9c9c9c;
  text-transform: uppercase;
}
.product--name {
  font-size: 14px;
  margin-top: 8px;
  color: #1d1d1d;
  font-weight: 400;
}
.product .not--row {
  display: none !important;
}
.product__thumb {
  display: flex;
  position: relative;
  height: 170px;
  justify-content: center;
  align-items: center;
}
.product__thumb:hover img {
  transform: scale(1.05);
}
.product__thumb img {
  transition: 0.3s;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product__comparison-line-display {
  display: none;
}
.product__button {
  display: block;
  padding: 5px 8px;
}
.product__button:hover {
  color: white;
}
.product__icons {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.product__colors {
  position: absolute;
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  bottom: 5px;
  left: 0px;
  gap: 8px;
  height: 109px;
}
.product__color {
  width: 15px;
  height: 15px;
  border: 1px solid black;
}
.product__color.squared {
  background-size: 100% 50%;
  background-position: center top, center bottom;
  background-repeat: no-repeat;
}
.product__topbar {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  width: 100%;
  width: calc(100% - 41px);
  box-sizing: border-box;
}
.product__topbar .btn--icon {
  position: relative;
}
.product__topbar .btn--icon:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background-color: white;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
}
.product__topbar-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
.product__topbar-left--in-rows {
  display: none;
}
.product__topbar-right {
  display: flex;
}
.product__topbar-right .btn--icon:first-child:after {
  left: -2px;
}
.product__topbar-right .btn--icon:after {
  left: 1px;
}
.product__topbar-right button {
  height: 30px;
  padding: 5px;
}
.product__topbar-right button img {
  transition: 0.4s;
  position: relative;
}
.product__topbar-right button:hover img {
  transform: scale(1.2);
}
.product__label {
  padding: 2px 6px;
  border-radius: 4px;
  box-sizing: border-box;
  color: white;
  display: flex;
  justify-content: center;
  font-size: 12px;
}
.product__label--bf {
  background-color: #002b6d;
}
.product__label--sale {
  background-color: #84b518;
}
.product__label--new {
  background-color: #114a94;
  font-weight: 500;
}
.product__buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 6.5px;
  padding-left: 14.5px;
}
.product__buy .product__topbar-right {
  display: none;
}
@media screen and (max-width: 768px) {
  .product__buy {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.product__description {
  background-color: #f8f8f8;
  padding: 0;
  min-height: 46px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 6px 14.5px;
  box-sizing: border-box;
  justify-content: center;
}
.product__text--category {
  font-size: 12px;
  color: #717171;
  font-weight: 400;
}
.product__text--name {
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  color: #1d1d1d;
}
.product__text--price {
  font-size: 18px;
  color: #002b6d;
  line-height: 1;
  font-weight: bold;
}
.product__text--dph {
  font-size: 11px;
}
.product__text--rows-category {
  display: none;
}

@media screen and (min-width: 768px) {
  .category__items.rows,
  .product-list.rows {
    grid-template-columns: 1fr;
  }
  .category__items.rows .product,
  .product-list.rows .product {
    z-index: 1;
    display: flex;
    padding: 10px 0;
    border-right: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .category__items.rows .product,
  .product-list.rows .product {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .category__items.rows .product__topbar,
  .product-list.rows .product__topbar {
    display: none;
  }
  .category__items.rows .product__thumb,
  .product-list.rows .product__thumb {
    width: 62px;
    height: 62px;
    margin-top: auto;
    margin-bottom: auto;
  }
  .category__items.rows .product__description,
  .product-list.rows .product__description {
    background-color: white;
  }
  .category__items.rows .product__description > .product__text--name, .category__items.rows .product__description > .product__text--category,
  .product-list.rows .product__description > .product__text--name,
  .product-list.rows .product__description > .product__text--category {
    display: none;
  }
  .category__items.rows .product__buy,
  .product-list.rows .product__buy {
    margin-left: auto;
    gap: 20px;
  }
  .category__items.rows .product__buy .btn--buy,
  .product-list.rows .product__buy .btn--buy {
    display: none;
  }
  .category__items.rows .product__buy .product__topbar-right,
  .product-list.rows .product__buy .product__topbar-right {
    display: flex;
    padding-left: 4px;
  }
  .category__items.rows .product .product__description .not--row,
  .product-list.rows .product .product__description .not--row {
    margin-top: 13px;
    gap: 10px;
  }
  .category__items.rows .product .not--row,
  .product-list.rows .product .not--row {
    display: flex !important;
  }
  .category__items.rows .product .not--row.grid,
  .product-list.rows .product .not--row.grid {
    display: grid !important;
    gap: 0;
  }
  .category__items.rows .product__button,
  .product-list.rows .product__button {
    display: inline-block;
  }
  .category__items.rows .product__comparison-line-display,
  .product-list.rows .product__comparison-line-display {
    display: inline-block;
  }
  .category__items.rows .product__text--rows-category,
  .product-list.rows .product__text--rows-category {
    display: block;
  }
  .category__items.rows .product__icons,
  .product-list.rows .product__icons {
    display: none;
  }
  .category__items.rows .product__topbar-left,
  .product-list.rows .product__topbar-left {
    flex-direction: row;
  }
  .category__items.rows .product__topbar-left--in-rows,
  .product-list.rows .product__topbar-left--in-rows {
    display: flex;
  }
  .category__items.rows .product:not(:last-child),
  .product-list.rows .product:not(:last-child) {
    border-bottom: 0.1px solid #717171;
  }
}

.product-detail-workwear__parameters-name {
  font-weight: bold;
}
.product-detail-workwear__parameters-image {
  height: 42px;
  margin-right: 48px;
}
.product-detail-workwear__discount {
  background-color: #fce300;
  width: 60px;
  height: 60px;
  position: relative;
  top: -37px;
  right: -44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
@media (min-width: 1310px) {
  .product-detail-workwear__modal {
    min-width: 60% !important;
  }
}
.product-detail-workwear__btn-blue {
  padding: 9px 24px;
  background-color: #1d1d1d;
  border-radius: 3px;
  color: #ffffff;
}
.product-detail-workwear__btn-blue:hover {
  color: white;
  text-decoration: underline;
}
.product-detail-workwear__btn-yellow {
  padding: 9px 24px;
  background-color: #fce300;
  border-radius: 3px;
  color: #ffffff !important;
  cursor: pointer;
}
.product-detail-workwear__btn-yellow:hover {
  color: #002b6d;
  text-decoration: underline;
}
.product-detail-workwear__radio-variant {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.product-detail-workwear__radio-variant-label {
  width: 80px;
  height: 80px;
  margin: 5px;
  vertical-align: top;
}
.product-detail-workwear__radio-variant + img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
}
.product-detail-workwear__radio-variant:checked + img {
  outline: 2px solid #fce300;
}

.productp .tabs__content-item {
  display: block;
}
.productp .productp__actions .product__comparison-line-display {
  display: inline-block;
}
.productp .productp__actions .product__comparison-line-display img {
  height: 21px;
}
.productp .product__form {
  display: inline-flex;
  flex-wrap: wrap;
}
.productp .mobile {
  display: block;
}
@media screen and (min-width: 1000px) {
  .productp .mobile {
    display: none;
  }
}
.productp .desktop {
  display: none;
}
@media screen and (min-width: 1000px) {
  .productp .desktop {
    display: block;
  }
}
.productp__link {
  text-decoration: underline;
}
.productp__top {
  display: grid;
  gap: 15px;
  grid-template-columns: auto 1fr;
}
.productp__top-thumbs {
  gap: 15px;
  display: grid;
}
@media screen and (min-width: 1000px) {
  .productp__top-thumbs {
    max-width: 820px;
  }
}
@media screen and (min-width: 1440px) {
  .productp__top {
    gap: 100px;
  }
}
@media screen and (max-width: 1000px) {
  .productp__top {
    grid-template-columns: 1fr !important;
  }
}
.productp__top-description {
  max-width: 541px;
}
@media screen and (max-width: 1000px) {
  .productp__top-description {
    padding: 0 15px;
    padding: 0 15px;
    width: 400px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
  }
  .productp__top-description .button--normal, .productp__top-description .quantity {
    width: 100% !important;
  }
  .productp__top-description .quantity__loading-wrapper {
    width: 150px !important;
  }
}
@media screen and (max-width: 500px) {
  .productp__top-description {
    width: 320px;
  }
}
.productp__name {
  background-color: #f8f8f8;
  padding: 15px;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .productp__name {
    left: -15px;
  }
}
.productp__name .flex:first-child p {
  color: #9c9c9c;
  font-size: 12px;
  font-weight: 400;
}
.productp__name h1 {
  font-size: 1.375rem;
  font-weight: bold;
  color: #1d1d1d;
  text-align: left;
}
.productp .homepage__slideshow .homepage-name {
  margin-top: 92px;
  margin-bottom: 10px;
}
.productp .dg-2,
.productp .dg-3,
.productp .dg-8 {
  display: grid;
  gap: 15px !important;
}
.productp .dg-2 img,
.productp .dg-3 img,
.productp .dg-8 img {
  width: 100%;
  height: 100%;
}
.productp .dg-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.productp .dg-8 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.productp__price {
  padding-top: 15px;
  z-index: 1;
}
.productp__price .sale {
  color: #fce300;
  font-size: 14px;
}
.productp__price .sale span {
  color: #1d1d1d;
  position: relative;
}
.productp__price .sale span:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #1d1d1d;
  top: calc(50% - 0.5px);
  left: 0;
}
.productp__price .price {
  font-size: 25px;
  font-weight: bold;
  color: #114a94;
}
.productp__price .price--dph {
  font-size: 14px;
  font-weight: 400;
  color: #9c9c9c;
}
.productp__price .price--line-through {
  font-size: 14px;
  font-weight: 400;
  color: #9c9c9c;
  text-decoration: line-through;
}
.productp__price .discount {
  display: inline-block;
  padding: 5px 8px;
  margin-bottom: 15px;
  background-color: #fce300;
  color: #1d1d1d;
}
.productp__variants {
  margin-top: 8px;
  margin-bottom: 25px;
}
.productp__variants img {
  cursor: pointer;
  transition: 0.3s;
}
.productp__variants img.active {
  transform: scale(1.2);
}
.productp__size {
  margin-bottom: 20px;
}
.productp__size .flex {
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .productp__size .flex {
    justify-content: center;
  }
}
.productp__size .input--select {
  margin-top: 10px;
  margin-right: 10px;
  width: 100%;
  height: 47px;
  max-width: 270px;
  padding-left: 10px;
  font-weight: bold;
  font-size: 14px;
  padding-right: 10px;
}
.productp__size .input--select option span {
  font-weight: 400 !important;
  color: #9c9c9c;
}
.productp__submit {
  height: 47px;
  max-width: 286px;
  color: #ffffff !important;
  background-color: #1d1d1d;
  margin: 0 auto;
  margin-top: 45px;
  border: 1px solid #1d1d1d;
}
@media screen and (max-width: 800px) {
  .productp__submit {
    font-size: 9px;
  }
}
.productp__submit:hover {
  background-color: #fce300 !important;
}
.productp__actions {
  display: inline-flex;
  vertical-align: top;
  gap: 5px;
}
.productp__actions .btn--porovnani {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 47px;
  width: 47px;
  border: 1px solid #1d1d1d;
}
.productp__actions .btn--porovnani img {
  transition: 0.4s;
  position: relative;
}
.productp__actions .btn--porovnani:hover img {
  transform: scale(1.2);
}
.productp__actions .btn--porovnani:hover::before, .productp__actions .btn--porovnani:hover::after {
  width: 60%;
  height: 60%;
}
.productp .green {
  color: #84b518;
}
.productp__availability {
  color: #9c9c9c;
  line-height: 2.5;
}
.productp__availability p,
.productp__availability a {
  align-items: center;
  display: flex;
  gap: 10px;
  padding-left: 10px;
  color: inherit;
}
.productp__availability .flex {
  padding-left: 10px;
  align-items: center;
  display: flex;
  max-width: 320px;
  margin-top: 15px;
  margin-bottom: 15px;
  gap: 10px;
  background-color: #f8f8f8;
  height: 37px;
}
.productp__availability .flex select {
  color: #1d1d1d;
  background-color: transparent;
  border: unset;
  font-size: 14px;
  cursor: pointer;
  height: 100%;
  font-weight: 500;
}
.productp__img {
  height: 19px;
}
.productp__dropdown {
  margin-top: 40px;
}
@media (min-width: 1310px) {
  .productp__dropdown {
    width: 1310px;
  }
}
@media (min-width: 1920px) {
  .productp__dropdown {
    width: 1500px;
  }
}
@media screen and (max-width: 610px) {
  .productp__dropdown .scrollhidden {
    max-height: 41px;
    overflow: hidden;
    padding-right: 10px;
  }
}
.productp__dropdown > .scrollhidden > .flex {
  position: relative;
  gap: 1px;
  width: 100%;
  border-bottom: 0.5px solid #707070;
}
@media screen and (max-width: 610px) {
  .productp__dropdown > .scrollhidden > .flex {
    overflow-x: scroll;
  }
}
.productp__dropdown .scrollhidden > .flex > button {
  transition: 0.4s;
  color: white;
  background-color: #1d1d1d;
  padding: 13px 30px;
}
.productp__dropdown .scrollhidden > .flex > button.active {
  background-color: #fce300;
}
.productp__dropdown .scrollhidden > .flex > button:hover:not(.active) {
  margin-top: -5px;
}
.productp__dropdown .content {
  line-height: 1.8;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1d;
  padding-top: 30px;
}
@media screen and (max-width: 1000px) {
  .productp__dropdown .content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.productp__dropdown .content.sizes .flex {
  gap: 70px;
}
.productp__dropdown .content.sizes .flex div {
  max-width: 300px;
}
.productp__dropdown .content.normy .dg-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 550px;
  position: relative;
}
.productp__dropdown .content.normy .dg-3 img {
  height: auto;
  width: 100%;
}
.productp__banner {
  padding-top: 90px;
  margin-bottom: 90px;
}
.productp__alternative {
  margin-top: 125px;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 20px;
  z-index: 1;
  position: relative;
}
.productp__alternative:after {
  z-index: -1;
  content: "";
  position: absolute;
  background-color: #fbfbfb;
  top: -32px;
  left: -50vw;
  width: 200vw;
  height: calc(100% + 64px);
}
@media screen and (max-width: 1000px) {
  .productp__alternative {
    grid-template-columns: 1fr;
  }
}
.productp__alternative p.name {
  text-transform: uppercase;
  font-size: 29px;
  color: #1d1d1d;
  font-weight: 800;
  margin-bottom: 20px;
}
.productp__alternative p.name span {
  color: #fce300;
}
.productp__alternative p:last-child {
  color: #717171;
  font-weight: 400;
  line-height: 1.5;
}

@media screen and (max-width: 840px) {
  .desktop2 {
    display: none;
  }
}

.varianty {
  position: relative;
  margin-top: 90px;
  z-index: 1;
  padding-top: 27px;
  padding-bottom: 32px;
}
.varianty__name p:first-child {
  font-size: 29px;
  font-weight: 500;
  color: #1d1d1d;
  font-weight: 400;
  margin-bottom: 6px;
}
.varianty__name p:first-child span {
  text-decoration: underline;
  font-weight: bold;
}
.varianty__name .c-orange {
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 32px;
}
.varianty:after {
  content: "";
  background-color: #fbfbfb;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  width: 200vw;
  left: -50vw;
  height: 100%;
}
.varianty__sleva {
  align-items: center;
  margin-left: 13px;
  padding-left: 10px;
  border-left: 0.5px solid #1d1d1d;
}
.varianty__sleva img {
  margin-right: 5px;
}
.varianty__sleva .sale {
  color: #fce300;
}
.varianty__sleva .sale span {
  color: #1d1d1d;
  position: relative;
}
.varianty__sleva .sale span:after {
  position: absolute;
  width: 100%;
  content: "";
  left: 0;
  top: 9px;
  height: 1px;
  z-index: 1;
  background-color: #1d1d1d;
}
.varianty__price {
  font-size: 19px;
  color: #fce300;
  margin-left: 18px !important;
  margin-right: 33px !important;
  font-weight: bold !important;
}
.varianty__item {
  background-color: white;
  display: flex;
  padding: 50px 20px;
  gap: 50px;
}
.varianty__item > img {
  height: 114.77px;
  width: auto;
}
.varianty__item > div .flex {
  align-items: center;
}
.varianty__item > div .flex p {
  margin: 0;
  line-height: 1;
  padding: 0;
}
.varianty__item p:nth-child(2) {
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 13px;
}
.varianty__item--name {
  font-weight: bold;
  margin-bottom: 17px;
  font-size: 14px;
  color: #1d1d1d;
}
.varianty__container {
  display: grid;
  gap: 32px;
}

.dg-2.dg-1 {
  grid-template-columns: 1fr;
}

.productp .dg-8 {
  gap: 6px !important;
}

.gallery-workwear__dot {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.productp__top {
  grid-template-columns: 1fr 400px;
}
@media screen and (min-width: 1440px) {
  .productp__top {
    grid-template-columns: 1fr 540px;
  }
}
.productp__top-thumbs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productp__top-thumbs .gallery-workwear {
  max-height: 640px;
}

.gallery-workwear__main img {
  margin: auto;
  height: 520px !important;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}

.gallery-workwear__dot {
  cursor: pointer;
  position: relative;
  transition: 0.2s;
  height: 64px;
  margin-bottom: 8px;
}
.gallery-workwear__dot:hover {
  transform: scale(1.05);
}

.about__section {
  background-color: transparent;
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  padding: 64px 30px;
  display: grid;
  grid-template-columns: 40% 1fr;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .about__section {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .about__section {
    margin-left: -10px;
    margin-right: -10px;
    padding: 64px 10px;
  }
}
.about__page {
  padding-top: 30px;
}
@media screen and (max-width: 800px) {
  .about__page {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
.about__page .about__section {
  grid-template-columns: 1fr 60%;
  padding: 0;
  margin: 0;
  background-color: white;
  color: #002b6d;
}
@media screen and (max-width: 1050px) {
  .about__page .about__section {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .about__thumb--desktop {
    display: none;
  }
}
.about__thumb--desktop iframe {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .about__thumb--mobile {
    display: none;
  }
}
.about__thumb--mobile iframe {
  width: 100%;
  margin-bottom: 20px;
}
.about__description h1, .about__description h2 {
  text-align: left;
  color: #002b6d;
  margin-bottom: 24px;
}
.about__description h1 > span, .about__description h2 > span {
  position: relative;
  margin-left: 27px;
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
}
.about__description a {
  margin-top: 44px;
}
.about__zakladame {
  width: 100%;
  margin-top: 80px;
}
.about__zakladame .product-list__heading {
  font-size: 20px;
  max-width: unset;
  color: #002b6d;
  font-weight: bold;
}
.about__zakladame .product-list__heading:after {
  display: none;
}
.about__zakladame-detail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-top: 12px;
  gap: 0.5px;
  background-color: #717171;
}
@media screen and (max-width: 1000px) {
  .about__zakladame-detail {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 800px) {
  .about__zakladame-detail {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 414px) {
  .about__zakladame-detail {
    grid-template-columns: 1fr;
  }
}
.about__zakladame-detail div {
  background-color: white;
  padding: 20px;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  .about__zakladame-detail div.helper {
    display: none;
  }
}
.about__zakladame-detail div.helper p {
  display: none;
}
.about__zakladame-detail div p {
  text-align: center;
}
.about__zakladame-detail--name {
  padding-top: 16px;
  text-transform: uppercase;
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #002b6d;
}
.about__history {
  margin-top: 80px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.about__history .h1 {
  font-size: 30px;
}
@media screen and (max-width: 650px) {
  .about__history .h1 {
    font-size: 22px;
  }
}
.about__history__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .about__history__content {
    grid-template-columns: 1fr;
  }
  .about__history__content .about__history-item {
    margin: 0 !important;
  }
}
.about__history-item {
  box-sizing: content-box;
  border-right: 18px solid #002b6d;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  margin-left: -9px;
  max-width: 258px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .about__history-item {
    padding-right: 100px;
  }
}
@media screen and (max-width: 800px) {
  .about__history-item {
    border-right: 14px solid #002b6d;
  }
}
@media screen and (max-width: 500px) {
  .about__history-item {
    border: unset;
  }
}
@media screen and (min-width: 800px) {
  .about__history-item:nth-child(even) {
    border-right: unset;
    padding-right: 0;
    padding-left: 100px;
    margin-top: 140px;
  }
}
.about__history-item:nth-child(odd) .about__history-item__year:after {
  left: unset;
  right: -80px;
}
.about__history-item:nth-child(odd) .about__history-item__year:before {
  left: unset;
  right: 73px;
}
.about__history-item__year {
  font-size: 25px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002b6d;
}
.about__history-item__year:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #fce300;
}
@media screen and (max-width: 800px) {
  .about__history-item__year:before {
    right: 73px;
  }
}
@media screen and (min-width: 800px) {
  .about__history-item__year:before {
    left: 73px;
  }
}
@media screen and (min-width: 414px) {
  .about__history-item__year:after {
    content: "";
    background-color: #717171;
    width: calc(100% - 80px - 40px);
    height: 1px;
    position: absolute;
  }
}
@media screen and (min-width: 414px) and (max-width: 800px) {
  .about__history-item__year:after {
    right: -80px;
  }
}
@media screen and (min-width: 414px) and (min-width: 800px) {
  .about__history-item__year:after {
    left: -80px;
  }
}
.about__history-item__name {
  font-size: 20px;
  font-weight: bold;
  color: #002b6d;
}
.about__history-item__description {
  color: #717171;
  font-size: 14px;
}

.cube {
  content: "";
  background-color: #fce300;
  width: 12.3px;
  height: 12.3px;
  position: absolute;
  margin-left: -20px;
  margin-top: -2px;
}

.alert__action {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.alert__action .btn--primary {
  height: 63px;
  width: 100%;
}
.alert__slideshow > .flex {
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
  margin-top: 25px;
  height: 33px;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: bold;
  color: black;
  background-color: #f3f5f8;
  justify-content: space-between;
}
.alert__slideshow > .flex button {
  padding-left: 4px;
  padding-right: 4px;
}
.alert__slideshow > .flex button img {
  position: relative;
  transition: 0.3s;
}
.alert__slideshow > .flex button:hover img {
  transform: scale(1.24);
}
.alert__slideshow__container {
  margin-top: 0;
  margin-bottom: 0;
}
.alert__name {
  line-height: 2;
}
.alert__name--pc {
  display: none;
}
@media screen and (min-width: 550px) {
  .alert__name {
    display: none;
  }
  .alert__name--pc {
    display: block;
    font-weight: 400 !important;
    color: green !important;
    font-size: 14px;
  }
}
.alert__item {
  color: green;
  font-size: 14px;
  background-color: #f3f5f8;
  padding: 6px;
}
.alert__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5px;
}
.alert__content p {
  color: black;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  .alert__content {
    grid-template-columns: 1fr 1fr;
  }
}
.alert__content img {
  width: 100px;
}
@media screen and (min-width: 768px) {
  .alert__content img {
    margin-right: 35px;
    height: 124px;
    width: auto;
  }
}
@media screen and (min-width: 550px) {
  .alert {
    background-color: #f3f5f8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 59px 13px 48px;
  }
}

.cart__loading-delivery-prices {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-top: 50px;
}
.cart__loading-delivery-prices-text {
  font-size: 1.125rem;
  color: #002b6d;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .cart__page {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .cart__page.step3 {
    padding-bottom: 75px !important;
  }
  .cart__page.step3 .input--select {
    width: 250px !important;
  }
}
.cart__page .btn--primary {
  height: 48px;
  padding-left: 19px;
  padding-right: 19px;
  min-width: unset;
}
.cart__page .border-top {
  border-top: 1px solid rgba(186, 186, 186, 0.3725490196);
  margin-top: 20px;
}
.cart__page .border-top.mt-0 {
  margin-top: 0;
}
.cart__pointer {
  cursor: pointer;
}
.cart__link-style-btn {
  color: #002b6d;
  text-decoration: underline;
}
.cart__select {
  margin-left: 15px;
}
.cart__breakdown-wrapper {
  position: relative;
}
.cart__upload-input {
  position: absolute;
  visibility: hidden;
}
.cart__buttonsgroup .input {
  height: 48px;
  width: 260px;
  max-width: 70vw;
}
.cart__items {
  position: relative;
}
.cart__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.062);
  z-index: 10000;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.cart__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .cart__container {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
.cart__steps {
  height: 92px;
  background-color: #f3f5f8;
  align-items: center;
  display: flex;
  margin: 0 auto;
}
.cart__steps .steps__number {
  background-color: transparent;
  border-radius: 50px;
  display: flex;
  border: 2px solid #bcbcbc;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  color: #bcbcbc;
  font-weight: bold;
  font-size: 13px;
}
.cart__steps .steps__name {
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  .cart__steps .steps__name {
    display: none;
  }
}
.cart__steps .active .steps__number {
  border-color: #002b6d;
  color: white;
  background-color: #002b6d;
}
@media screen and (max-width: 960px) and (min-width: 500px) {
  .cart__steps .active.show .steps__name {
    display: block;
  }
}
.cart--sectionname {
  font-size: 18px;
  font-weight: bold;
  color: #1d1d1d;
}
.cart__products {
  padding-top: 26px;
  padding-bottom: 78px;
}
@media screen and (max-width: 800px) {
  .cart__products {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media screen and (max-width: 960px) {
  .cart__products__topbar {
    flex-wrap: wrap;
  }
  .cart__products__topbar .cart--sectionname {
    margin-bottom: 10px;
  }
}
.cart__upload {
  cursor: pointer;
}
.cart__import-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cart__or {
  display: inline-block;
  margin: 15px 0;
}
.cart__item-group:last-child {
  margin-bottom: 70px;
}
.cart__item {
  height: auto;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: flex-start;
  padding: 25px 0px;
}
@media screen and (max-width: 1100px) {
  .cart__item {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    align-items: flex-start;
  }
}
.cart__item.border-top {
  margin-top: 0;
}
.cart__item.border-top:not(:first-child) {
  border-top: 1px solid rgba(186, 186, 186, 0.3725490196);
}
.cart__item--name {
  color: #1d1d1d;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.3;
}
.cart__item--text {
  line-height: 1.3;
  color: #717171;
  font-size: 12px;
  width: 200px;
  font-weight: 400;
}
.cart__item--thumb {
  height: 55px;
  width: 55px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart__item > .flex {
  align-items: center;
}
.cart__item--count {
  display: flex;
}
@media screen and (min-width: 400px) {
  .cart__item--count {
    margin-right: 40px;
  }
}
@media (min-width: 1310px) {
  .cart__item--count {
    margin-left: 30px;
  }
}
.cart__item--count input {
  text-align: center;
  padding: 0;
  width: 40px;
  height: 38px;
  border-radius: 0;
  border: 0.1px solid #717171;
  box-sizing: border-box;
}
.cart__item--count button {
  width: 24px;
  height: 17px;
  border: 0.1px solid #717171;
  border-left: unset;
  height: 100%;
  box-sizing: border-box;
}
.cart__item--count button:first-child {
  border-bottom: unset;
}
.cart__item .borders {
  position: relative;
  padding-left: 26px;
  padding-right: 26px;
  min-height: 31px;
  align-items: center;
  display: flex;
  border-left: 1px solid rgba(186, 186, 186, 0.3725490196);
  border-right: 1px solid rgba(186, 186, 186, 0.3725490196);
}
@media screen and (max-width: 414px) {
  .cart__item .borders {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1310px) {
  .cart__item .borders {
    justify-content: center;
  }
}
.cart__item--storage {
  position: relative;
  color: #84b518;
  font-weight: 400;
  font-size: 14px;
}
.cart__item--storage .cart__item-storage-info {
  display: none;
  padding: 10px;
  background-color: #ffffff;
  z-index: 5;
  box-shadow: 4px 4px 13px 0px rgb(163, 163, 163);
}
.cart__item--storage .cart__item-storage-info-item {
  white-space: nowrap;
}
.cart__item--storage .cart__item-storage-info-name {
  white-space: nowrap;
  color: #000;
}
.cart__item--storage .cart__item-storage-info-value {
  font-weight: 700;
  color: #002b6d;
}
.cart__item--storage:hover .cart__item-storage-info {
  position: absolute;
  display: block;
}
.cart__item--actions {
  display: flex;
  margin-left: auto;
}
.cart__item--actions__price {
  width: 131px;
}
@media screen and (max-width: 414px) {
  .cart__item--actions__price {
    width: auto;
    padding-right: 20px;
  }
}
.cart__item--dropdown {
  position: relative;
}
.cart__item--dropdown .opendp {
  height: 32px;
  width: 32px;
  background-color: white;
  border: 1px solid #000 !important;
  outline: none;
}
.cart__item--dropdown .opendp:focus {
  border: 1px solid #000 !important;
  outline: none;
}
.cart__password-group {
  display: grid;
  gap: 10px;
}
.cart__item-dropdown-content {
  position: absolute;
  white-space: nowrap;
  padding: 10px;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(29, 29, 29, 0.2588235294);
}
.cart__item-dropdown-icon {
  margin-right: 8px;
  max-width: 20px;
}
.cart__item-dropdown-button {
  display: block;
  padding: 5px;
}
.cart__item-name {
  display: flex;
  justify-content: flex-start;
  width: 400px;
}
.cart__count-btns {
  display: flex;
  flex-direction: column;
  height: 38px;
}
.cart__count-btns button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}
.cart__price--max {
  height: 65px;
  align-items: center;
}
.cart--price {
  color: #84b518;
  font-size: 16px;
  font-weight: bold;
}
.cart__summ {
  padding-top: 25px;
}
.cart__last {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .cart__last {
    flex-direction: column;
  }
}
.cart__gotostep2 {
  padding: 18px 0;
  width: 100%;
  display: grid;
  gap: 6px;
}
@media screen and (max-width: 800px) {
  .cart__gotostep2 {
    max-width: unset;
  }
}
.cart__gotostep2 .btn--primary {
  width: 100%;
  margin-top: 18px;
  height: 58px;
}
.cart__cupon {
  flex-grow: 1;
}
.cart__cupon input,
.cart__cupon button {
  height: 58px !important;
}
.cart__cupon .input {
  width: 100% !important;
  max-width: 385px !important;
  background-color: white;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
  border-right: unset;
}
@media screen and (max-width: 800px) {
  .cart__cupon .input {
    max-width: unset !important;
  }
}
.cart__link {
  font-size: 14px;
  color: red;
}
.cart__link:hover {
  color: red;
}
.cart__inputs {
  gap: 10px;
  display: grid;
  margin-bottom: 28px;
}
.cart__inputs--group {
  display: grid;
  gap: 14px;
  justify-content: flex-end;
  grid-template-columns: 155px 1fr;
}
@media screen and (max-width: 800px) {
  .cart__inputs--group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.cart__inputs--group label {
  text-align: right;
  font-size: 13px;
  margin-top: 12px;
  color: #717171;
}
@media screen and (max-width: 800px) {
  .cart__inputs--group input {
    max-width: unset !important;
  }
}
.cart__inputs--group .input {
  width: 100%;
  height: 45px;
  border: 0.5px solid rgba(186, 186, 186, 0.3725490196);
}
.cart__inputs--group .input::-moz-placeholder {
  color: #c2c2c2;
}
.cart__inputs--group .input::placeholder {
  color: #c2c2c2;
}
@media screen and (min-width: 801px) {
  .cart__inputs--group .input {
    max-width: 422px;
  }
}
.cart__import-error {
  font-size: 13px;
  color: red;
}

.input-error {
  font-weight: normal;
  color: red;
  font-size: 13px;
}

.price__sleva {
  font-size: 0.875rem;
  color: #717171;
  border-bottom: 1px solid rgba(186, 186, 186, 0.3725490196);
}
.price__sleva p:last-child {
  color: #84b518;
}
.price__bold {
  font-weight: bold;
  color: black;
}
.price__smaller {
  font-size: 0.875rem;
  color: #717171;
  padding-top: 6px;
}
.price__align-end {
  align-items: baseline;
}
.price__bigger {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1d1d1d;
}
.price__bigger p:last-child {
  font-size: 1.875rem;
  color: #84b518;
}
.price__doprava {
  font-size: 14px;
  color: #717171;
  border-bottom: 0.1px solid #717171;
  padding-bottom: 6px;
}
.price__list {
  font-size: 14px;
}

.step {
  gap: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.step img {
  width: 6px;
}
@media screen and (min-width: 960px) {
  .step img {
    margin-left: 25px;
  }
}

.icon--arrow {
  height: 8px;
}

.cart__item--count--flex {
  gap: 25px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  .cart__item--count--flex {
    margin: 0 auto;
    gap: 10px;
  }
}
@media screen and (max-width: 400px) {
  .cart__item--count--flex {
    flex-wrap: wrap;
  }
}

.step2__spinner {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.step2__section-checkbox {
  display: none;
}
.step2__light-text {
  font-weight: 400 !important;
  font-size: 0.75rem !important;
}
.step2__loader {
  display: none;
  border: 16px solid #f3f3f3;
  /* Light grey */
  border-top: 16px solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.step2 .label-blue {
  display: flex;
  align-items: center;
  max-width: calc(100% - 155px - 14px);
  margin-left: auto;
  position: relative;
  min-height: 45px;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-decoration: underline;
  background-color: #114a94;
  cursor: pointer;
}
@media screen and (max-width: 1284px) {
  .step2 .label-blue {
    max-width: 422px;
    margin-right: auto;
    margin-left: 170px;
  }
}
@media screen and (max-width: 800px) {
  .step2 .label-blue {
    max-width: unset;
    margin-left: 0;
    margin-bottom: 20px;
  }
}
.step2 .label-blue input {
  position: absolute;
  visibility: hidden;
}
.step2 .label-blue input:checked ~ span::after {
  display: block;
}
.step2 .label-blue__fake-checkbox {
  width: 14px;
  height: 14px;
  background-color: white;
  content: "";
  position: absolute;
  left: 13px;
  top: 15px;
}
.step2 .label-blue__fake-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid rgb(255, 0, 0);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.step2 .label-blue__label-text {
  margin-left: 15px;
}
.step2__name {
  position: relative;
  min-height: 33px;
  align-items: center;
  display: flex;
  background-color: #f3f5f8;
  font-size: 15px;
  font-weight: bold;
  color: #1d1d1d;
  margin-bottom: 36px;
  flex-wrap: wrap;
  padding-left: 10px;
}
.step2__name img {
  margin-right: 10px;
}
.step2__name span {
  color: #1d1d1d;
  font-size: 14px;
  padding-left: 24px;
  font-weight: 400;
  font-weight: bold;
}
.step2__section-checkbox:checked + .step2__fake-checkbox::after {
  display: block;
}
.step2__fake-checkbox {
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background-color: white;
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  padding: 0 !important;
  transform: translateY(-50%);
  border: 1px solid #707070;
}
.step2__fake-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #002b6d;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.step2__label-with-checkbox {
  cursor: pointer;
}
.step2__text-align-right {
  text-align: right;
}
.step2__checkboxes {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  max-width: 494px;
  margin-top: 20px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid black;
  padding-left: 90px;
}
.step2__error {
  text-align: right;
  font-size: 0.8125rem;
  font-weight: bold;
  color: rgb(190, 28, 28);
}
.step2__error--grid2 {
  grid-column: 2/2;
  max-width: 422;
  text-align: left;
}
.step2__success {
  text-align: right;
  font-size: 0.8125rem;
  font-weight: bold;
  color: rgb(28, 190, 28);
  margin-bottom: 20px;
  text-align: center;
}
.step2__icon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #002b6d;
  border-radius: 50%;
  margin-right: 15px;
  margin-left: 10px;
}
.step2__icon:not(.minus)::before {
  content: "";
  position: absolute;
  height: 8px;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #002b6d;
}
.step2__icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #002b6d;
}
.step2__controlls {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 48px;
}
.step2__controlls button,
.step2__controlls a {
  display: flex;
  align-items: center;
  height: 63px !important;
  margin-top: 0 !important;
}
.step2__controlls-wrapper {
  display: flex;
  justify-content: flex-end;
}
.step2 .price__bezdph,
.step2 .price__sleva {
  font-size: 14px;
  color: #717171;
}
.step2 .price__bezna {
  font-weight: bold;
  color: #717171;
  font-size: 14px;
}
.step2 .price__dph {
  font-size: 16px;
}
.step2 .price__dph p:nth-child(2) {
  font-size: 22px;
}
.step2 .dg-2 {
  gap: 122px;
}
@media screen and (max-width: 1284px) {
  .step2 .dg-2 {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.step2 .cart__gotostep2 {
  margin-left: auto;
  width: 100%;
  max-width: 465px;
}
@media screen and (max-width: 1284px) {
  .step2 .cart__gotostep2 {
    margin-right: auto;
  }
}
.step2__checkbox {
  display: none;
  /* Show the checkmark when checked */
}
.step2__checkbox:checked + .step2__checkbox-label:after {
  display: block;
}
.step2__checkbox-label {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
  font-size: 0.8125rem;
  color: #1d1d1d;
  cursor: pointer;
}
.step2__checkbox-label::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 1px solid #707070;
}
.step2__checkbox-label::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid #002b6d;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cart__input--group-ares {
  position: relative;
  width: 100%;
}
.cart__input--group-ares div {
  text-decoration: underline;
  margin-top: 5px;
  right: 40px;
  font-size: 13px;
  top: 0;
  display: flex;
  align-items: center;
  font-weight: 400;
  color: #114a94;
  cursor: pointer;
}
@media screen and (min-width: 1284px) {
  .cart__input--group-ares div {
    position: absolute;
    margin-top: 0;
    height: 100%;
  }
}
@media screen and (min-width: 800px) {
  .cart__input--group-ares div {
    justify-content: flex-end;
  }
}
.cart__input--group-ares .loading-indicator {
  color: #114a94;
  font-size: 14px;
  display: none;
  align-items: center;
}
.cart__input--group-ares .loading-indicator::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid #114a94;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.container {
  width: 100%;
}

.grid {
  display: grid !important;
}

.step3__container {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 494px;
  gap: 98px;
  border-bottom: 1px solid rgb(183, 183, 183);
}
@media screen and (max-width: 1100px) {
  .step3__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.step3__personal-info {
  max-width: 50%;
}
@media screen and (max-width: 800px) {
  .step3__personal-info {
    max-width: 100%;
  }
}
.step3__container-2 {
  padding-top: 20px;
  border-bottom: 1px solid rgb(183, 183, 183);
}
@media screen and (max-width: 1100px) {
  .step3__container-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.step3__margin-top {
  margin-top: 30px;
}
.step3__two-columns {
  display: grid;
  grid-template-columns: 1fr 494px;
  gap: 98px;
}
@media screen and (max-width: 800px) {
  .step3__two-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
}
.step3--all {
  background-color: #f8f8f8;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto;
  margin-top: 6px;
}
.step3--all img {
  height: 6px;
}
.step3__left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.step3 .cart--sectionname {
  margin-bottom: 22px;
}
.step3 .cart__last,
.step3 .cart__gotostep2 {
  width: 100%;
  max-width: unset;
}
.step3 .cart__last .btn--primary,
.step3 .cart__gotostep2 .btn--primary {
  max-width: 320px;
}
.step3 .cart__last .step2__controlls,
.step3 .cart__gotostep2 .step2__controlls {
  justify-content: flex-end;
  width: 100%;
}
.step3__productlist {
  display: grid;
  max-height: 321px;
  overflow-y: auto;
  overflow-x: hidden;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.step3__productlist::-webkit-scrollbar {
  width: 5px;
}
.step3__productlist::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.step3__productlist::-webkit-scrollbar-thumb {
  background: #002b6d;
}
.step3__productlist::-webkit-scrollbar-thumb:hover {
  background: #002b6d;
}
.step3__productlist__item {
  display: flex;
  padding-right: 10px;
  height: 80px;
  align-items: center;
  border-bottom: 0.1px solid #717171;
}
.step3__productlist--count {
  color: #717171;
  font-size: 14px;
  width: 50px;
  flex-shrink: 0;
}
.step3__productlist--name {
  font-weight: bold;
  padding-left: 35px;
  margin-right: auto;
  font-size: 13px;
}
.step3__productlist--size {
  border-left: 0.3px solid #717171;
  border-right: 0.3px solid #717171;
  padding-left: 19px;
  padding-right: 19px;
  height: 31px;
  display: flex;
  color: #717171;
  align-items: center;
}
.step3__productlist--price {
  text-align: right;
  width: 140px;
  padding-left: 19px;
  font-size: 16px;
  font-weight: bold;
  color: #84b518;
}

.justify-between {
  justify-content: space-between;
}

.float-right {
  float: right;
}

.delivery {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 37px;
}
.delivery__method {
  position: relative;
  height: 70px;
  padding-right: 19.5px;
  padding-left: 20px;
  display: flex;
  font-size: 13px;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  border: 2px solid rgb(233, 233, 233);
  margin-bottom: 0;
  cursor: pointer;
  align-items: center;
}
.delivery__method:not(:first-child) {
  border-top: unset;
}
.delivery__method .left {
  display: flex;
  align-items: center;
  width: 300px;
}
.delivery__method:hover .delivery__img::after {
  display: block;
}
.delivery__pickup-point {
  font-size: 12px;
  white-space: nowrap;
  color: #002b6d;
}
.delivery__checkmark {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.089);
  margin-right: 15px;
}
.delivery__checked {
  display: none;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #002b6d;
}
.delivery input {
  visibility: hidden;
  position: absolute;
}
.delivery input:checked + .delivery__checkmark > .delivery__checked {
  display: block;
}
.delivery .delivery__img {
  display: inline-block;
  margin-right: 15px;
}
.delivery .delivery__img::after {
  box-sizing: content-box;
  position: absolute;
  content: "";
  display: none;
  width: 100%;
  height: 100%;
  top: -2px;
  left: -2px;
  border: 2px solid #002b6d;
}
.delivery input:checked ~ .delivery__img::after {
  display: block;
}
.delivery__wrapper {
  display: flex;
  align-items: center;
}
.delivery__price {
  font-size: 13px;
  font-weight: bold;
  color: #002b6d;
}
.delivery__error {
  margin-top: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  color: rgb(190, 28, 28);
}

.personaldata {
  box-sizing: border-box;
  border: 0.3px solid #717171;
  padding: 29px;
}
.personaldata p {
  line-height: 1.7;
  font-size: 14px;
}
.personaldata--name {
  font-weight: bold;
  font-size: 16px !important;
  margin-bottom: 8px;
}
.personaldata .grid div {
  gap: 3px;
  display: grid;
}
.personaldata--message {
  padding: 13px;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
  margin-top: 13px;
  max-width: 269px;
  box-sizing: border-box;
}

.step3 .step2__controlls {
  padding-top: 32px;
}

.success {
  padding-top: 85px !important;
}
.success .description {
  max-width: 502px;
  margin: 0 auto;
}
.success img {
  margin: 0 auto;
}
.success h1 {
  font-size: 49px;
}
.success p {
  font-size: 18px;
}
.success .line--gray {
  margin-top: 24px;
  margin-bottom: 24px;
}
.success .btn--primary {
  background-color: #002b6d !important;
  height: 63px !important;
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.success.empty .btn--primary {
  padding-left: 40px !important;
  max-width: unset !important;
  padding-right: 40px !important;
}

.font-14 {
  font-size: 14px !important;
}

.c-green {
  color: #84b518;
}

.step1__buttonsgroup {
  justify-content: flex-start !important;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .step1__buttonsgroup {
    justify-content: flex-end !important;
  }
}

.dropdown {
  margin-bottom: 0;
}
.dropdown .cart__inputs--group:last-child {
  margin-bottom: 50px;
}
.dropdown.active {
  max-height: 800px;
}

.step2__dropdown .step2__name {
  cursor: pointer;
}

.transition {
  max-height: 1000px;
  transition: max-height 200ms;
}

.category-name {
  color: #114a94;
  font-weight: bold;
  padding: 10px 0;
}

.contact {
  background-color: white;
}
@media screen and (max-width: 800px) {
  .contact {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 15px;
  }
}
.contact__text {
  font-size: 13px;
  font-weight: 400;
  color: #717171;
}
.contact .dg-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  margin-top: 28px;
}
@media screen and (max-width: 1124px) {
  .contact .dg-2 {
    gap: 20px;
  }
}
@media screen and (max-width: 984px) {
  .contact .dg-2 {
    display: flex;
    flex-direction: column-reverse;
  }
}
.contact__preview {
  width: 100%;
  box-shadow: unset;
}
.contact__submit {
  margin-top: 20px;
}
.contact__wrapper {
  margin-top: 39px;
}
.contact .column {
  display: flex;
  flex-direction: column;
}
.contact__list {
  display: grid;
  text-align: center;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 69px;
}
@media screen and (max-width: 800px) {
  .contact__list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.contact__item {
  background-color: white;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: unset;
  transition: 0.4s;
}
.contact__item:hover {
  background-color: rgba(186, 186, 186, 0.3725490196);
}
.contact__item.active {
  background-color: #002b6d;
  color: white;
}
.contact__item:after {
  position: absolute;
  content: "";
  top: 0;
  width: 39px;
  height: 11px;
  left: calc(50% - 18.5px);
  background-color: #fce300;
}
.contact__specific {
  gap: 74px;
  display: grid;
  grid-template-columns: auto auto auto;
}
@media screen and (max-width: 1024px) {
  .contact__specific {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 625px) {
  .contact__specific {
    flex-direction: column-reverse;
    gap: 20px;
    flex-wrap: nowrap;
  }
}
.contact__map {
  width: 100%;
  max-width: 300px;
}
.contact__info2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-left: 1px solid rgba(186, 186, 186, 0.3725490196);
  padding-left: 32px;
}
@media screen and (max-width: 1224px) {
  .contact__info2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 625px) {
  .contact__info2 {
    border-left: unset;
    border-top: 1px solid rgba(186, 186, 186, 0.3725490196);
    border-bottom: 1px solid rgba(186, 186, 186, 0.3725490196);
    padding-left: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .contact__info3 {
    border-left: 1px solid rgba(186, 186, 186, 0.3725490196);
  }
}
.contact__info3 img {
  width: 100%;
}
@media screen and (max-width: 625px) {
  .contact__info3 {
    padding-bottom: 20px;
  }
}
.contact__subheading {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  color: #002b6d;
  margin-bottom: 18px;
  position: relative;
}
.contact__adress {
  font-size: 16px;
  font-weight: 400;
  color: #002b6d;
  line-height: 1.7;
}
.contact__ico {
  font-size: 14px;
  color: #717171;
  max-width: 251px;
  margin-top: 18px;
}
@media screen and (max-width: 625px) {
  .contact__ico {
    max-width: unset;
  }
}
.contact__methods {
  display: grid;
  gap: 19px;
}
.contact__group {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact__group p {
  text-transform: uppercase;
  font-size: 14px;
  color: #002b6d;
  line-height: 1;
}
.contact__group a {
  line-height: 1.5;
  padding: 0;
  color: #002b6d;
  font-weight: bold;
  font-size: 16px;
}
.contact__tel {
  color: #398000 !important;
  font-weight: 400 !important;
}
.contact__profiles {
  margin-top: 86px;
}
.contact__profiles .contact__subheading {
  position: relative;
  padding-left: 20px;
}
.contact__profiles .contact__subheading span {
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  height: 3px;
  background-color: #fce300;
  width: 16px;
}
.contact__lists {
  gap: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 620px) {
  .contact__lists {
    gap: 15px;
  }
}
@media screen and (min-width: 1010px) {
  .contact__lists {
    justify-content: flex-start;
  }
}
.contact__lists:not(:last-child) {
  margin-bottom: 30px;
}
.contact__lists--item {
  display: flex;
  border: 0.1px solid #717171;
  flex-direction: column;
  padding: 25px 30px 20px;
  box-sizing: content-box;
  max-width: 141px;
  position: relative;
}
@media screen and (max-width: 620px) {
  .contact__lists--item {
    padding: 15px 20px 10px;
  }
}
.contact__lists--item:after {
  position: absolute;
  content: "";
  background-color: #fce300;
  bottom: -5px;
  width: 40px;
  height: 11px;
  left: calc(50% - 20px);
}
.contact__lists--item--name {
  font-size: 16px;
  color: #002b6d;
  margin-top: 14px;
  font-weight: bold;
}
.contact__lists--item--pozice {
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: gray;
  margin-bottom: 36px;
}
.contact__lists--item--mail {
  margin-top: auto;
}
.contact__lists--item--mail, .contact__lists--item--tel {
  font-size: 14px;
  font-weight: 400;
}

.detail__heading {
  font-size: 18px;
  font-weight: bold;
  align-items: flex-start;
  margin-top: 38px;
}
.detail__date {
  display: inline-block;
  margin-bottom: 31px;
  color: #717171;
  font-weight: 400;
  font-size: 0.8125rem;
}
.detail__link-small {
  font-size: 0.8125rem;
  text-decoration: underline;
}
.detail__status {
  border-radius: 5px;
  border: 0.1px solid #707070;
  padding-left: 23px;
  padding-right: 28px;
  padding-bottom: 19px;
  padding-top: 17px;
}
.detail__status .detail__heading {
  margin: 0;
}
.detail__status--container {
  display: grid;
  grid-template-columns: 600px 1fr;
}
@media screen and (max-width: 875px) {
  .detail__status--container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 700px) {
  .detail__status--container .btn--unactive,
  .detail__status--container .btn--buy-large {
    width: 100%;
  }
}
.detail__status--container > .flex {
  gap: 9px;
  padding-top: 9px;
}
.detail__status--container .btn--buy-large {
  height: 42px;
}
@media screen and (max-width: 1140px) and (min-width: 875px) {
  .detail__pdf {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 875px) {
  .detail__pdf {
    margin-top: 15px;
  }
}
.detail__pdf--small {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1140px) and (min-width: 875px) {
  .detail__pdf .flex {
    flex-direction: column;
    gap: 0 !important;
    text-align: right;
  }
  .detail__pdf .flex p,
  .detail__pdf .flex a {
    line-height: 2;
  }
}
.detail .btn--transparent {
  font-weight: 400 !important;
  padding-left: 22px;
  padding-right: 22px;
}
.detail__productlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail__productlist--item {
  height: 90px;
  align-items: center;
  display: flex;
  border: 0.1px solid #707070;
  border-radius: 5px;
  padding: 23px;
  box-sizing: border-box;
}
.detail__productlist--item .col {
  width: 100%;
}
.detail__productlist--item .flex {
  justify-content: space-between;
}
.detail__productlist--item .flex .flex {
  gap: 30px;
}
.detail__productlist--item--price {
  color: #002b6d;
  font-weight: bold;
  font-size: 13px;
}
.detail__productlist--item--count {
  color: #bcbcbc;
  font-size: 13px;
}
.detail__productlist--item--name {
  font-size: 13px;
  color: #1d1d1d;
}
.detail__productlist--item--type {
  font-size: 13px;
  color: #717171;
}
.detail__productlist--item img {
  height: 45px;
  margin-right: 21px;
}
.detail__pdf {
  display: flex;
  justify-content: space-between;
  max-width: 542px;
  width: 100%;
  align-items: flex-end;
  font-size: 13px;
  margin-left: auto;
}
@media screen and (max-width: 875px) {
  .detail__pdf {
    margin-left: 0;
    margin-right: auto;
  }
}
@media screen and (max-width: 800px) {
  .detail__pdf {
    gap: 15px;
  }
}
.detail__pdf .flex {
  gap: 26px;
}
@media screen and (max-width: 800px) {
  .detail__pdf .flex {
    gap: 15px;
  }
}
.detail__pdf p:last-child {
  color: #002b6d;
}
.detail__pdf p:last-child img {
  padding-left: 5px;
}
.detail__detail {
  padding-top: 28px;
}
.detail__detail .detail__text {
  margin-bottom: 20px;
  color: #717171;
}
.detail__detail__container {
  display: grid;
  grid-template-columns: 1fr 665px;
  gap: 10px;
}
@media screen and (max-width: 1161px) {
  .detail__detail__container {
    grid-template-columns: 1fr;
  }
}
.detail__info {
  border-radius: 5px;
  border: 0.1px solid #707070;
  padding: 20px 32px;
  gap: 19px;
  display: grid;
}
.detail__info--adress {
  display: flex;
  font-size: 13px;
  gap: 75px;
  margin-bottom: 25px;
}
@media screen and (max-width: 650px) {
  .detail__info--adress {
    flex-direction: column;
  }
}
.detail__info--adress--type {
  font-size: 13px;
  font-weight: bold;
}
.detail__info--adress--name {
  margin-top: 17px;
  margin-bottom: 7px;
}
.detail__info--payment {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.detail__info--payment .c-gray {
  padding-left: 20px;
}
.detail__info--payment .flex {
  gap: 23px;
}
.detail__contact > p {
  margin-top: 20px;
  font-size: 13px;
  color: #717171;
}
.detail__contact .flex {
  gap: 16px;
  margin-top: 10px;
  display: flex;
}
.detail__contact .flex button {
  font-size: 13px;
  color: #002b6d;
}

.c-gray {
  color: #717171;
}
.c-gray--light {
  color: #707070;
  opacity: 0.5;
}

.line--gray {
  height: 0.1px;
  background-color: #707070;
  width: 100%;
}

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

.conditions {
  max-width: 870px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .conditions {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
  }
}
.conditions h1 {
  margin-bottom: 18px;
}
@media screen and (max-width: 800px) {
  .conditions h1 {
    font-size: 18px;
    text-align: left;
  }
}
.conditions__logo {
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.conditions__name {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 28px;
}
@media screen and (max-width: 800px) {
  .conditions__name {
    margin-bottom: 20px;
  }
}
.conditions__description {
  margin-bottom: 46px;
  font-size: 13px;
}
@media screen and (max-width: 800px) {
  .conditions__description {
    margin-bottom: 30px;
  }
}
.conditions .dg-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 800px) {
  .conditions .dg-2 {
    grid-template-columns: 1fr;
  }
}
.conditions > p {
  font-size: 13px;
}

@media screen and (max-width: 800px) {
  .employment {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 15px;
  }
}
.employment h1 {
  font-size: 30px;
  color: #002b6d;
  text-align: left;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .employment h1 {
    font-size: 18px;
    background-color: #f3f5f8;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    margin-bottom: 34px;
  }
}
.employment__search {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  gap: 30px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .employment__search {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .employment__search .input__group,
  .employment__search .btn--submit {
    width: 100%;
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .employment__submit {
    width: 100%;
  }
}
.employment__item {
  display: grid;
  grid-template-columns: 1fr 1fr 320px;
  min-height: 78px;
  align-items: center;
  border-bottom: 1px solid rgba(186, 186, 186, 0.3725490196);
  transition: 0.3s;
}
.employment__item:hover {
  background-color: #f3f5f8;
}
@media screen and (max-width: 1024px) {
  .employment__item {
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .employment__item:nth-child(even) {
    background-color: #f3f5f8;
  }
}
.employment__list {
  margin-top: 4px;
}
.employment__name {
  font-weight: bold;
  font-size: 16px;
}
.employment__place {
  font-weight: 400;
  font-size: 14px;
}
.employment__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .employment__description {
    display: none;
  }
}
.employment__page {
  background-image: url("/img/mainslideshow.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .employment__page {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 15px;
  }
}
.employment__page h1 {
  font-size: 30px;
  color: #002b6d;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .employment__page h1 {
    font-size: 18px;
    background-color: #f3f5f8;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 10px;
    margin-bottom: 34px;
  }
}
.employment__page .employment__container > .employment__info {
  margin-bottom: 53px;
}
@media screen and (max-width: 768px) {
  .employment__page .employment__place {
    display: none;
  }
  .employment__page .back {
    display: none;
  }
}
.employment__info, .employment__info span, .employment__info p {
  font-size: 13px;
  font-weight: 400;
}
.employment__container {
  max-width: 980px;
  margin: 0 auto;
  margin-top: 110px;
  background-color: white;
  padding: 40px 80px 80px;
  box-sizing: border-box;
  max-width: calc(100% - 300px);
}
@media screen and (max-width: 1280px) {
  .employment__container {
    max-width: calc(100% - 120px);
  }
}
@media screen and (max-width: 1024px) {
  .employment__container {
    max-width: calc(100% - 80px);
    padding: 20px 40px 40px;
  }
}
@media screen and (max-width: 768px) {
  .employment__container {
    max-width: unset;
    margin-top: 0;
    padding: 10px 20px 20px;
  }
}
.employment__itemlist {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.employment__itemlist:not(:last-child) {
  margin-bottom: 17px;
}
.employment__itemlist li {
  position: relative;
  padding-left: 31px;
  display: flex;
  line-height: 1.5;
  font-size: 13px;
  font-weight: 400;
}
.employment__itemlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 13px;
  background-color: #fce300;
}
.employment__input-file {
  position: absolute;
  visibility: hidden;
}
.employment__label-file {
  cursor: pointer;
}
.employment__error {
  font-size: 0.8125rem;
  color: red;
  font-weight: 700;
}
.employment__border--top {
  margin-top: 19px;
  padding-top: 19px;
  border-top: 1px solid rgba(186, 186, 186, 0.3725490196);
}
.employment__dg-2 {
  display: grid;
  grid-template-columns: 270px 1fr;
}
@media screen and (max-width: 768px) {
  .employment__dg-2 {
    grid-template-columns: 1fr;
  }
}
.employment__submit {
  gap: 16.5px;
}
@media screen and (max-width: 768px) {
  .employment__submit {
    margin-bottom: 24px;
  }
}

.error {
  padding-bottom: 66px;
  padding-top: 66px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .error {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
  }
}
.error.server {
  padding-top: 44px;
}
.error.server h1 {
  margin-top: 24px;
}
@media screen and (max-width: 800px) {
  .error.server h1 {
    font-size: 23px;
  }
}
.error.server img {
  max-width: 100%;
}
.error.server .btn--primary {
  background-color: #1d1d1d;
  height: 47px;
  max-width: 286px;
  margin: 0 auto;
  margin-top: 45px;
}
@media screen and (max-width: 800px) {
  .error.server .btn--primary {
    font-size: 9px;
  }
}
.error .description {
  margin-top: 6px;
}
@media screen and (max-width: 800px) {
  .error .description {
    font-size: 13px;
  }
}
.error__redirect {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}
.error__redirect a,
.error__redirect p {
  font-size: 16px;
  line-height: 1;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .error__redirect a,
  .error__redirect p {
    font-size: 13px;
  }
}
.error__redirect a {
  color: #002b6d;
  font-weight: 500;
}
.error__number {
  font-weight: bold;
  font-size: 55px;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .error__number {
    font-size: 111px;
    position: relative;
    transform: rotate(-90deg);
    right: -20px;
  }
}

.liked {
  padding-top: 15px;
  padding-bottom: 36px;
}
.liked__topbar {
  background-color: #f3f5f8;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 29px;
}
.liked__topbar .arrow--right {
  height: 12px;
  margin-left: 25px;
  transform: rotate(90deg);
}
.liked__topbar--mobile {
  background: linear-gradient(92deg, #002b6d 1%, #114a95 100%);
  position: relative;
  margin: -10px;
  height: 40px;
  margin-top: -20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
}
.liked__topbar--mobile a {
  color: white;
  text-align: center;
  padding: 8px 12px 10px;
  justify-content: center;
}
.liked__topbar--mobile .liked__tab--mobile.active {
  background-color: white;
  color: #002b6d;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.liked__text-right {
  text-align: right;
}
.liked__btn {
  height: auto;
}
.liked__success {
  font-size: 13px;
  color: green;
}
.liked__bottombar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.liked__bottombar .cart__gotostep2 {
  max-width: 385px;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
}
.liked__bottombar--paginator {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.liked .btn--primary {
  font-size: 13px;
  gap: 10px;
  width: auto;
  padding: 9px 20px;
}
.liked .cart__gotostep2 .btn--primary {
  margin-left: auto;
}
.liked__name-count {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.liked__wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.liked__input {
  margin-right: 15px;
}
.liked__name {
  display: block;
  max-width: 200px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-right: 15px;
}
.liked__dropdown-trigger {
  padding: 8px 11px;
  color: #002b6d;
  cursor: pointer;
}
.liked__dropdown-wrapper {
  position: relative;
}
.liked__dropdown-item {
  display: flex;
  padding: 8px 11px;
  font-size: 14px;
  color: #002b6d;
  font-weight: 400;
  cursor: pointer;
}
.liked__dropdown-item.active {
  background-color: #e1e1e1;
}
.liked__dropdown-content {
  position: absolute;
  background-color: #f3f5f8;
  top: 100%;
  left: 0;
  z-index: 10005;
}
.liked__edit-btn {
  margin-left: 10px;
}
.liked__tab {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  font-size: 14px;
  color: #002b6d;
  font-weight: 400;
  padding: 10px 25px;
  transition: 0.4s;
  max-width: 350px;
  text-overflow: ellipsis;
  cursor: pointer;
}
.liked__tab button {
  display: none;
}
.liked__tab.active {
  background-color: #e1e1e1;
}
.liked__tab.active button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.liked__tab--count {
  color: #717171;
}
.liked__paginator-wrapper {
  width: 100%;
}
.liked__table {
  position: relative;
}
.liked .border--bottom {
  border-bottom: 0.1px solid #717171;
}
.liked__item-name-count {
  display: flex;
  align-items: center;
}
.liked__item-img {
  display: block;
  height: 50px;
}
.liked__item-storage {
  display: none;
  position: relative;
  color: #84b518;
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 768px) {
  .liked__item-storage {
    display: block;
  }
}
.liked__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border: 1px solid #717171;
  border-radius: 5px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .liked__item {
    border: none;
    border-bottom: 1px solid #717171;
    border-radius: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1310px) {
  .liked__item {
    align-items: center;
    flex-direction: row;
  }
}
.liked__item--name {
  margin-left: 10px;
  padding-right: 5px;
}
@media (min-width: 1310px) {
  .liked__item--name {
    padding-right: 0;
    width: 300px;
    margin-right: 20px;
  }
}
.liked__item--count {
  display: none;
  margin-right: 50px;
}
@media (min-width: 768px) {
  .liked__item--count {
    display: flex;
  }
}
.liked__item--count button {
  width: 44px;
  height: 44px;
  border: solid gray 0.5px;
}
.liked__item--count button:last-child {
  border-color: #1d1d1d;
}
.liked__item--count input {
  width: 44px;
  height: 44px;
  box-sizing: border-box;
  text-align: center;
  padding: 0;
  border: unset;
}
.liked__item--actions {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 45px;
  margin-top: 35px;
}
@media (min-width: 1310px) {
  .liked__item--actions {
    margin-top: 0;
  }
}
.liked__item--actions__btncontainer {
  height: 100%;
  align-items: center;
  display: flex;
  gap: 4px;
}
.liked__item--actions__btncontainer button {
  justify-content: center;
  min-width: 40px;
  height: 100%;
  align-items: center;
  display: flex;
  max-height: unset;
  position: relative;
  transition: 0.4s;
}
.liked__item--actions__btncontainer button:hover {
  transform: scale(1.1);
}
@media (min-width: 1310px) {
  .liked__item--actions__btncontainer {
    min-width: 115px;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 800px) {
  .cart__item--col {
    flex-direction: column;
    display: flex;
    text-align: left;
    align-items: flex-start;
  }
  .liked__bottombar--mobile {
    width: 100%;
    gap: 10px;
    display: grid;
    margin-top: 60px;
  }
  .cart__item:last-child {
    margin-bottom: 0;
  }
  .liked__table .cart__item {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .liked__table.desktop-hide {
    display: grid;
    gap: 10px;
  }
  .cart__item--mobile {
    position: relative;
    border: 0.1px solid #717171;
    overflow: hidden;
    padding-top: 14px;
    border-radius: 5px;
  }
  .cart__item--mobile--remove {
    padding: 15px;
    right: 0px;
    top: 0px;
    z-index: 1;
    position: absolute;
  }
  .cart__item--mobile img {
    margin-left: 14px;
    margin-right: 8px;
  }
  .cart__item--mobile .liked__item--actions--mobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    background-color: #f3f5f8;
    padding: 16px 12px 13px;
    margin-top: 14px;
  }
  .cart__gotostep2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 414px) {
  .cart__gotostep2 {
    max-width: unset;
    width: 100%;
  }
  .liked__bottombar--mobile {
    margin-top: 20px;
  }
}
.breadc {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 0.1px solid rgba(186, 186, 186, 0.3725490196);
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}
.breadc a {
  color: #717171 !important;
  padding-left: 4px;
  padding-right: 4px;
  height: 44px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.breadc__item.active {
  text-decoration: underline;
  color: #002b6d;
}
.breadc li {
  list-style-type: none;
}

.cont {
  background-color: white;
}

.login {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding-bottom: 66px;
  padding-top: 66px;
}
@media screen and (max-width: 800px) {
  .login {
    padding: 30px;
  }
}
@media screen and (max-width: 414px) {
  .login {
    padding: 15px;
  }
}
.login h1 {
  line-height: 1.5;
}
.login .logout {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (max-width: 800px) {
  .login .logout h1 {
    font-size: 25px;
  }
}
.login .logout a {
  text-align: left;
}
@media screen and (max-width: 414px) {
  .login .logout {
    gap: 2px;
  }
}
.login .logout .login__back {
  margin-top: 0;
}
.login__error {
  color: red;
  font-weight: bold;
  font-size: 0.75rem;
}
.login__group {
  display: grid;
  gap: 12px;
  max-width: 422px;
  width: 100%;
}
.login__group.reset, .login__group.obnova {
  gap: 0;
}
.login .input {
  height: 56px;
}
.login .btn--primary {
  height: 63px;
  width: 100%;
  margin-top: 26px;
  font-size: 16px;
  font-weight: bold;
}
.login__forgot {
  text-align: right;
}
.login__forgot a {
  color: #717171;
}
.login__forgot a:after {
  background-color: #717171;
}
.login__back {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
}
.login__text {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #717171;
  font-size: 12px;
}
.login__label {
  color: #114a94;
  font-size: 15px;
  font-weight: bold;
}
.login__noaccount {
  justify-content: center;
  margin-top: 28px;
  border-top: 1px solid rgba(186, 186, 186, 0.3725490196);
  padding-top: 50px;
  align-items: center;
}
@media screen and (max-width: 414px) {
  .login__noaccount {
    margin-top: 14px;
    padding-top: 25px;
  }
}
.login__noaccount p {
  font-size: 15px;
  font-weight: 400;
}
.login__noaccount a {
  font-weight: bold;
  font-size: 15px;
}
.login__noaccount .underline {
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .login .obnova .login__label,
  .login .obnova .login__text,
  .login .reset .login__label,
  .login .reset .login__text {
    text-align: left;
  }
}

.registration__submit {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.registration__submit--btn {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

@media screen and (max-width: 800px) {
  .registration__page {
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-top: 15px;
  }
}
.registration__page h1 {
  margin-bottom: 41px;
}
@media screen and (max-width: 800px) {
  .registration__page .cart__inputs--group {
    padding-left: 20px;
  }
}

.news__section {
  display: grid;
  gap: 55px;
  padding-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .news__section {
    gap: 30px;
    padding-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  .news__section {
    gap: 15px;
  }
}
.news__section .news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .news__section .news {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .news__section .news {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 800px) {
  .news-detail__page {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }
}
.news-detail__page .news-detail {
  margin-bottom: 25px;
}
.news-detail__page .news-detail__thumb img {
  width: 100%;
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}
.news-detail__page .news-detail__back {
  font-weight: bold;
}

.news__title {
  margin-bottom: 22px;
  font-size: 1.375rem;
  font-weight: #1d1d1d;
  text-align: center;
  line-height: 1.5;
  color: #002b6d;
}
@media (min-width: 768px) {
  .news__title {
    margin-bottom: 28px;
    text-align: left;
  }
}
.news__item {
  position: relative;
  display: block;
  background-color: #ffffff;
  padding-top: 185px;
  padding-bottom: 15px;
  padding-left: 18px;
  padding-right: 18px;
  margin-bottom: 10px;
  text-decoration: none !important;
  border: 1px solid #dedede;
  cursor: pointer;
}
@media (min-width: 768px) {
  .news__item {
    min-height: 170px;
    padding: 24px;
    padding-left: 220px;
    padding-right: 40px;
    margin-bottom: 8px;
  }
}
.news__item:hover {
  background-color: #002b6d;
  border: none;
  transition: all 200ms;
}
@media (min-width: 768px) {
  .news__item:hover {
    box-shadow: 6px 6px 12px 0px #828282;
  }
}
.news__item:hover .news__item-title,
.news__item:hover .news__date,
.news__item:hover .news__more {
  color: #ffffff;
  transition: all 200ms;
}
.news__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .news__image {
    width: 196px;
  }
}
.news__item-title {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: 1024px;
  color: #002b6d;
}
.news__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .news__bottom {
    position: absolute;
    width: calc(100% - 196px - 28px - 40px);
    bottom: 24px;
    right: 40px;
  }
}
.news__date {
  font-size: 0.875rem;
  color: #717171;
}
.news__more {
  position: relative;
  font-size: 0.875rem;
  font-weight: #1d1d1d;
  text-transform: uppercase;
  text-decoration: underline;
  color: #002b6d;
}
.news__more::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #fce300;
  transform: translateY(-50%);
}
.news__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-top: 20px;
  font-size: 0.875rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .news__button {
    width: 270px;
    margin-left: auto;
    margin-top: 50px;
  }
}

@media screen and (max-width: 800px) {
  .order__topbar {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end !important;
  }
}
.order .input--searchbar {
  width: 365.66px;
}
@media screen and (max-width: 500px) {
  .order .input--searchbar {
    max-width: 365.66px !important;
    width: 100% !important;
    margin-left: auto;
    position: relative;
  }
}
.order .input--searchbar::-moz-placeholder {
  opacity: 0.8;
}
.order .input--searchbar::placeholder {
  opacity: 0.8;
}
.order .btn--primary,
.order .btn--transparent {
  font-size: 14px;
  font-weight: bold;
}
.order__table {
  font-size: 13px;
  margin-bottom: 27px;
  margin-top: 50px;
  background-color: white;
}
@media screen and (max-width: 800px) {
  .order__table {
    margin-top: 15px;
  }
}
.order .table__productthumb {
  height: 44px;
}
.order__myorders {
  margin-bottom: 28px;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .order__myorders {
    display: none;
  }
}
.order__myorders--mobile {
  display: none;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .order__myorders--mobile {
    display: block;
  }
}
.order__myorders--mobile .thumb {
  height: 60px;
}
.order__myorders--mobile-label {
  opacity: 0.4;
}
.order__myorders--mobile__item {
  border-bottom: 0.1px solid #707070;
  padding-bottom: 10px;
  padding-top: 10px;
}
.order__myorders--mobile__item:first-child {
  border-top: 0.1px solid #707070;
}
.order__myorders--mobile__item .flex:first-child > div {
  width: 100%;
}
.order__myorders--mobile__item__bottom {
  padding-left: 10px;
  box-sizing: border-box;
  max-height: 0;
  transition: 0.4s;
  overflow: hidden;
}
.order__myorders--mobile__item__bottom.active {
  max-height: 110px;
}
@media screen and (max-width: 800px) {
  .order__myorders {
    margin-top: 40px;
  }
}
.order__myorders--topbar {
  display: flex;
}
.order__myorders--topbar button {
  font-weight: bold;
  font-size: 13px;
  color: #002b6d;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 0px;
  white-space: nowrap;
  width: 16.6666666667%;
}
.order__myorders--topbar button .asc,
.order__myorders--topbar button .desc {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 1em;
  background-size: 10px;
  background-position: 0px center;
  background-repeat: no-repeat;
}
.order__myorders--topbar button .asc {
  background-image: url(../img/angle-up-solid.svg);
}
.order__myorders--topbar button .desc {
  background-image: url(../img/angle-down-solid.svg);
}
.order__myorders--content {
  border: 0.1px solid #707070;
  border-radius: 5px;
}
.order__myorders--content--item {
  display: flex;
  align-items: center;
  min-height: 66px;
}
.order__myorders--content--item:not(:last-child) {
  border-bottom: 0.1px solid rgba(186, 186, 186, 0.3725490196);
}
.order__myorders--content--item p {
  padding-left: 20px;
  width: 16.6666666667%;
  text-align: left;
}
.order__myorders--content--item--thumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 5px;
  padding-right: 20px;
  width: 150px;
}
.order__myorders--content--item--thumb img {
  width: 30px;
  margin: 0 3px 0 3px;
}
.order__myorders--content--item .productthumb {
  height: 44px;
}
.order__text-center {
  text-align: center !important;
}
.order__text-right {
  text-align: right !important;
}
.order__text-light {
  font-size: 0.8125rem;
}

td {
  border-top: 0.1px solid #717171;
}

.text--blue {
  color: #002b6d;
}
.text--blue-light {
  color: #44566c;
}
.text--blue-lighter {
  color: #114a94;
}
.text--green {
  color: #84b518;
}
.text--red {
  color: #f90000;
}
.text--regular {
  font-weight: regular;
}
.text--bold {
  font-weight: bold;
}

.table__product--thumb {
  height: 55px;
  width: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
.table__product--name {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .table__product--name {
    margin-right: auto;
  }
}
.table__product--href {
  text-decoration: underline;
  color: #717171;
}
.table__product--date {
  font-size: 14px;
  color: #002b6d;
  font-weight: 400;
  min-width: 80px;
}
.table__row {
  min-height: 66px;
  padding-bottom: 10px;
  padding-top: 10px;
  box-sizing: border-box;
  align-items: center;
  display: flex;
  border-bottom: 0.1px solid #717171;
}
@media screen and (max-width: 1025px) {
  .table__row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.table__row--left {
  gap: 19.5px;
  align-items: center;
}
.table__row--left .col .flex {
  margin-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .table__row--left .col .flex {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
  .table__row--left .col .flex a {
    border: unset;
    text-align: left;
    line-height: 1.5;
    padding-left: 0 !important;
    padding-right: 0;
  }
}
.table__row--right {
  align-items: center;
}
@media screen and (max-width: 1025px) {
  .table__row--right {
    width: 100%;
    justify-content: flex-end;
    background-color: #f3f5f8;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}
.table__row--right .zakazka {
  margin-right: 84px;
}

.table__product--hrefall:first-child {
  padding-right: 20px;
}

.table__product--hrefall:nth-child(2) {
  padding-left: 20px;
}

.bought__table {
  margin-bottom: 75px;
  margin-top: 83px;
}
@media screen and (max-width: 800px) {
  .bought__table {
    margin-bottom: 40px;
    margin-top: 50px;
  }
}

.reklamace__table--heading {
  background-color: #f3f5f8;
  color: #002b6d;
  font-size: 15px;
  font-weight: bold;
  padding: 7px 14px;
  cursor: pointer;
}

.reklamace__table {
  margin-bottom: 35px;
}
.reklamace__table p {
  color: #002b6d;
}
.reklamace__table--arrow {
  position: absolute;
  top: 27px;
  right: 20px;
  transition: 0.4s;
}
.reklamace__table--arrow.active {
  transform: rotate(180deg);
}
.reklamace__table p.table__product--name {
  color: #1d1d1d;
}
.reklamace__table .table__row--left {
  flex-grow: 1;
  max-width: 575px;
}
@media screen and (min-width: 800px) {
  .reklamace__table .table__row--left .table__product--name {
    flex-grow: 1;
  }
}
@media screen and (max-width: 800px) {
  .reklamace__table .table__row--left {
    max-width: unset;
    width: 100%;
    padding-right: 40px;
    box-sizing: border-box;
  }
}
.reklamace__table .table__row {
  min-height: 80px;
  position: relative;
}
@media screen and (min-width: 800px) {
  .reklamace__table .table__row {
    gap: 60px;
  }
}
@media screen and (max-width: 800px) {
  .reklamace__table .table__row {
    height: auto;
    min-height: unset;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.reklamace__table .table__row--right {
  flex-grow: 1;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 800px) {
  .reklamace__table .table__row--right {
    max-width: 375px;
  }
}
@media screen and (max-width: 800px) {
  .reklamace__table .table__row--right {
    gap: 20px;
    margin-left: auto;
    margin-right: 34px;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    opacity: 0;
  }
  .reklamace__table .table__row--right a {
    padding: 20px 5px;
  }
  .reklamace__table .table__row--right.active {
    opacity: 1;
    max-height: 80px;
  }
}
.reklamace__table .table__row--right a {
  align-items: center;
  gap: 3px;
  display: flex;
}

.hiddenelement {
  opacity: 0;
  width: 150px !important;
}

.pt-10 {
  padding-top: 10px;
}

.dropdown__wrapper {
  position: relative;
  background-color: red;
}
.dropdown__content {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098) !important;
  z-index: 100;
  font-size: 0.8125rem;
  font-weight: 700;
}
.dropdown__item {
  display: block;
  padding: 11px 25px;
  color: #002b6d;
}
.dropdown__item:hover {
  color: #002b6d;
}
.dropdown__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 32px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  background-color: white;
}
.dropdown__button:focus {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098) !important;
  background-color: white !important;
}
.dropdown__button img {
  width: 12px;
  vertical-align: middle;
}

.product-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  position: relative;
  margin-top: -25px;
  grid-template-rows: max-content;
  gap: 10px;
}
.product-list.added {
  padding-bottom: 80px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 20%));
  justify-content: center;
  margin: 0 auto;
  gap: 0px;
}
@media screen and (max-width: 1280px) {
  .product-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .product-list.added {
    padding-left: 15px;
    padding-right: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 25%));
  }
}
@media screen and (max-width: 1024px) {
  .product-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .product-list.added {
    grid-template-columns: repeat(auto-fit, minmax(200px, 33%));
  }
}
@media screen and (max-width: 768px) {
  .product-list {
    grid-template-columns: 1fr 1fr;
  }
  .product-list.added {
    grid-template-columns: repeat(auto-fit, minmax(200px, 50%));
  }
}
.product-list:after {
  right: -1px;
  top: 0;
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  z-index: 1;
}
.product-list:before {
  left: 0;
  bottom: -1px;
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  z-index: 2;
}
.product-list__heading {
  background-color: #f3f5f8;
  min-height: 40px !important;
  height: auto !important;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.product-list__heading:after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-color: white;
  left: 0;
  top: 100%;
}

.slideshow img {
  width: 100%;
}

.reklamace {
  padding-bottom: 36px;
}
@media screen and (max-width: 650px) {
  .reklamace__topbar {
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
}
.reklamace__topbar .btn--primary {
  padding-left: 20px;
  padding-right: 15px;
  gap: 13px;
}
.reklamace__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 11px;
}
.reklamace .btn--buy-large {
  background-color: transparent;
  box-shadow: unset;
  flex-direction: row-reverse;
  padding-right: 0;
}
.reklamace__actions {
  max-width: 438px;
  width: 100%;
}
.reklamace__actions .zakazka {
  margin: 0;
  font-size: 14px;
}
.reklamace__actions .btn--buy-large {
  font-size: 14px;
}
.reklamace .table__product--hrefall {
  border: unset;
}
.reklamace__table .table__row--left {
  max-width: 100%;
}
.reklamace .table__row {
  border: unset;
  height: auto;
}
.reklamace .table__row:not(:first-child) {
  border-top: 0.1px solid #717171;
}
@media screen and (min-width: 940px) {
  .reklamace .table__row {
    height: 75px;
  }
}
@media screen and (max-width: 940px) {
  .reklamace .table__row {
    padding-top: 10px;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .reklamace .table__row .btn--buy-large {
    margin-right: 10px;
  }
  .reklamace .table__row > div {
    max-width: unset;
  }
  .reklamace .table__row > .between {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f3f5f8;
  }
}
.reklamace .bought__table {
  margin-top: 44px;
  margin-bottom: 40px;
  border-top: 0.1px solid #717171;
  border-bottom: 0.1px solid #717171;
}
@media screen and (min-width: 940px) {
  .reklamace .bought__table {
    padding-bottom: 35px;
    padding-top: 32px;
  }
}

.services__section {
  display: block;
}
@media screen and (max-width: 800px) {
  .services__section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.services__section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 146px;
  row-gap: 50px;
}
@media screen and (max-width: 1024px) {
  .services__section__content {
    grid-template-columns: 1fr;
  }
}
.services__section__menu {
  height: 56px;
  display: flex;
  width: 100%;
  background-color: #f3f5f8;
  align-items: flex-end;
}
.services__section__menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 42px 20px;
  box-sizing: border-box;
  color: #717171;
  line-height: 1;
  font-size: 13px;
}
.services__section__menu a.active {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background-color: white;
  font-weight: bold;
  color: #002b6d;
}
@media screen and (max-width: 1024px) {
  .services__section__menu {
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
    margin-left: -30px;
    margin-right: -30px;
    height: auto;
    padding: 15px 30px;
    gap: 14px;
  }
  .services__section__menu a {
    padding: 5px 20px;
    background-color: white;
  }
}
.services__section__thumb {
  position: relative;
  margin-bottom: 18px;
}
.services__section__thumb img {
  width: 100%;
}
.services__section__button {
  position: absolute;
  bottom: 30px;
  z-index: 1;
  right: 0;
}
.services__section .btn--secondary {
  position: absolute;
  right: 0;
  top: 0;
}
.services__section--programs .services__item {
  display: flex;
  gap: 53px;
}
.services__section--programs .services__item:not(:last-child) {
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(186, 186, 186, 0.3725490196);
}
@media screen and (max-width: 768px) {
  .services__section--programs .services__item {
    flex-direction: column;
  }
}
.services__section--programs .services__main-heading {
  color: #002b6d;
}
.services__section--programs .services__thumb {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .services__section--programs .services__thumb {
    text-align: center;
  }
}
.services__section--programs .services__thumb img {
  width: 100%;
  max-width: 297px;
  -o-object-fit: contain;
     object-fit: contain;
}
.services__section--programs .services__content {
  gap: 25px;
  display: grid;
}
.services__section--programs .services__description {
  max-width: 629px;
}
.services__section--programs .services__heading {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.25rem;
  color: #002b6d;
}
.services__section--programs .services__href {
  font-size: 16px;
  color: #002b6d;
}
.services__content {
  display: grid;
  gap: 140px;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .services__content {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1280px) {
  .services__content {
    gap: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .services__content {
    gap: 40px;
  }
}
.services__menu {
  background-color: #f3f5f8;
  min-height: 56px;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 840px) {
  .services__menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 680px) {
  .services__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.services__menu a {
  padding: 12px 42px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  color: #717171;
}
.services__menu a.active {
  color: #002b6d;
  font-weight: bold;
  background-color: white;
}
.services__thumb > img {
  width: 100%;
}
.services__button {
  text-align: right;
}

.services__content--dg1 {
  grid-template-columns: 1fr !important;
}

.settings__top {
  margin-top: 20px;
  height: 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.settings__top img {
  max-height: 165px;
}
.settings__dashboard {
  display: grid;
  grid-template-columns: 238px 1fr;
  gap: 71px;
}
@media screen and (max-width: 950px) {
  .settings__dashboard {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
.settings__alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-weight: 700;
}
.settings__alert--red {
  color: red;
  border: 1px solid red;
}
.settings__alert--green {
  color: green;
  border: 1px solid green;
}
.settings__left .left--item {
  background-color: #f7f7f7;
  height: 48px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  box-sizing: border-box;
  color: #717171;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
}
.settings__left .left--item:not(:first-child) {
  border-top: unset;
}
.settings__left .left--item.active {
  color: #002b6d;
  font-weight: bold;
  padding-left: 8px;
  border-left: 2px solid #002b6d;
}
.settings__left button.left--item {
  width: 100%;
}
.settings__left .btn--primary {
  margin-top: 10px;
  background-color: #114a94;
  margin-left: auto;
  max-width: 150px !important;
  width: auto;
  font-size: 13px;
  padding: 0;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-sizing: border-box;
}
.settings__right .btn--primary {
  margin: auto;
}
.settings__right .reklamace__table--heading {
  margin-bottom: 30px;
}
.settings__right-topbar {
  padding-bottom: 23.5px;
  border-bottom: 0.1px solid #717171;
  margin-bottom: 35px;
}
.settings__right-topbar p {
  font-size: 13px;
}
.settings__right-topbar b {
  color: #002b6d;
}
.settings__right--container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 37px;
       column-gap: 37px;
  row-gap: 11px;
  margin-bottom: 25px;
}
@media screen and (max-width: 950px) {
  .settings__right--container {
    gap: 25px;
  }
}
@media screen and (max-width: 700px) {
  .settings__right--container {
    grid-template-columns: 1fr;
  }
}
.settings__right--container__adress {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border: 0.1px solid rgba(186, 186, 186, 0.3725490196);
  gap: 12px;
}
.settings__right--container__adress p {
  color: #002b6d;
  line-height: 1.3;
  font-size: 14px;
}
.settings__right--container__adress--number {
  margin-top: 5px;
  color: #84b518 !important;
}
.settings__right--container__adress > img {
  height: 46px;
}
.settings__right--container__adress .flex.between {
  width: 100%;
}
.settings__right--container--small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 25px;
  max-width: 789px;
}
@media screen and (max-width: 700px) {
  .settings__right--container--small {
    grid-template-columns: 1fr;
  }
}
.settings__right--container--small .col {
  gap: 11px;
}
.settings__right--container--small .cart__inputs--group {
  display: block !important;
}
.settings__right .cart__inputs--group {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  max-width: 384px;
}
@media screen and (max-width: 700px) {
  .settings__right .cart__inputs--group {
    max-width: unset;
  }
}
.settings__right .cityinput {
  display: grid;
  gap: 11px;
  grid-template-columns: 1fr 110px;
  max-width: 384px;
}
.settings__right .cityinput input {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 700px) {
  .settings__right .cityinput {
    max-width: unset;
  }
}
.settings__right .newsletter--input {
  display: flex;
  gap: 10px;
  color: #717171;
  align-items: center;
  margin-top: 11px;
}
@media screen and (max-width: 800px) {
  .settings__right .newsletter--input {
    margin-top: 30px;
  }
}
.settings__right--news {
  position: relative;
}
@media screen and (min-width: 950px) {
  .settings__right--news {
    margin-top: -40px;
  }
}
.settings__right > a {
  margin-bottom: 25px;
  font-size: 13px;
  display: flex;
}
@media screen and (min-width: 800px) {
  .settings__right > a {
    margin-left: 170px;
  }
}
.settings__buttons {
  gap: 10px;
  display: flex;
}
@media screen and (max-width: 700px) {
  .settings__buttons {
    justify-content: center;
  }
}
.settings--news .reklamace__table--heading {
  font-weight: 400;
  margin-bottom: 33px;
}
.settings--news__container {
  display: flex;
  justify-content: space-between;
  max-width: 742px;
  flex-wrap: wrap;
  gap: 40px;
}
.settings--news__container > div {
  width: 300px;
  display: grid;
  gap: 10px;
}
@media screen and (max-width: 700px) {
  .settings--news__container > div {
    flex-grow: 1;
  }
}
.settings--news__container--heading {
  position: relative;
  margin-bottom: 21px;
  font-size: 13px;
  font-weight: bold;
  color: #002b6d;
}
.settings--news__container--heading:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #717171;
  height: 0.1px;
}
.settings--news__container--input {
  font-size: 13px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 4px;
  height: 31px;
  box-sizing: border-box;
  border: 0.2px solid #717171;
}
.settings .personal--settings .cart__inputs--group {
  display: grid;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  grid-template-columns: 155px 1fr;
  max-width: unset;
}

.around {
  justify-content: space-around !important;
}

.sizes__headers {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.sizes__par {
  display: block;
  margin-bottom: 20px;
}
.sizes__cols {
  display: grid;
}
@media (min-width: 1310px) {
  .sizes__cols {
    grid-template-columns: 60% 40%;
  }
}
.sizes__col {
  margin-right: 20px;
}
.sizes__video {
  position: relative;
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}
@media (min-width: 1310px) {
  .sizes__video {
    height: 400px;
  }
}
.sizes__heading {
  display: inline-block;
  margin: 30px 0 10px;
  font-size: 20px;
  font-weight: bold;
}
.sizes__items {
  list-style-type: none;
  padding: 0;
}
.sizes__target {
  display: none;
  width: 100%;
}
.sizes__target.active {
  display: block;
}
.sizes__item {
  display: inline-block;
  font-size: 13px;
  padding: 8px 15px;
  text-transform: uppercase;
  border: 0.1rem solid #979797;
  color: #575353;
  transition: 0.3s;
  cursor: pointer;
}
.sizes__item:hover {
  text-decoration: underline;
}
.sizes__item.active {
  background: #575353;
  border-color: #575353;
  color: #fff;
}
.sizes__note {
  font-size: 13px;
}

.size-table {
  width: 100%;
  table-layout: fixed;
  margin: 20px 0;
  max-width: 800px;
}
@media only screen and (max-width: 767px) {
  .size-table {
    display: block;
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__thead {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__tbody {
    display: block;
  }
}
.size-table__units {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .size-table__row {
    display: block;
    padding: 30px 0 0;
    border-bottom: 0.1rem solid #f6f6f6;
  }
}
.size-table__heading {
  font-size: 18px;
  font-weight: bold;
}
.size-table__item {
  padding: 15px 0;
  font-size: 13px;
  color: #575353;
  text-align: center;
  border: 1px solid #f6f6f6;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .size-table__item {
    padding: 0;
    position: relative;
    display: block;
    border-bottom: none;
    background: linear-gradient(90deg, #f6f6f6 50%, #fff 0%);
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item::before {
    box-sizing: border-box;
    float: left;
    padding: 15px 8px;
    width: 50%;
    content: attr(data-th);
    background: #f6f6f6;
    color: #222;
    font-size: 13px;
    text-transform: uppercase;
    word-wrap: break-word;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 0.1rem;
    background: #f6f6f6;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item:first-child {
    background: #f6f6f6;
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item:first-child .size-table__txt {
    display: inline-block;
    float: none;
    padding: 15px 0;
    width: auto;
    font-weight: bold;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item:first-child:before {
    content: attr(data-th) " ";
    float: none;
    padding: 15px 0;
    width: auto;
    font-size: 13px;
    font-weight: bold;
  }
}
@media only screen and (max-width: 767px) {
  .size-table__item:first-child::after {
    background: transparent;
  }
}
.size-table__item--heading {
  padding: 15px 0;
  background: #f6f6f6;
  color: #222;
  text-transform: uppercase;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .size-table__txt {
    box-sizing: border-box;
    float: right;
    padding: 15px 8px;
    width: 50%;
    word-wrap: break-word;
    font-size: 13px;
  }
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.iti {
  --iti-path-flags-1x: url("../img/intl/flags.png");
  --iti-path-flags-2x: url("../img/intl/flags@2x.png");
  --iti-path-globe-1x: url("../img/intl/globe.png");
  --iti-path-globe-2x: url("../img/intl/globe@2x.png");
  width: 100%;
}
