/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
}

body {
  color: var(--text-color);
  background: var(--body-bg-color);
  font-size: 1.6rem;
  font-weight: 400;
  font-family: "Lato", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-webkit-autofill:hover {
  transition: background-color 1s 9999s;
  -webkit-text-fill-color: var(--text-color);
  caret-color: var(--text-color);
}

button {
  padding: 0;
  border: none;
  outline: none;
  color: inherit;
  background: inherit;
  user-select: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.icon {
  filter: var(--icon-color);
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 991.98px) {
  .section-heading {
    font-size: 2.2rem;
    line-height: 145.455%;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.separate {
  height: 1px;
  margin: var(--margin) 0;
  background: var(--separate-bg);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.row > *, .container-fluid, .container {
  padding-left: calc(var(--grid-gutter-x) * 0.5);
  padding-right: calc(var(--grid-gutter-x) * 0.5);
}

.container-fluid, .container {
  --grid-gutter-x: 30px;
  --grid-gutter-y: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: 1370px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--grid-gutter-y) * -1);
  margin-left: calc(var(--grid-gutter-x) * 0.5 * -1);
  margin-right: calc(var(--grid-gutter-x) * 0.5 * -1);
}
.row > * {
  margin-top: var(--grid-gutter-y);
}

.col {
  flex: 1 0;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

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

.offset-0 {
  margin-left: 0;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.g-0,
.gx-0 {
  --grid-gutter-x: 0px;
}

.g-0,
.gy-0 {
  --grid-gutter-y: 0px;
}

.g-1,
.gx-1 {
  --grid-gutter-x: 7.5px;
}

.g-1,
.gy-1 {
  --grid-gutter-y: 7.5px;
}

.g-2,
.gx-2 {
  --grid-gutter-x: 15px;
}

.g-2,
.gy-2 {
  --grid-gutter-y: 15px;
}

.g-3,
.gx-3 {
  --grid-gutter-x: 30px;
}

.g-3,
.gy-3 {
  --grid-gutter-y: 30px;
}

.g-4,
.gx-4 {
  --grid-gutter-x: 45px;
}

.g-4,
.gy-4 {
  --grid-gutter-y: 45px;
}

.g-5,
.gx-5 {
  --grid-gutter-x: 90px;
}

.g-5,
.gy-5 {
  --grid-gutter-y: 90px;
}

@media (max-width: 1399.98px) {
  .container {
    max-width: 1140px;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --grid-gutter-x: 0px;
  }
  .g-xl-0,
  .gy-xl-0 {
    --grid-gutter-y: 0px;
  }
  .g-xl-1,
  .gx-xl-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-xl-1,
  .gy-xl-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-xl-2,
  .gx-xl-2 {
    --grid-gutter-x: 15px;
  }
  .g-xl-2,
  .gy-xl-2 {
    --grid-gutter-y: 15px;
  }
  .g-xl-3,
  .gx-xl-3 {
    --grid-gutter-x: 30px;
  }
  .g-xl-3,
  .gy-xl-3 {
    --grid-gutter-y: 30px;
  }
  .g-xl-4,
  .gx-xl-4 {
    --grid-gutter-x: 45px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --grid-gutter-y: 45px;
  }
  .g-xl-5,
  .gx-xl-5 {
    --grid-gutter-x: 90px;
  }
  .g-xl-5,
  .gy-xl-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --grid-gutter-x: 0px;
  }
  .g-lg-0,
  .gy-lg-0 {
    --grid-gutter-y: 0px;
  }
  .g-lg-1,
  .gx-lg-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-lg-1,
  .gy-lg-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-lg-2,
  .gx-lg-2 {
    --grid-gutter-x: 15px;
  }
  .g-lg-2,
  .gy-lg-2 {
    --grid-gutter-y: 15px;
  }
  .g-lg-3,
  .gx-lg-3 {
    --grid-gutter-x: 30px;
  }
  .g-lg-3,
  .gy-lg-3 {
    --grid-gutter-y: 30px;
  }
  .g-lg-4,
  .gx-lg-4 {
    --grid-gutter-x: 45px;
  }
  .g-lg-4,
  .gy-lg-4 {
    --grid-gutter-y: 45px;
  }
  .g-lg-5,
  .gx-lg-5 {
    --grid-gutter-x: 90px;
  }
  .g-lg-5,
  .gy-lg-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --grid-gutter-x: 0px;
  }
  .g-md-0,
  .gy-md-0 {
    --grid-gutter-y: 0px;
  }
  .g-md-1,
  .gx-md-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-md-1,
  .gy-md-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-md-2,
  .gx-md-2 {
    --grid-gutter-x: 15px;
  }
  .g-md-2,
  .gy-md-2 {
    --grid-gutter-y: 15px;
  }
  .g-md-3,
  .gx-md-3 {
    --grid-gutter-x: 30px;
  }
  .g-md-3,
  .gy-md-3 {
    --grid-gutter-y: 30px;
  }
  .g-md-4,
  .gx-md-4 {
    --grid-gutter-x: 45px;
  }
  .g-md-4,
  .gy-md-4 {
    --grid-gutter-y: 45px;
  }
  .g-md-5,
  .gx-md-5 {
    --grid-gutter-x: 90px;
  }
  .g-md-5,
  .gy-md-5 {
    --grid-gutter-y: 90px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --grid-gutter-x: 0px;
  }
  .g-sm-0,
  .gy-sm-0 {
    --grid-gutter-y: 0px;
  }
  .g-sm-1,
  .gx-sm-1 {
    --grid-gutter-x: 7.5px;
  }
  .g-sm-1,
  .gy-sm-1 {
    --grid-gutter-y: 7.5px;
  }
  .g-sm-2,
  .gx-sm-2 {
    --grid-gutter-x: 15px;
  }
  .g-sm-2,
  .gy-sm-2 {
    --grid-gutter-y: 15px;
  }
  .g-sm-3,
  .gx-sm-3 {
    --grid-gutter-x: 30px;
  }
  .g-sm-3,
  .gy-sm-3 {
    --grid-gutter-y: 30px;
  }
  .g-sm-4,
  .gx-sm-4 {
    --grid-gutter-x: 45px;
  }
  .g-sm-4,
  .gy-sm-4 {
    --grid-gutter-y: 45px;
  }
  .g-sm-5,
  .gx-sm-5 {
    --grid-gutter-x: 90px;
  }
  .g-sm-5,
  .gy-sm-5 {
    --grid-gutter-y: 90px;
  }
}
.d-block {
  display: block !important;
}

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

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

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

@media (max-width: 1399.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@keyframes shake {
  0%, 100% {
    translate: 0;
  }
  25%, 75% {
    translate: 4px;
  }
  50% {
    translate: -4px;
  }
}
html {
  --body-bg-color: #f6f6f6;
  --text-color: #1a162e;
  --icon-color: brightness(0) saturate(100%) invert(8%) sepia(7%) saturate(5802%) hue-rotate(212deg)
      brightness(92%) contrast(96%);
  --separate-bg: #d2d1d6;
  --header-bg-color: #eee;
  --header-shadow: rgba(237, 237, 246, 0.2);
  --top-act-bg-color: #fff;
  --top-act-group-shadow: rgba(237, 237, 246, 0.2);
  --header-act-dropdown-bg: #fff;
  --header-act-dropdown-shadow: rgba(200, 200, 200, 0.4);
  --header-act-dropdown-border-color: #d2d1d6;
  --cart-preview-item-border-color: #ebebeb;
  --dropdown-bg-color: #fff;
  --dropdown-shadow-color: rgba(200, 200, 200, 0.4);
  --menu-column-border-color: #d2d1d6;
  --navbar-bg-color: #fff;
  --navbar-shadow-color: rgba(200, 200, 200, 0.4);
  --cate-item-bg-color: #eee;
  --cate-item-thumb-bg-color: #fff;
  --cate-item-title-color: #000;
  --filter-btn-color: #6c6c72;
  --filter-btn-bg-color: #fff;
  --like-btn-bg-color: #fff;
  --like-btn-shadow-color: rgba(124, 124, 124, 0.2);
  --btn-color: #9e9da8;
  --btn-bg-color: #f8f8fb;
  --btn-outline-border-color: #d2d1d6;
  --product-card-bg-color: #fff;
  --product-card-shadow-color: rgba(237, 237, 246, 0.2);
  --filter-form-bg-color: #fff;
  --filter-form-shadow-color: rgba(200, 200, 200, 0.4);
  --filter-arrow-color: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6519%) hue-rotate(289deg)
      brightness(112%) contrast(100%);
  --filter-form-tag-color: #f8f8fb;
  --footer-bg-color: #eee;
  --auth-bg: #fafafd;
  --auth-content-bg: #fff;
  --form-input-border-color: #d2d1d6;
  --form-select-dialog-bg: #fff;
  --form-select-dialog-shadow: rgba(0, 0, 0, 0.05);
  --form-option-hover: #eaeaea;
  --product-detail-bg: #fff;
  --prod-info-container-shadow: rgba(237, 237, 246, 0.2);
  --prod-info-bg: #f6f6f6;
  --prod-prop-tag-bg: #ededf6;
  --prod-info-price: #000;
  --breadcrumb-bg: #f6f6f6;
  --breadcrumb-shadow: rgba(237, 237, 246, 0.2);
  --search-bar-bg: #fff;
  --review-card-bg: #fafafd;
  --checkout-page-breadcrumb-bg: #fff;
  --cart-info-bg: #fff;
  --cart-info-shadow: rgba(237, 237, 246, 0.2);
  --cart-info-control-border: #d2d1d6;
  --cart-info-border: #d2d1d6;
  --gift-card-icon-bg: rgba(255, 255, 255, 0.9);
  --gift-card-icon-shadow: rgba(237, 237, 246, 0.2);
  --modal-overlay-bg: rgba(0, 0, 0, 0.4);
  --modal-content-bg: #fff;
  --modal-content-shadow: rgba(237, 237, 246, 0.2);
  --payment-item-bg: #f6f6f6;
  --profile-sidebar-bg: #fff;
  --profile-sidebar-shadow: rgba(237, 237, 246, 0.2);
  --profile-user-shadow: rgba(237, 237, 246, 0.2);
  --profile-menu-link-hover: #eaeaea;
  --account-info-bg: #f6f6f6;
  --account-info-icon-bg: #fff;
}
@media (max-width: 991.98px) {
  html {
    --header-bg-color: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --cate-item-bg-color: #fff;
    --auth-bg: #fff;
    --product-detail-bg: #fafafd;
    --breadcrumb-bg: #fff;
    --product-detail-bg: #fafafd;
    --prod-info-container-bg: #fff;
    --prod-info-bg: transparent;
  }
}

html.dark {
  --body-bg-color: #292e39;
  --text-color: #eee;
  --icon-color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(294deg) brightness(111%)
      contrast(101%);
  --separate-bg: #292e39;
  --header-bg-color: #171c28;
  --header-shadow: rgba(0, 0, 0, 0.2);
  --top-act-bg-color: #292e39;
  --top-act-group-shadow: rgba(0, 0, 0, 0.2);
  --header-act-dropdown-bg: #333946;
  --header-act-dropdown-shadow: rgba(23, 28, 40, 0.4);
  --header-act-dropdown-border-color: #171c28;
  --cart-preview-item-border-color: #292e39;
  --dropdown-bg-color: #333946;
  --dropdown-shadow-color: rgba(23, 28, 40, 0.4);
  --dropdown-arrow-color: brightness(0) saturate(100%) invert(19%) sepia(9%) saturate(1376%) hue-rotate(183deg)
      brightness(91%) contrast(85%);
  --menu-column-border-color: #171c28;
  --menu-column-heading-color: #b9babe;
  --menu-column-link-color: #b9babe;
  --menu-column-icon-color: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(1355%) hue-rotate(211deg)
      brightness(110%) contrast(95%);
  --navbar-bg-color: #292e39;
  --navbar-shadow-color: rgba(23, 28, 40, 0.4);
  --cate-item-bg-color: #171c28;
  --cate-item-thumb-bg-color: #292e39;
  --cate-item-title-color: #fff;
  --filter-btn-color: #fff;
  --filter-btn-bg-color: #171c28;
  --like-btn-bg-color: #292e39;
  --like-btn-shadow-color: rgba(124, 124, 124, 0.2);
  --btn-color: #9e9da8;
  --btn-bg-color: #171c28;
  --btn-outline-border-color: #b9babe;
  --product-card-bg-color: #171c28;
  --product-card-shadow-color: rgba(0, 0, 0, 0.2);
  --filter-form-bg-color: #292e39;
  --filter-arrow-color: brightness(0) saturate(100%) invert(14%) sepia(38%) saturate(386%) hue-rotate(182deg)
      brightness(87%) contrast(86%);
  --filter-form-shadow-color: rgba(0, 0, 0, 0.4);
  --filter-form-tag-color: #171c28;
  --footer-bg-color: #171c28;
  --footer-form-input-color: #1a162e;
  --auth-bg: #171c28;
  --auth-intro-text: #b9babe;
  --auth-content-bg: #292e39;
  --auth-heading-color: #b9babe;
  --auth-intro-text-color: #b9babe;
  --form-input-border-color: #b9babe;
  --form-select-dialog-bg: #292e39;
  --form-select-dialog-shadow: rgba(23, 28, 40, 0.2);
  --form-option-hover: #171c28;
  --product-detail-bg: #292e39;
  --prod-info-container-bg: #171c28;
  --prod-info-container-shadow: rgba(23, 28, 40, 0.2);
  --prod-info-bg: #171c28;
  --prod-prop-tag-bg: #292e39;
  --prod-info-heading-color: #eee;
  --prod-prop-title-color: #eee;
  --prod-info-price: #eee;
  --breadcrumb-bg: #171c28;
  --breadcrumb-shadow: rgba(23, 28, 40, 0.2);
  --search-bar-bg: #171c28;
  --review-card-bg: #171c28;
  --checkout-page-breadcrumb-bg: #171c28;
  --cart-info-bg: #171c28;
  --cart-info-shadow: rgba(23, 28, 40, 0.2);
  --cart-info-border: #292e39;
  --gift-card-icon-bg: #292e39;
  --gift-card-icon-shadow: transparent;
  --modal-overlay-bg: rgba(0, 0, 0, 0.7);
  --modal-content-bg: #292e39;
  --modal-content-shadow: rgba(23, 28, 40, 0.2);
  --cart-info-edit-btn-icon: brightness(0) saturate(100%) invert(80%) sepia(5%) saturate(158%) hue-rotate(191deg)
      brightness(94%) contrast(88%);
  --cart-info-edit-btn-color: #b9babe;
  --payment-item-bg: #292e39;
  --profile-sidebar-bg: #171c28;
  --profile-sidebar-shadow: rgba(23, 28, 40, 0.2);
  --profile-menu-link-hover: #292e39;
  --account-info-bg: #292e39;
  --account-info-icon-bg: #171c28;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.logo__title {
  margin-left: 14px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
}

.dropdown {
  position: absolute;
  left: 0;
  z-index: 1;
  display: none;
  width: min(1240px, 100%);
  padding-top: 54px;
}
@media (max-width: 991.98px) {
  .dropdown {
    position: initial;
    padding-top: 0;
  }
}
.dropdown__inner {
  --inner-padding: 30px;
  position: relative;
  padding: var(--inner-padding);
  border-radius: 20px;
  background: var(--dropdown-bg-color);
  box-shadow: 0 40px 90px 20px var(--dropdown-shadow-color);
}
@media (max-width: 991.98px) {
  .dropdown__inner {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}
.dropdown__inner::before {
  position: absolute;
  top: -14px;
  left: var(--arrow-left-pos);
  content: url("../icons/dropdown-arrow.svg");
  transform: translateX(-50%);
  filter: var(--dropdown-arrow-color);
}
@media (max-width: 991.98px) {
  .dropdown__inner::before {
    content: none;
  }
}

.top-menu {
  --top-menu-main-width: 292px;
  --top-menu-height: calc(min(584px, 100vh - 158px) - var(--inner-padding) * 2);
  position: relative;
}
.top-menu__main {
  width: var(--top-menu-main-width);
  height: var(--top-menu-height);
  border-right: 1px solid var(--menu-column-border-color);
  overflow-y: auto;
}
@media (max-width: 991.98px) {
  .top-menu__main {
    width: 100%;
    height: auto;
    border: none;
  }
}

.menu-column {
  display: flex;
  gap: 14px;
}
.menu-column + .menu-column {
  margin-top: calc(var(--inner-padding) - 7px);
}
.menu-column__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
@media (max-width: 1199.98px) {
  .menu-column__icon {
    display: none;
  }
}
.menu-column__icon-1 {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.menu-column__icon-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--menu-column-icon-color);
}
.menu-column__content {
  flex: 1;
}
.menu-column__heading {
  margin-top: 6px;
  color: var(--menu-column-heading-color);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .menu-column__heading {
    margin-bottom: 19px;
  }
}
.menu-column__list {
  margin-top: 19px;
}
@media (max-width: 991.98px) {
  .menu-column__list {
    margin-top: 0;
  }
}
.menu-column__item--active > .menu-column__link, .menu-column__item:hover > .menu-column__link {
  color: #0071dc;
  font-weight: 500;
}
.menu-column__item--active .sub-menu {
  display: grid;
}
.menu-column__link {
  display: block;
  padding: 7px 0;
  color: var(--menu-column-link-color);
  font-size: 1.4rem;
  line-height: 142.857%;
}

.sub-menu {
  position: absolute;
  inset: 0 0 0 var(--top-menu-main-width);
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow-y: auto;
}
@media (max-width: 991.98px) {
  .sub-menu {
    position: initial;
    grid-template-columns: 1fr;
  }
  .sub-menu .menu-column__icon {
    display: block;
  }
}
.sub-menu__column {
  padding-left: var(--inner-padding);
}
@media (max-width: 991.98px) {
  .sub-menu__column {
    margin-top: 20px;
    padding-left: 0;
  }
}
.sub-menu__column .menu-column:nth-child(2) .menu-column__item:last-child .menu-column__link {
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .sub-menu__column .menu-column:nth-child(2) .menu-column__item:last-child .menu-column__link {
    padding-bottom: 7px;
  }
}
.sub-menu--not-main {
  position: initial;
  inset: initial;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--top-menu-height);
}
@media (max-width: 991.98px) {
  .sub-menu--not-main {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.sub-menu--not-main .sub-menu__column:first-child {
  padding-left: 0;
}

.slideshow {
  position: relative;
}
.slideshow__inner {
  position: relative;
  display: flex;
  padding-top: 34%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .slideshow__inner {
    padding-top: 50%;
  }
}
.slideshow__item {
  position: absolute;
  inset: 0;
  flex-shrink: 0;
  width: 100%;
}
.slideshow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.slideshow__page {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 16%;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.slideshow__num {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.slideshow__slider {
  position: relative;
  width: 100%;
  height: 4px;
  flex-shrink: 0;
  background: #fff;
}
.slideshow__slider::before, .slideshow__slider::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.slideshow__slider::before {
  left: -4px;
}
.slideshow__slider::after {
  right: -4px;
  transform: translate(50%, -50%);
}

.cate-item {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  padding: 20px;
  border-radius: 16px;
  background: var(--cate-item-bg-color);
}
@media (max-width: 1199.98px) {
  .cate-item {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .cate-item {
    flex-direction: row;
    gap: 18px;
  }
}
.cate-item__thumb {
  flex-shrink: 0;
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cate-item-thumb-bg-color);
}
@media (max-width: 1199.98px) {
  .cate-item__thumb {
    width: 100%;
    height: 150px;
  }
}
@media (max-width: 767.98px) {
  .cate-item__thumb {
    width: 88px;
    height: 88px;
  }
}
.cate-item__info {
  padding-right: 30px;
}
@media (max-width: 1399.98px) {
  .cate-item__info {
    padding-right: 0;
  }
}
.cate-item__title {
  color: var(--cate-item-title-color);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .cate-item__title {
    font-size: 1.8rem;
  }
}
.cate-item__desc {
  font-size: 1.6rem;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .cate-item__desc {
    font-size: 1.4rem;
    line-height: 142.857%;
  }
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 36px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--filter-btn-color);
  background: var(--filter-btn-bg-color);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 142.857%;
}

.like-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--like-btn-bg-color);
  box-shadow: 0 20px 60px var(--like-btn-shadow-color);
}
.like-btn:not(.like-btn--liked) .like-btn__icon--active, .like-btn--liked .like-btn__icon {
  display: none;
}
.like-btn__icon--active {
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--btn-bg-color);
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
}
.btn + .btn:not(.btn--no-margin-left) {
  margin-left: 20px;
}
.btn--small {
  height: 40px;
}
@media (max-width: 767.98px) {
  .btn--small {
    height: 46px;
  }
}
.btn--text {
  background: transparent;
}
.btn--primary {
  color: #1a162e;
  background: #ffb700;
}
.btn--outline {
  color: var(--btn-outline-color);
  border: 1px solid var(--btn-outline-border-color);
  background: transparent;
}
.btn--rounded {
  border-radius: 99px;
}
.btn--danger {
  color: var(--btn-danger-color, #fff);
  background: #ff2c2c;
}
.btn[disabled], .btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:hover {
  opacity: 0.9;
}
.btn__icon {
  margin-right: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px;
  border-radius: 20px;
  background: var(--product-card-bg-color);
  box-shadow: 0 20px 60px 10px var(--product-card-shadow-color);
}
.product-card__img-wrap {
  position: relative;
  padding-top: 100%;
}
.product-card__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s;
}
.product-card__thumb:hover {
  transform: scale(1.1);
}
.product-card__like-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-card__title {
  margin: 16px 0;
}
.product-card__title, .product-card__price, .product-card__rate {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.product-card__brand {
  margin: auto 0 16px 0;
  color: #9e9da8;
  font-size: 1.5rem;
  line-height: 146.667%;
}
.product-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__rate {
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter {
  position: absolute;
  top: 55px;
  right: 0;
  padding: 30px 0;
  border-radius: 20px;
  background: var(--filter-form-bg-color);
  filter: drop-shadow(0 40px 90px var(--filter-form-shadow-color));
  transition: opacity, visibility;
  transition-duration: 0.25s;
}
@media (max-width: 767.98px) {
  .filter {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
  }
}
.filter.hide {
  opacity: 0;
  visibility: hidden;
}
.filter-wrap {
  position: relative;
  z-index: 1;
}
.filter__heading {
  padding: 0 30px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 575.98px) {
  .filter__heading {
    padding: 0 20px;
  }
}
.filter__row {
  display: flex;
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .filter__row {
    flex-direction: column;
  }
}
.filter__content {
  padding: 0 30px;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (max-width: 767.98px) {
  .filter__content {
    max-height: calc(100vh - 348px);
  }
}
@media (max-width: 575.98px) {
  .filter__content {
    padding: 0 20px 60px 20px;
    max-height: calc(100vh - 200px);
  }
}
.filter__separate {
  width: 1px;
  margin: 0 30px;
  background: #eee;
}
@media (max-width: 1199.98px) {
  .filter__separate {
    flex-shrink: 0;
    width: 100%;
    height: 1px;
    margin: 30px 0;
  }
}
.filter__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 32px;
  padding: 0 30px;
}
@media (max-width: 575.98px) {
  .filter__footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 20px;
    background: var(--filter-form-bg-color);
  }
}
.filter__cancel, .filter__submit {
  height: 38px;
  padding: 0 10px;
}
@media (max-width: 575.98px) {
  .filter__cancel, .filter__submit {
    flex: 1;
    height: 42px;
  }
}
.filter__submit {
  font-size: 1.4rem;
}
.filter__arrow-up {
  position: absolute;
  top: -16px;
  right: 22px;
  height: 21px;
  filter: var(--filter-arrow-color);
}

.filter__form-label {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.filter__form-label--small {
  margin-bottom: 10px;
}
.filter__form-label--small, .filter__form-input {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
@media (max-width: 575.98px) {
  .filter__form-label--small, .filter__form-input {
    font-size: 1.6rem;
  }
}
.filter__form-group {
  margin-top: 20px;
}
.filter__form-group--inline {
  display: flex;
  column-gap: 30px;
}
.filter__form-slider {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 30px 0;
  background: #d2d1d6;
}
.filter__form-slider::before, .filter__form-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid #ffb700;
  background: var(--filter-form-bg-color);
  transform: translateY(-50%);
}
.filter__form-slider::before {
  left: var(--minimum);
}
.filter__form-slider::after {
  left: var(--maximum);
}
.filter__form-input, .filter__form-select-wrap {
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
.filter__form-input {
  width: 121px;
  height: 36px;
  padding: 0 12px;
}
@media (max-width: 575.98px) {
  .filter__form-input {
    width: 100%;
  }
}
.filter__form-select-wrap {
  display: flex;
  align-items: center;
  height: 45px;
}
.filter__form-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: var(--width, 108px);
  height: 35px;
  padding: 0 14px;
}
@media (max-width: 1199.98px) {
  .filter__form-select {
    width: 100%;
  }
}
.filter__form-select + .filter__form-select {
  border-left: 1px solid #d2d1d6;
}
.filter__form-select-arrow {
  cursor: pointer;
}
.filter__form-search {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 16px;
  width: 334px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
.filter__form-search-input {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  font-size: 1.5rem;
}
@media (max-width: 575.98px) {
  .filter__form-search-input {
    font-size: 1.6rem;
  }
}
.filter__form-search-input::placeholder {
  font-weight: 400;
}
.filter__form-search-icon {
  cursor: pointer;
}

.form:has(:invalid) .form__submit-btn {
  opacity: 0.5;
  pointer-events: none;
}
.form__row {
  display: flex;
  column-gap: 30px;
}
@media (max-width: 767.98px) {
  .form__row {
    flex-direction: column;
  }
}
.form__row > * {
  flex: 1;
}
.form__group {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .form__group {
    margin-top: 20px;
  }
}
.form__group--inline {
  display: flex;
  align-items: center;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__input-text {
  border-color: #ff2c2c;
  background: rgba(255, 44, 44, 0.1);
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__input-icon {
  display: none;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__error,
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__input-icon-error {
  display: block;
}
.form__text-area, .form__input-text {
  border-radius: 10px;
  border: 1px solid var(--form-input-border-color);
}
.form__text-area:focus-within, .form__input-text:focus-within {
  border-color: #0071dc;
}
.form__text-area {
  height: 100px;
}
.form__input-text {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 50px;
}
@media (max-width: 767.98px) {
  .form__input-text {
    height: 48px;
  }
}
.form__input-text--small {
  height: 42px;
}
.form__text-area-input, .form__input {
  flex: 1;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .form__text-area-input, .form__input {
    font-size: 1.6rem;
  }
}
.form__text-area-input::placeholder, .form__input::placeholder {
  color: #d2d1d6;
}
.form__text-area-input {
  padding: 12px;
}
.form__input-icon, .form__input-icon-error {
  margin-left: 12px;
  width: 24px;
}
.form__input-icon-error {
  display: none;
  animation: shake 0.3s;
}
.form__select-dialog {
  position: absolute;
  bottom: 44px;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-height: 310px;
  padding-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #d2d1d6;
  background: var(--form-select-dialog-bg);
  box-shadow: 0 0 8px var(--form-select-dialog-shadow);
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: opacity, visibility, translate;
  transition-duration: 0.2s;
}
@media (max-width: 767.98px) {
  .form__select-dialog {
    max-height: 280px;
  }
}
@media (max-width: 575.98px) {
  .form__select-dialog {
    position: fixed;
    inset: 0;
    min-width: initial;
    max-height: initial;
    border-radius: 0;
    border: none;
  }
}
.form__select-dialog.show {
  opacity: 1;
  visibility: visible;
  translate: 0;
}
.form__dialog-heading {
  padding: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}
.form__close-dialog {
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px 20px;
  font-size: 3rem;
  opacity: 0.8;
}
.form__search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0 20px;
  border-bottom: 1px solid #d2d1d6;
}
@media (max-width: 991.98px) {
  .form__search {
    height: 48px;
  }
}
@media (max-width: 575.98px) {
  .form__search {
    margin: 10px 30px 0px;
    border-radius: 10px;
    border: 1px solid #d2d1d6;
  }
}
.form__search-input {
  width: 100%;
  height: 100%;
}
.form__search-icon {
  width: 18px;
  margin-left: 10px;
}
@media (max-width: 767.98px) {
  .form__search-icon {
    width: 24px;
  }
}
.form__options-list {
  flex: 1;
  margin-top: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@supports (-webkit-touch-callout: none) {
  .form__options-list {
    padding-bottom: 300px;
  }
}
.form__option {
  padding: 8px 20px;
  font-size: 1.4rem;
  user-select: none;
}
@media (max-width: 991.98px) {
  .form__option {
    padding: 14px 30px;
    font-size: 1.6rem;
  }
}
.form__option--current {
  font-weight: 500;
  background: rgba(255, 183, 0, 0.5);
}
.form__option:not(.form__option--current):hover {
  background: var(--form-option-hover);
  cursor: pointer;
}
.form__error {
  display: none;
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
  color: #ff2c2c;
}
.form__checkbox {
  position: relative;
}
.form__checkbox::before, .form__checkbox::after {
  content: "";
  position: absolute;
}
.form__checkbox::before {
  width: 19px;
  height: 19px;
  border-radius: 6px;
  border: 1px solid #9e9da8;
}
.form__checkbox:has(:checked)::before {
  border-color: #ffb700;
  background: #ffb700;
}
.form__checkbox:has(:checked)::after {
  top: 3px;
  left: 2px;
  width: 14px;
  height: 8px;
  rotate: -45deg;
  border: 3px solid;
  border-color: transparent transparent #fff #fff;
}
.form__checkbox-label {
  margin-left: 26px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #9e9da8;
  user-select: none;
}
@media (max-width: 767.98px) {
  .form__checkbox-label {
    font-size: 1.4rem;
    font-weight: 400;
  }
}
.form__pull-right {
  margin-left: auto;
}
.form__label {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.form__label--medium {
  margin-bottom: 20px;
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .form__label--medium {
    margin-bottom: 10px;
  }
}
.form__label--small {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.form__label--small {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
@media (max-width: 575.98px) {
  .form__label--small {
    font-size: 1.6rem;
  }
}
.form__select-wrap {
  display: inline-flex;
  align-items: center;
  height: 45px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
.form__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: var(--width, 108px);
  height: 35px;
  padding: 0 14px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
@media (max-width: 1199.98px) {
  .form__select {
    width: 100%;
  }
}
.form__select + .form__select {
  border-left: 1px solid #d2d1d6;
}
.form__select-arrow {
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .form__select {
    font-size: 1.6rem;
  }
}
.form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form__tag {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #9e9da8;
  background: var(--filter-form-tag-color);
}
.form__tag:hover {
  color: inherit;
}

.message {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 16px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background: #fafafa;
}
.message--success {
  color: #fff;
  background: #71be34;
  border-color: #71be34;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  padding: 20px;
  border-radius: 10px;
  background: var(--breadcrumb-bg);
  box-shadow: 0 20px 60px 10px var(--breadcrumb-shadow);
}
@media (max-width: 767.98px) {
  .breadcrumbs {
    border-radius: 20px;
  }
}
.breadcrumbs__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  color: #9e9da8;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.breadcrumbs__link:hover, .breadcrumbs__link--current {
  color: inherit;
}
@media (max-width: 767.98px) {
  .breadcrumbs__link {
    font-size: 1.4rem;
  }
}

.search-bar {
  align-items: center;
  height: 50px;
  border-radius: 10px;
  background: var(--search-bar-bg);
}
.search-bar__input {
  flex: 1;
  padding-left: 15px;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 142.857%;
}
.search-bar__input::placeholder {
  font-weight: 400;
  color: #9e9da8;
}
.search-bar__submit {
  height: 100%;
  padding: 0 15px;
  border-radius: 10px;
}

.tab__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -30px;
}
.tab__item {
  padding: 8px 30px;
  color: #9e9da8;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .tab__item {
    font-size: 1.8rem;
  }
}
.tab__item--active {
  color: inherit;
}
.tab__contents {
  margin-top: 30px;
}
.tab__content {
  display: none;
}
.tab__content--active {
  display: block;
}
.tab__heading {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}

.review-card {
  padding: 30px;
  border-radius: 16px;
  background: var(--review-card-bg);
}
@media (max-width: 1199.98px) {
  .review-card {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .review-card {
    padding: 20px;
    text-align: left;
  }
}
.review-card__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .review-card__row {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .review-card__row {
    flex-direction: row;
  }
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .review-card__avatar {
    width: 60px;
    height: 60px;
  }
}
.review-card__name {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.review-card__quote {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.review-card__footer {
  margin-top: 20px;
}
.review-card__score {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}

.text-content {
  font-size: 1.6rem;
  line-height: 1.6;
}
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6,
.text-content p,
.text-content ul,
.text-content ol,
.text-content table,
.text-content blockquote {
  margin: 20px 0;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 600;
}
.text-content h1 {
  font-size: 2.6rem;
}
.text-content h2 {
  font-size: 2.4rem;
}
.text-content h3 {
  font-size: 2.2rem;
}
.text-content h4 {
  font-size: 2rem;
}
.text-content h5 {
  font-size: 1.8rem;
}
.text-content h6 {
  font-size: 1.6rem;
}
.text-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
}
.text-content img + em {
  display: block;
  font-style: italic;
  text-align: center;
}
.text-content ul,
.text-content ol {
  list-style-type: initial;
  padding-left: 20px;
}
.text-content blockquote {
  padding: 20px;
  border-left: 3px solid #ffb700;
  background: rgba(255, 183, 0, 0.1);
}
.text-content blockquote p {
  margin: 0;
}

.modal__overlay, .modal {
  position: fixed;
  inset: 0;
}

.modal {
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: 0.3s;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal__overlay {
  background: var(--modal-overlay-bg);
}
.modal--small .modal__content {
  width: min(360px, 100% - 40px);
}
.modal__content {
  position: relative;
  z-index: 1;
  padding: 30px 10px 30px 30px;
  width: min(640px, 100% - 40px);
  border-radius: 20px;
  background: var(--modal-content-bg);
  box-shadow: 0 20px 60px 10px var(--modal-content-shadow);
}
@media (max-width: 767.98px) {
  .modal__content {
    padding: 20px 0 20px 20px;
  }
}
.modal__heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 141.667%;
}
.modal__body {
  padding-right: 20px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.modal__text {
  padding-right: 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .modal__text {
    text-align: center;
  }
}
.modal__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 20px;
  margin-top: 48px;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .modal__bottom {
    gap: 20px;
    margin-top: 32px;
  }
}
@media (max-width: 767.98px) {
  .modal__btn {
    flex: 1;
  }
}

.payment-card {
  position: relative;
  z-index: 0;
  height: 100%;
  min-height: 170px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: var(--bg-color);
  overflow: hidden;
  user-select: none;
}
.payment-card__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.payment-card__top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.payment-card__type {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
.payment-card__number {
  margin-top: 38px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.payment-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}
.payment-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 175%;
}
.payment-card__value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
}

.new-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 170px;
  gap: 14px;
  border-radius: 10px;
  border: 1px dashed #d2d1d6;
}
.new-card__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}

.home {
  margin-bottom: 50px;
}
.home__container {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .home__container {
    margin-top: 30px;
  }
}
.home__heading {
  margin-bottom: 20px;
}
.home__cate {
  --grid-gutter-x: 51px;
}
@media (max-width: 1199.98px) {
  .home__cate {
    --grid-gutter-x: 24px;
  }
}
@media (max-width: 767.98px) {
  .home__cate {
    --grid-gutter-y: 20px;
  }
}
.home__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth {
  display: flex;
  min-height: 100vh;
  background: var(--auth-bg);
}
@supports (-webkit-touch-callout: none) {
  .auth {
    min-height: -webkit-fill-available;
  }
}
.auth__intro, .auth__content {
  flex: 1;
  padding: 0 30px;
}
.auth__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media (max-width: 767.98px) {
  .auth__intro-logo, .auth__intro-next {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
  }
  .auth__intro-logo {
    top: 80px;
  }
  .auth__intro-next {
    align-items: center;
    bottom: 50px;
    gap: 13px;
  }
  .auth__intro-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ededf6;
  }
  .auth__intro-dot--active {
    background: #b9babe;
  }
}
.auth__intro-img {
  width: min(422px, 100%);
}
.auth__intro-text {
  max-width: 412px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 144.444%;
  color: var(--auth-intro-text-color);
}
@media (max-width: 767.98px) {
  .auth__intro-text {
    font-size: 1.5rem;
  }
}
.auth__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--auth-content-bg);
}
@media (max-width: 767.98px) {
  .auth__content {
    position: fixed;
    inset: 0;
    overflow-y: auto;
    transition: transform 0.3s;
  }
  .auth__content.hide {
    transform: translate(100%);
  }
}
.auth__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
  width: min(460px, 100%);
}
@media (max-width: 767.98px) {
  .auth__content-inner {
    margin: 32px auto;
  }
}
.auth__heading {
  margin-top: 50px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 146.667%;
  color: var(--auth-intro-text);
}
@media (max-width: 767.98px) {
  .auth__heading {
    margin-top: 40px;
    font-size: 2.2rem;
  }
}
.auth__desc {
  margin-top: 10px;
  padding: 0 20px;
  color: #9e9da8;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .auth__desc {
    font-size: 1.4rem;
  }
}
.auth__message {
  margin-top: 20px;
}
.auth__form {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 575.98px) {
  .auth__form {
    margin-top: 0;
  }
}
.auth__link {
  color: #0071dc;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.auth__link:hover {
  opacity: 0.9;
}
.auth__btn-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .auth__btn-group {
    margin-top: 40px;
  }
}
.auth__btn {
  height: 50px;
  border-radius: 10px;
  font-size: 1.8rem;
}
.auth__text {
  margin-top: 108px;
  color: #9e9da8;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .auth__text {
    margin-top: 30px;
  }
}
.auth__text-link {
  font-size: inherit;
}

.product-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 50px;
  background: var(--product-detail-bg);
}
.product-container {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .product-container {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .prod-info-container {
    border-radius: 20px;
    background: var(--prod-info-container-bg);
    box-shadow: 0 20px 60px 10px var(--prod-info-container-shadow);
  }
}

@media (max-width: 991.98px) {
  .prod-main {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (max-width: 767.98px) {
  .prod-main {
    flex-direction: column;
  }
}
.prod-main__list {
  display: flex;
  overflow: hidden;
  padding: 0 30px;
}
@media (max-width: 1399.98px) {
  .prod-main__list {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .prod-main__list {
    flex: 1;
  }
}
@media (max-width: 767.98px) {
  .prod-main__list {
    padding: 16px;
  }
}
.prod-main__item {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 92%;
  flex-shrink: 0;
}
.prod-main__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-thumbs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .prod-thumbs {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .prod-thumbs {
    flex-direction: row;
    margin-bottom: 0;
  }
}
.prod-thumbs__img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.3s;
}
.prod-thumbs__img:hover, .prod-thumbs__img--active {
  border-color: #ffb700;
}

.prod-info {
  padding: 60px;
  background: var(--prod-info-bg);
}
@media (max-width: 1399.98px) {
  .prod-info {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .prod-info {
    padding: 16px;
    border-radius: 0 0 20px 20px;
  }
}
.prod-info__label {
  margin-top: 30px;
}
.prod-info__heading {
  color: var(--prod-info-heading-color);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 138.462%;
}
@media (max-width: 767.98px) {
  .prod-info__heading {
    margin-top: 16px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 144.444%;
  }
}
.prod-info__card {
  margin-top: 30px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #b9babe;
}
.prod-info__row {
  display: flex;
  align-items: center;
}
.prod-info__price {
  color: var(--prod-info-price);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.prod-info__tax {
  margin-left: 10px;
  padding: 2px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
  color: #67b044;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #67b044;
}
.prod-info__total-price {
  margin: 20px 0;
  color: var(--prod-info-price);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 138.462%;
}
.prod-info__add-to-cart {
  width: 100%;
  font-size: 1.8rem;
}
.prod-info__like-btn {
  margin-left: 20px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
  background: transparent;
}

.prod-props {
  padding-left: 30px;
}
@media (max-width: 1399.98px) {
  .prod-props {
    padding-left: 10px;
  }
}
@media (max-width: 1199.98px) {
  .prod-props {
    padding-left: 0;
  }
}

.prod-prop {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.prod-prop__icon {
  align-self: flex-start;
}
.prod-prop__title {
  color: var(--prod-prop-title-color);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.prod-prop__desc {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 142.857%;
}
.prod-prop__tag {
  background: var(--prod-prop-tag-bg);
}

.prod-tab__text-content {
  margin-top: -20px;
}

.checkout-page {
  padding-bottom: 50px;
}
.checkout-page__breadcrumbs {
  background: var(--checkout-page-breadcrumb-bg);
}

.checkout-container {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .checkout-container {
    margin-top: 20px;
  }
}

.cart-info {
  padding: 30px;
  border-radius: 20px;
  background: var(--cart-info-bg);
  box-shadow: 0 20px 60px 10px var(--cart-info-shadow);
}
@media (max-width: 767.98px) {
  .cart-info {
    padding: 16px;
  }
}
.cart-info + .cart-info {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .cart-info + .cart-info {
    margin-top: 20px;
  }
}
.cart-info__wrap--sticky {
  position: sticky;
  top: 30px;
}
.cart-info__top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.cart-info__back-arrow {
  position: relative;
  top: 2px;
  padding-right: 10px;
}
.cart-info__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 767.98px) {
  .cart-info__heading {
    font-size: 2rem;
  }
}
.cart-info__heading--lv2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .cart-info__heading--lv2 {
    font-size: 1.8rem;
  }
}
.cart-info__sub-heading {
  margin: 30px 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-info__desc {
  margin-top: 6px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
}
.cart-info__list {
  margin-top: -30px;
}
@media (max-width: 767.98px) {
  .cart-info__list {
    margin-top: -16px;
  }
}
.cart-info__bottom {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .cart-info__bottom {
    margin-top: 16px;
  }
}
.cart-info__bottom--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .cart-info__bottom--inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.cart-info__continue {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.cart-info__continue-link {
  display: flex;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-info__continue-link:hover {
  opacity: 0.8;
}
.cart-info__row {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
}
.cart-info__row--bold {
  font-weight: 700;
  font-size: 2.2rem;
}
.cart-info__row + .cart-info__row {
  margin-top: 10px;
}
.cart-info__form {
  margin-bottom: 30px;
}
.cart-info__form-row {
  flex-direction: row;
  gap: 20px;
}
.cart-info__separate {
  margin: 30px 0;
  height: 1px;
  background: var(--cart-info-border);
}
@media (max-width: 767.98px) {
  .cart-info__separate {
    margin: 15px 0;
  }
}
.cart-info__label, .cart-info__value {
  font-size: inherit;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-info__checkout-act {
  margin-top: 30px;
}
.cart-info__checkout-btn {
  width: 100%;
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  .cart-info__checkout-all {
    width: 100%;
  }
}
.cart-info__edit-btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 144.444%;
  color: var(--cart-info-edit-btn-color);
}
.cart-info__edit-btn:hover {
  opacity: 0.8;
}
.cart-info__edit-btn img {
  filter: var(--cart-info-edit-btn-icon);
}
.cart-info__checkbox {
  margin-top: 4px;
}
.cart-info__checkbox-input {
  appearance: none;
}
.cart-info__checkbox-input::before {
  content: url(../icons/checkbox-uncheck.svg);
}
.cart-info__checkbox-input:not(:checked)::before {
  filter: var(--icon-color);
}
.cart-info__checkbox-input:checked::before {
  content: url(../icons/checkbox-checked.svg);
}
.cart-info__check-all {
  margin: 30px 0;
}

.cart-item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--cart-info-border);
}
@media (max-width: 767.98px) {
  .cart-item {
    padding: 16px 0;
  }
  .cart-item:last-child {
    border: none;
  }
}
.cart-item__checkbox {
  align-self: flex-start;
}
.cart-item__img-wrap {
  flex-shrink: 0;
  margin: 0 30px 0 20px;
}
@media (max-width: 767.98px) {
  .cart-item__img-wrap {
    margin: 0 16px;
  }
}
.cart-item__img {
  width: 175px;
  height: 175px;
  object-fit: contain;
}
@media (max-width: 1399.98px) {
  .cart-item__img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767.98px) {
  .cart-item__img {
    width: 60px;
    height: 60px;
  }
}
.cart-item__content {
  display: flex;
  gap: 30px;
  flex: 1;
}
@media (max-width: 767.98px) {
  .cart-item__content {
    flex-direction: column;
    gap: 16px;
  }
}
.cart-item__left {
  flex: 1;
}
.cart-item__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-item__price-wrap {
  margin: 16px 0;
  color: #9e9da8;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-item__status {
  color: #67b044;
}
.cart-item__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}
@media (max-width: 767.98px) {
  .cart-item__row {
    gap: 10px 16px;
  }
}
.cart-item__ctrl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--cart-info-control-border);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .cart-item__ctrl {
    font-size: 1.4rem;
  }
}
.cart-item__ctrl-btn {
  display: flex;
}
.cart-item__qty {
  padding: 0 8px;
}
.cart-item__right {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  row-gap: 20px;
}
.cart-item__total-price {
  margin-bottom: auto;
  text-align: right;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .cart-item__total-price {
    font-size: 1.8rem;
    text-align: left;
  }
}
.cart-item__acts {
  display: flex;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .cart-item__acts {
    margin-top: 8px;
  }
}
.cart-item__act {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  color: #9e9da8;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.cart-item__act:hover {
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .cart-item__checkout-btn {
    max-width: 200px;
  }
}

.gift-card {
  display: flex;
  gap: 20px;
}
.gift-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: linear-gradient(0deg, var(--gift-card-icon-bg) 0%, var(--gift-card-icon-bg) 100%), #7644e1;
  box-shadow: 0 20px 60px 10px var(--gift-card-icon-shadow);
}
@media (max-width: 1399.98px) {
  .gift-card__icon-wrap {
    width: 66px;
    height: 66px;
  }
}
.gift-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.gift-card__desc {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 142.857%;
}

.user-address__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .user-address__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.user-address__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.user-address__desc {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
}
.user-address__btn {
  font-size: 1.8rem;
}
.user-address__message {
  margin-top: 30px;
  font-weight: 500;
}
.user-address__link {
  color: #0071dc;
  padding-left: 4px;
}

.address-card {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .address-card {
    flex-direction: column;
  }
}
.address-card__left {
  display: flex;
  gap: 16px;
  flex: 1;
}
.address-card__checkbox {
  align-self: flex-start;
}
.address-card__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.address-card__desc {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
}
.address-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 20px;
  list-style: disc inside;
}
@media (max-width: 767.98px) {
  .address-card__list {
    margin-top: 16px;
  }
}
.address-card__list-item {
  margin-left: 8px;
}
.address-card__ctrl {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.payment-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 30px;
  padding: 20px;
  border-radius: 20px;
  background: var(--payment-item-bg);
}
@media (max-width: 575.98px) {
  .payment-item {
    align-items: flex-start;
  }
}
.payment-item--pointer {
  cursor: pointer;
}
.payment-item__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.payment-item__desc, .payment-item__link {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
}
.payment-item__desc--low {
  color: #9e9da8;
}
.payment-item__link {
  margin: 0 -10px 0 auto;
  padding: 10px;
  color: #0071dc;
  font-weight: 500;
}
.payment-item__link:hover {
  opacity: 0.8;
}
.payment-item__thumb {
  flex-shrink: 0;
  width: 70px;
  height: 54px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .payment-item__thumb {
    width: 60px;
    height: 46px;
  }
}
.payment-item__content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 575.98px) {
  .payment-item__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.payment-item__checkbox {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 14px;
}
.payment-item__checkbox-input:checked + .payment-item__cost {
  color: inherit;
}
.payment-item__cost {
  color: #9e9da8;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}

.profile {
  margin-bottom: 50px;
}
.profile-container {
  margin-top: 30px;
}
.profile__sidebar {
  padding-bottom: 30px;
  border-radius: 20px;
  background: var(--profile-sidebar-bg);
  box-shadow: 0 20px 60px 10px var(--profile-sidebar-shadow);
}
.profile-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  border-radius: 20px 20px 0 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(26, 22, 46, 0) 0%, #1a162e 100%), url(../img/profile/cover.jpg) top center/cover no-repeat;
}
.profile-user__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.08);
  background: #ccc content-box;
}
.profile-user__name {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 144.444%;
}
.profile-user__desc {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.profile-menu {
  margin-top: 30px;
  padding: 0 30px;
}
.profile-menu__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.profile-menu__list {
  margin-top: 10px;
}
.profile-menu__link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
  transition: background-color 0.2s;
}
.profile-menu__link:hover {
  background: var(--profile-menu-link-hover);
}
.profile-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
}
.profile__desc {
  margin-bottom: 16px;
}

.account-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  background: var(--account-info-bg);
}
.account-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: var(--account-info-icon-bg);
}
.account-info__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.account-info__desc {
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 142.857%;
}

.favourite-item {
  display: flex;
  gap: 20px;
}
.favourite-item__thumb {
  width: 150px;
  height: 108px;
  object-fit: contain;
}
.favourite-item__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.favourite-item__row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}
@media (max-width: 575.98px) {
  .favourite-item__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.favourite-item__price {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}

.top-act__btn, .top-act__group, .top-act, .navbar__link, .navbar__list, .top-bar {
  display: flex;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 0;
  background: var(--header-bg-color);
}
@media (max-width: 991.98px) {
  .header {
    padding: 24px 0;
    box-shadow: 0 20px 60px 10px var(--header-shadow);
  }
}
@media (max-width: 575.98px) {
  .header {
    padding: 16px;
  }
}

.top-bar {
  position: relative;
}
@media (max-width: 767.98px) {
  .top-bar {
    justify-content: space-between;
  }
}
.top-bar__more {
  display: none;
  margin-right: 39px;
}
@media (max-width: 767.98px) {
  .top-bar__more {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .top-bar__more {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .top-bar__logo-img {
    width: 24px !important;
  }
}
@media (max-width: 991.98px) {
  .top-bar__logo-title {
    margin-left: 10px !important;
    font-size: 1.8rem !important;
  }
}

.navbar {
  margin-left: 144px;
}
@media (max-width: 1199.98px) {
  .navbar {
    margin-left: 32px;
  }
}
@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    inset: 0 50% 0 0;
    z-index: 9;
    margin-left: 0;
    border-radius: 0 20px 20px 0;
    background: var(--navbar-bg-color);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  .navbar.show {
    box-shadow: 0 40px 90px 20px var(--navbar-shadow-color);
    transform: translateX(0);
  }
  .navbar.show ~ .navbar__overlay {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767.98px) {
  .navbar {
    inset: 0 20% 0 0;
  }
}
.navbar__close-btn {
  padding: 20px 40px;
}
@media (max-width: 575.98px) {
  .navbar__close-btn {
    padding: 20px 0 10px 20px;
  }
}
@media (max-width: 991.98px) {
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    height: calc(100% - 80px);
    padding: 0 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 767.98px) {
  .navbar__list {
    height: calc(100% - 164px);
  }
}
@media (max-width: 575.98px) {
  .navbar__list {
    padding: 0 20px;
  }
}
.navbar__item:hover .dropdown {
  display: block;
}
.navbar__item:hover .sub-menu--not-main {
  display: grid;
}
@media (max-width: 991.98px) {
  .navbar__item {
    width: 100%;
  }
  .navbar__item:hover .dropdown {
    display: none;
  }
  .navbar__item--active .dropdown {
    display: block !important;
  }
}
.navbar__link {
  column-gap: 6px;
  height: 50px;
  padding: 0 15px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 991.98px) {
  .navbar__link {
    justify-content: space-between;
    padding: 0;
    font-size: 1.6rem;
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .navbar__link {
    height: 40px;
  }
}
.navbar__arrow {
  margin-top: 2px;
}
@media (max-width: 991.98px) {
  .navbar__arrow {
    rotate: -90deg;
    transition: rotate 0.3s;
  }
}
.navbar__item--active .navbar__arrow {
  rotate: 0deg;
}
@media (max-width: 991.98px) {
  .navbar__overlay {
    position: fixed;
    inset: 0;
    z-index: 8;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity, visibility;
    transition-duration: 0.5s;
  }
}

.top-act {
  column-gap: 20px;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .top-act {
    margin-left: 0;
  }
}
.top-act__group {
  border-radius: 8px;
  background: var(--top-act-bg-color);
  box-shadow: 0 20px 60px 10px var(--top-act-group-shadow);
}
.top-act__group--single .top-act__btn {
  padding: 0 13px;
}
.top-act__btn-wrap {
  position: relative;
}
.top-act__btn-wrap:hover .act-dropdown {
  opacity: 1;
  visibility: visible;
}
.top-act__btn {
  column-gap: 10px;
  min-width: 22px;
  height: 50px;
  padding: 0 20px;
  border-radius: 8px;
}
.top-act__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.top-act__separate {
  width: 1px;
  height: 30px;
  background: #ededf6;
}
.top-act__user {
  position: relative;
}
.top-act__user:hover .act-dropdown {
  opacity: 1;
  visibility: visible;
}
.top-act__user-dropdown {
  width: min(260px, 100vw) !important;
}
.top-act__avatar {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: 0 4px 14px 2px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .top-act__sign-up {
    height: 36px !important;
    padding: 0 8px !important;
    min-width: auto !important;
  }
}

.nav-btn {
  align-items: center;
  padding: 0 40px;
  line-height: 50px;
}
@media (max-width: 575.98px) {
  .nav-btn {
    padding: 0 20px;
    line-height: 40px;
  }
}
.nav-btn__title, .nav-btn__qnt {
  margin-left: 18px;
  font-size: 1.5rem;
  font-weight: 500;
}
.nav-btn__qnt {
  margin-left: auto;
}

.act-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1;
  padding-top: 24px;
  width: min(400px, 100vw);
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: opacity, visibility;
  transition-duration: 0.25s;
}
.act-dropdown__inner {
  position: relative;
  padding: 16px 30px;
  border-radius: 16px;
  background: var(--header-act-dropdown-bg);
  box-shadow: 0 40px 90px 20px var(--header-act-dropdown-shadow);
}
.act-dropdown__inner::before {
  position: absolute;
  top: -12px;
  right: 18px;
  content: url(../icons/dropdown-arrow.svg);
  filter: var(--dropdown-arrow-color);
}
.act-dropdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.act-dropdown__heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.act-dropdown__view-all {
  color: #0071dc;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 145.455%;
}
.act-dropdown__view-all:hover {
  opacity: 0.8;
}
.act-dropdown__list {
  padding-bottom: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.act-dropdown__summary {
  margin-top: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--header-act-dropdown-border-color);
}
.act-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
}
.act-dropdown__row + .act-dropdown__row {
  margin-top: 10px;
}
.act-dropdown__row--bold {
  font-weight: 500;
}
.act-dropdown__label, .act-dropdown__value {
  font-size: 1.6rem;
  line-height: 145.455%;
}
.act-dropdown__checkout {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 16px;
  border-top: 1px solid var(--header-act-dropdown-border-color);
}
.act-dropdown__checkout-btn {
  width: min(180px, 100%);
}

.cart-preview-item__img-wrap {
  position: relative;
  padding-top: 100%;
  border: 1px solid var(--cart-preview-item-border-color);
  border-radius: 10px;
}
.cart-preview-item__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-preview-item__name {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 142.857%;
}
.cart-preview-item__price {
  margin-top: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}

.user-menu__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.user-menu__name {
  font-weight: 500;
}
.user-menu__username {
  margin-top: 8px;
  font-size: 1.5rem;
}
.user-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  cursor: pointer;
}
.user-menu__link:hover {
  opacity: 0.8;
}
.user-menu__icon {
  width: 20px;
  height: 20px;
}

.footer {
  padding: 50px 0;
  background: var(--footer-bg-color);
  font-size: 1.4rem;
  line-height: 1.4;
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr 0.4fr 0.4fr 0.4fr;
  gap: 80px;
}
@media (max-width: 1199.98px) {
  .footer__row {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .footer__row {
    grid-template-columns: 1fr;
  }
}
.footer__heading {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 500;
}
.footer__desc {
  width: 80%;
  line-height: 1.6;
}
@media (max-width: 575.98px) {
  .footer__desc {
    width: 100%;
  }
}
.footer__list {
  margin-top: -7px;
}
.footer__link {
  display: block;
  padding: 7px 0;
}
.footer__link:hover {
  color: #0071dc;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
@media (max-width: 575.98px) {
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #000;
  transition: transform 0.25s;
}
@media (max-width: 575.98px) {
  .footer__social-link {
    width: 42px;
    height: 42px;
  }
}
.footer__social-link:hover {
  transform: translateY(-4px);
}
.footer__social-link--facebook {
  background: #3f51b5;
}
.footer__social-link--youtube {
  background: #f44336;
}
.footer__social-link--tiktok {
  background: #212121;
}
.footer__social-link--twitter-x {
  background: #212121;
}
.footer__social-link--linkedin {
  background: #0288d1;
}
.footer__social-icon {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(90%) sepia(70%) saturate(2%) hue-rotate(337deg) brightness(108%) contrast(101%);
}
.footer__form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .footer__form {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .footer__form {
    width: 100%;
  }
}
.footer__form-input, .footer__form-submit {
  height: 42px;
  padding: 0 16px;
  border-radius: 6px;
}
.footer__form-input {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--footer-form-input-color);
  background: #fff;
}
@media (max-width: 575.98px) {
  .footer__form-input {
    font-size: 1.6rem;
  }
}
.footer__form-input::placeholder {
  font-size: 1.4rem;
  font-weight: 400;
}
.footer__form-submit {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #1a162e;
  background: #ffb700;
}
.footer__form-submit:hover {
  opacity: 0.9;
}

/*# sourceMappingURL=main.css.map */
