/* 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%;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  color: inherit;
}

button {
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: text;
}
@media (max-width: 767.98px) {
  input {
    font-size: 1.6rem;
  }
}

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

@media (max-width: 767.98px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

i,
em {
  font-style: italic;
}

strong,
b {
  font-weight: 600;
}

.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: 1370px;
  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 {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}
html.dark {
  --bg-color: #292e39;
  --text-color: #fff;
  --icon-color: brightness(0) saturate(100%) invert(94%) sepia(94%) saturate(14%) hue-rotate(314deg) brightness(104%)
    contrast(100%);
  --header-bg-color: #171c28;
  --top-act-group-bg-color: #292e39;
  --top-act-group-shadow-color: rgba(0, 0, 0, 0.2);
  --avatar-shadow-color: rgba(0, 0, 0, 0.08);
  --header-shadow: 0px 20px 60px 10px rgba(0, 0, 0, 0.2);
  --separate-color: #505665;
  --primary-button-text-color: #1a162e;
  --outline-button-bg-color: rgba(255, 255, 255, 0.1);
  --error-text-color: #f37272;
  --error-border-color: #f37272;
  --error-bg-color: rgba(243, 114, 114, 0.05);
  --form-tag-color: #9e9da8;
  --form-tag-bg-color: #292e39;
  --form-tag-color-hover: #fff;
  --form-tag-bg-color-hover: #343a48;
  --dropdown-bg-color: #303644;
  --dropdown-shadow: 0px 40px 90px 20px rgba(23, 28, 40, 0.4);
  --dropdown-arrow-color: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(701%) hue-rotate(184deg)
    brightness(93%) contrast(94%);
  --border-color: #171c28;
  --menu-icon-color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(100deg)
    brightness(103%) contrast(101%);
  --card-bg-color: #171c28;
  --sidebar-bg-color: #303644;
  --sidebar-shadow: 0px 40px 90px 20px rgba(23, 28, 40, 0.4);
  --cate-item-bg-color: #171c28;
  --cate-item-thumb-bg-color: #292e39;
  --filter-btn-color: #d2d1d6;
  --filter-btn-bg-color: #171c28;
  --filter-bg-color: var(--dropdown-bg-color);
  --filter-shadow: var(--dropdown-shadow);
  --product-card-bg-color: #171c28;
  --product-card-shadow: 00px 20px 60px 10px rgba(0, 0, 0, 0.2);
  --like-btn-color: #292e39;
  --like-btn-shadow: 0px 20px 60px rgba(124, 124, 124, 0.2);
  --auth-intro-bg-color: #171c28;
  --auth-content-bg-color: #292e39;
  --auth-intro-text-color: #9e9da8;
  --auth-checkbox-label-color: #9e9da8;
  --auth-checkbox-label-color-checked: #fff;
  --product-page-bg-color: #292e39;
  --prod-info-bg-color: #171c28;
  --thumb-border-color: #3c4358;
  --tag-green-bg-color: rgba(103, 176, 68, 0.2);
  --breadcrumb-bg-color: #171c28;
  --breadcrumb-text-color-current: #fff;
  --breadcrumb-shadow: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
  --search-bar-bg-color: #171c28;
  --search-bar-placeholder-color: #9e9da8;
  --checkout-promo-illus-bg-color: rgba(118, 68, 225, 0.2);
  --footer-input-border-color: #9e9da8;
  --footer-heading-text-color: #9e9da8;
  --footer-social-icon-color: brightness(0) saturate(100%) invert(64%) sepia(7%) saturate(338%) hue-rotate(206deg)
    brightness(97%) contrast(88%);
  --table-head-bg-color: #3c424e;
  --review-card-bg-color: #171c28;
}
@media (max-width: 991.98px) {
  html.dark {
    --footer-bg-color: var(--header-bg-color);
  }
}

html {
  --bg-color: #fafafd;
  --text-color: #1a162e;
  --icon-color: brightness(0) saturate(100%) invert(6%) sepia(82%) saturate(794%) hue-rotate(218deg) brightness(95%)
    contrast(95%);
  --header-bg-color: #fff;
  --top-act-group-bg-color: #f1f3f5;
  --top-act-group-shadow-color: rgba(237, 237, 246, 0.2);
  --avatar-shadow-color: rgba(0, 0, 0, 0.08);
  --header-shadow: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --separate-color: #d2d1d6;
  --primary-button-text-color: #171c28;
  --outline-button-bg-color: #f6f6f6;
  --error-text-color: #e13030;
  --error-border-color: #e13030;
  --error-bg-color: rgba(255, 48, 48, 0.05);
  --form-tag-color: #9e9da8;
  --form-tag-bg-color: #f8f8fb;
  --form-tag-color-hover: #171c28;
  --form-tag-bg-color-hover: #ededf0;
  --dropdown-bg-color: #fff;
  --dropdown-shadow: 0px 40px 90px 20px rgba(200, 200, 200, 0.4);
  --border-color: #d2d1d6;
  --card-bg-color: #fff;
  --sidebar-bg-color: #fff;
  --sidebar-shadow: 0px 40px 90px 20px rgba(200, 200, 200, 0.4);
  --cate-item-bg-color: #fff;
  --cate-item-thumb-bg-color: #fff;
  --filter-btn-color: #6c6c72;
  --filter-btn-bg-color: #fff;
  --filter-bg-color: var(--dropdown-bg-color);
  --filter-shadow: var(--dropdown-shadow);
  --product-card-bg-color: #fff;
  --product-card-shadow: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --like-btn-color: #fff;
  --like-btn-shadow: 0px 20px 60px rgba(124, 124, 124, 0.2);
  --auth-intro-bg-color: #fafafd;
  --auth-content-bg-color: #fff;
  --auth-intro-text-color: #fff;
  --auth-checkbox-label-color: #9e9da8;
  --auth-checkbox-label-color-checked: #1a162e;
  --product-page-bg-color: #fafafd;
  --prod-info-bg-color: #fff;
  --thumb-border-color: #e6e6eb;
  --tag-green-bg-color: rgba(103, 176, 68, 0.2);
  --breadcrumb-bg-color: #fff;
  --breadcrumb-text-color: #9e9da8;
  --breadcrumb-text-color-current: #1a162e;
  --breadcrumb-shadow: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --search-bar-bg-color: #fff;
  --search-bar-placeholder-color: #9e9da8;
  --checkout-promo-illus-bg-color: rgba(118, 68, 225, 0.1);
  --footer-bg-color: var(--header-bg-color);
  --footer-heading-text-color: #5e6b81;
  --footer-input-border-color: #d2d1d6;
  --footer-input-placeholder-color: #9e9da8;
  --footer-social-bg-color: #f5f5f7;
  --footer-social-icon-color: brightness(0) saturate(100%) invert(83%) sepia(6%) saturate(281%) hue-rotate(184deg)
    brightness(93%) contrast(92%);
  --footer-social-icon-color-hover: brightness(0) saturate(100%) invert(32%) sepia(5%) saturate(1416%)
    hue-rotate(183deg) brightness(100%) contrast(99%);
  --footer-copyright: #9e9da8;
  --table-head-bg-color: #edeff3;
  --review-card-bg-color: #fff;
}

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

.header {
  background-color: var(--header-bg-color);
  box-shadow: var(--header-shadow);
}

.top-bar {
  position: relative;
  padding: 30px 0;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .top-bar {
    padding: 20px 0;
  }
}
@media (max-width: 767.98px) {
  .top-bar {
    padding: 16px 0;
  }
}
.top-bar__menu--icon {
  width: 24px;
}
@media (max-width: 991.98px) {
  .top-bar__logo {
    margin-left: 24px;
  }
}
@media (max-width: 767.98px) {
  .top-bar__logo {
    margin-left: 12px;
    margin-right: auto;
  }
  .top-bar__logo-text {
    font-size: 1.8rem;
  }
}
.top-bar__logo-img {
  width: 24px;
}

.navbar {
  margin-left: 129px;
}
.navbar__close-btn {
  display: none;
  padding: 13px 26px 13px 0;
  line-height: 0;
}
@media (max-width: 991.98px) {
  .navbar__close-btn {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .navbar__close-btn {
    padding: 10px 26px 10px 0;
  }
}
.navbar__btn {
  align-items: center;
  height: 50px;
}
.navbar__btn--title, .navbar__btn--qty {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.navbar__btn--title {
  padding-left: 15px;
}
.navbar__btn--qty {
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .navbar__btn {
    height: 44px;
  }
}
.navbar__overlay {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
@media (max-width: 991.98px) {
  .navbar__overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    z-index: 8;
  }
}
@media (max-width: 1399.98px) {
  .navbar {
    margin-left: 100px;
  }
}
@media (max-width: 1199.98px) {
  .navbar {
    margin-left: 24px;
  }
}
@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    background-color: var(--sidebar-bg-color);
    inset: 0 50% 0 0;
    margin-left: 0;
    padding: 20px 32px;
    z-index: 9;
    translate: -100%;
    transition: translate 0.3s;
    border-radius: 0 20px 20px 0;
  }
  .navbar.show {
    visibility: visible;
    opacity: 1;
    translate: 0;
    box-shadow: var(--sidebar-shadow);
  }
  .navbar.show ~ .navbar__overlay {
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
  }
}
@media (max-width: 767.98px) {
  .navbar {
    inset: 0 20% 0 0;
    padding: 12px 24px;
  }
}
.navbar__list {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 991.98px) {
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    height: calc(100vh - 90px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 767.98px) {
  .navbar__list {
    height: calc(100vh - 160px);
  }
}
.navbar__arrow {
  transition: rotate 0.3s;
}
.navbar__item {
  padding: 0 15px;
}
.navbar__item:hover .dropdown {
  display: block;
}
.navbar__item:hover .navbar__arrow {
  rotate: -90deg;
}
@media (max-width: 1199.98px) {
  .navbar__item {
    padding: 0 10px;
  }
}
@media (max-width: 991.98px) {
  .navbar__item {
    padding: 0;
    width: 100%;
    rotate: 0deg;
  }
  .navbar__item:hover .dropdown {
    display: none;
  }
  .navbar__item--active .dropdown {
    display: block !important;
  }
  .navbar__item--active .navbar__arrow {
    rotate: -90deg;
  }
}
.navbar__link {
  gap: 6px;
  height: 50px;
}
@media (max-width: 991.98px) {
  .navbar__link {
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .navbar__link {
    height: 44px;
  }
}

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

.act-dropdown {
  display: none;
  position: absolute;
  top: 40px;
  right: -70px;
  padding-top: 20px;
}
.act-dropdown__inner {
  width: 600px;
  background-color: var(--dropdown-bg-color);
  box-shadow: var(--dropdown-shadow);
  border-radius: 16px;
  padding: 30px;
}
.act-dropdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.act-dropdown__title {
  font-size: 1.8rem;
  font-weight: 600;
}
.act-dropdown__view-all {
  color: #0071dc;
}
.act-dropdown__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
  margin: 30px 0;
  border-top: 1px solid var(--separate-color);
  border-bottom: 1px solid var(--separate-color);
}
.act-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 1.6rem;
}
.act-dropdown__row--bold {
  font-size: 1.8rem;
  font-weight: 600;
}
.act-dropdown__action {
  display: flex;
  justify-content: flex-end;
}
.act-dropdown__checkout {
  min-width: 200px;
}
.act-dropdown__divider {
  height: 1px;
  background-color: var(--separate-color);
  margin: 20px 0;
}

.cart-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cart-item__img-wrap {
  position: relative;
  padding-top: 100%;
  border: 1px solid var(--separate-color);
  border-radius: 10px;
  margin-bottom: 14px;
}
.cart-item__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-item__title {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 4px;
}
.cart-item__price {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}

.footer {
  padding: 60px 0;
  height: auto;
  background-color: var(--footer-bg-color);
  font-size: 1.4rem;
}
.footer__row {
  display: grid;
  grid-template-columns: 330px 1fr 1fr 1fr 1fr;
  gap: 32px;
  height: auto;
}
@media (max-width: 1199.98px) {
  .footer__row {
    gap: 24px;
    grid-template-columns: 300px 1fr 120px 1fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .footer__row {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}
.footer__brand {
  margin-right: 32px;
}
@media (max-width: 991.98px) {
  .footer__brand {
    width: min(400px, 100%);
    margin-right: 0;
  }
}
.footer__logo {
  margin-bottom: 36px;
}
@media (max-width: 991.98px) {
  .footer__logo {
    margin-left: 0 !important;
  }
}
.footer__desc, .footer__help-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}
.footer__newsletter {
  margin-top: 36px;
}
.footer__form {
  display: flex;
  margin-top: 16px;
}
.footer__input {
  padding: 0 16px;
  margin-right: 8px;
  width: 100%;
  height: 38px;
  border-radius: 6px;
  border: 1px solid var(--footer-input-border-color);
  background: var(--footer-bg-color);
  font-size: 1.4rem;
  font-weight: 400;
}
.footer__input::placeholder {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--footer-input-placeholder-color);
}
@media (max-width: 991.98px) {
  .footer__input {
    font-size: 1.6rem;
  }
}
@media (max-width: 575.98px) {
  .footer__input {
    height: 44px;
  }
}
.footer__heading {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--footer-heading-text-color);
}
.footer__link, .footer__text {
  padding: 12px 0;
}
.footer__link {
  display: inline-block;
  line-height: 140%;
}
.footer__link:hover {
  color: #0071dc;
}
.footer__label {
  margin: 20px 0 0 0;
  font-weight: 500;
  color: var(--footer-heading-text-color);
}
.footer__list li:first-child .footer__label {
  margin-top: 36px;
}
.footer__bottom {
  display: grid;
  grid-template-columns: 330px 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  align-items: center;
  width: 100%;
}
@media (max-width: 991.98px) {
  .footer__bottom {
    margin-top: 80px;
    gap: 0px;
  }
}
@media (max-width: 767.98px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.footer__copyright {
  grid-column: 1/span 4;
  color: var(--footer-copyright);
}
@media (max-width: 767.98px) {
  .footer__copyright {
    order: 2;
  }
}
.footer__socials {
  --social-icon-padding: 6px;
  --social-icon-padding-mobile: 12px;
  display: flex;
  transform: translateX(calc(-1 * var(--social-icon-padding)));
}
@media (max-width: 767.98px) {
  .footer__socials {
    order: 1;
    transform: translateX(calc(-1 * var(--social-icon-padding-mobile)));
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  padding: var(--social-icon-padding);
  border-radius: 4px;
  transition: background, filter, transform;
  transition-duration: 0.2s;
}
.footer__social-link:hover {
  background: var(--footer-social-bg-color);
  transform: translateY(-2px);
}
.footer__social-link:hover .footer__social-icon {
  filter: var(--footer-social-bg-color-hover);
}
@media (max-width: 767.98px) {
  .footer__social-link {
    padding: var(--social-icon-padding-mobile);
    margin-right: 10px;
  }
}
.footer__social-icon {
  width: 18px;
  height: 18px;
  filter: var(--footer-social-icon-color);
}
@media (max-width: 767.98px) {
  .footer__social-icon {
    width: 24px;
    height: 24px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo__img {
  width: 24px;
}
.logo__text {
  font-family: "Gordita", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
  color: var(--text-color);
}

.menu__head {
  display: flex;
  align-items: center;
}

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

.menu {
  --main-menu-column-width: 280px;
  --max-inner-height: calc(min(582px, 100vh - 150px) - var(--inner-padding) * 2);
  position: relative;
}
@media (max-width: 991.98px) {
  .menu {
    padding: 12px 0px;
  }
}
.menu__main {
  width: var(--main-menu-column-width);
  padding-right: 2px;
  border-right: 1px solid var(--border-color);
  height: var(--max-inner-height);
  overflow-y: auto;
}
@media (max-width: 991.98px) {
  .menu__main {
    width: 100%;
    height: auto;
    border-right: none;
    padding-right: 0;
  }
}
.menu__head {
  gap: 14px;
  margin-bottom: 20px;
}
.menu__img {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
@media (max-width: 1199.98px) {
  .menu__img {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .menu__img {
    display: block;
  }
}
.menu__img--2 {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.menu__img--2 {
  position: absolute;
  width: 24px;
  height: 24px;
  object-fit: cover;
  bottom: 0;
  right: 0;
  filter: var(--menu-icon-color);
}
.menu__title {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.menu__list {
  margin-left: 50px;
  flex: 1;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 1199.98px) {
  .menu__list {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .menu__list {
    padding-left: 0;
  }
}
.menu__item:last-child > .menu__link {
  padding-bottom: 0;
}
.menu__item:first-child > .menu__link {
  padding-top: 0;
}
.menu__item--active .sub-menu {
  display: grid;
}
.menu__item--active > .menu__link, .menu__item:hover > .menu__link {
  color: #0071dc;
  font-weight: 500;
}
.menu__link {
  display: block;
  padding: 7px 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 142.857%;
}

.sub-menu {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 16px;
  position: absolute;
  inset: 0 0 0 var(--main-menu-column-width);
  padding-left: var(--inner-padding);
  overflow-y: auto;
}
.sub-menu__group + .sub-menu__group {
  margin-top: var(--inner-padding);
}
@media (max-width: 991.98px) {
  .sub-menu {
    position: initial;
    grid-template-columns: 1fr;
    inset: 0;
    padding: 7px 0;
    gap: 30px;
  }
  .sub-menu__group > .menu__list {
    padding-left: 50px;
  }
}
.sub-menu--not-main {
  display: grid;
  position: initial;
  padding-left: 0;
  inset: initial;
  grid-template-columns: repeat(4, 1fr);
  height: var(--max-inner-height);
}
@media (max-width: 991.98px) {
  .sub-menu--not-main {
    grid-template-columns: 1fr;
    height: auto;
  }
}

.slide {
  position: relative;
  margin: 40px 0;
}
@media (max-width: 767.98px) {
  .slide {
    margin: 30px 0;
  }
}
.slide__inner {
  display: flex;
  overflow: hidden;
}
.slide__item {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  padding-top: 34%;
}
@media (max-width: 767.98px) {
  .slide__item {
    padding-top: 50%;
  }
}
.slide__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .slide__img {
    border-radius: 10px;
  }
}
.slide__pagination {
  --pagination-color: #fff;
  position: absolute;
  display: flex;
  align-items: center;
  left: 5.2%;
  bottom: 15%;
  width: 20%;
  column-gap: 24px;
}
@media (max-width: 991.98px) {
  .slide__pagination {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .slide__pagination {
    left: 5.7%;
    width: 30%;
  }
}
@media (max-width: 767.98px) {
  .slide__pagination {
    width: 35%;
  }
}
.slide__num {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
  color: var(--pagination-color);
}
@media (max-width: 767.98px) {
  .slide__num {
    font-size: 1.4rem;
  }
}
.slide__slider {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: var(--pagination-color);
  translate: 0 -15%;
}
@media (max-width: 767.98px) {
  .slide__slider {
    height: 3px;
    translate: 0 -10%;
  }
}
.slide__slider::after, .slide__slider::before {
  content: "";
  position: absolute;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border: 4px solid var(--pagination-color);
  border-radius: 50%;
  top: 50%;
  translate: 0 -50%;
}
@media (max-width: 767.98px) {
  .slide__slider::after, .slide__slider::before {
    border-width: 3px;
  }
}
.slide__slider::before {
  left: 0;
  translate: -90% -50%;
}
.slide__slider::after {
  right: 0;
  translate: 90% -50%;
}

.cate-item {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 20px;
  background-color: var(--cate-item-bg-color);
  border-radius: 16px;
}
@media (max-width: 1199.98px) {
  .cate-item {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .cate-item {
    flex-direction: row;
    gap: 18px;
    background-color: var(--cate-item-bg-color);
    border-radius: 10px;
  }
}
.cate-item__thumb {
  width: 116px;
  height: 116px;
  background-color: var(--cate-item-thumb-bg-color);
  border-radius: 8px;
  object-fit: contain;
}
@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__title {
  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;
  font-weight: 400;
  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;
  height: 36px;
  padding: 0 12px;
  gap: 14px;
  border-radius: 6px;
  color: var(--filter-btn-color);
  background: var(--filter-btn-bg-color);
  font-size: 1.4rem;
  font-weight: 700;
}

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  height: 38px;
  padding: 0 20px;
  border-radius: 6px;
  user-select: none;
  border: 1px solid #d2d1d6;
}
.btn + .btn:not(.btn--no-margin) {
  margin-left: 16px;
}
.btn-text {
  padding: 0 2px;
  border: none;
  transition: translate 0.3s;
}
.btn-text--disabled {
  color: #d2d1d6;
  pointer-events: none;
  border: none;
}
.btn-text:hover {
  opacity: 0.8;
  translate: 0 -2px;
}
.btn-outline {
  border: 1px solid #d2d1d6;
  transition: translate 0.3s;
}
.btn-outline--disabled {
  border: 1px solid #ededf6;
  color: #d2d1d6;
  pointer-events: none;
}
.btn-outline:hover {
  background: var(--outline-button-bg-color);
  box-shadow: 0px 5px 10px 0px rgba(83, 129, 180, 0.1);
  translate: 0 -2px;
}
.btn-primary {
  background-color: #ffb700;
  color: var(--primary-button-text-color);
  border: none;
  transition: translate 0.3s;
}
.btn-primary--disabled {
  color: #d2d1d6;
  background-color: #f6f6f6;
  pointer-events: none;
  border: none;
}
.btn-primary:hover {
  background: #ffc533;
  box-shadow: 0px 5px 10px 0px rgba(255, 197, 51, 0.4);
  translate: 0 -2px;
}
.btn-sm {
  height: 38px;
}
@media (max-width: 575.98px) {
  .btn-sm {
    height: 44px;
  }
}
.btn-md {
  height: 44px;
  border-radius: 8px;
}
.btn-lg {
  height: 50px;
  border-radius: 8px;
}
.btn-xl {
  height: 68px;
  border-radius: 10px;
}
.btn-rounded {
  border-radius: 99px;
}
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
}

.product-card {
  padding: 16px;
  border-radius: 20px;
  background-color: var(--product-card-bg-color);
  box-shadow: var(--product-card-shadow);
  height: 100%;
}
.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;
}
.product-card__like-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.product-card__title, .product-card__price, .product-card__score {
  font-size: 1.6rem;
  font-weight: 500;
}
.product-card__title {
  margin-top: 16px;
  line-height: 150%;
}
.product-card__brand {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 146.667%;
  color: #9e9da8;
}
.product-card__row {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.product-card__star {
  margin-left: auto;
}
.product-card__score {
  margin-left: 6px;
}

.filter-wrap {
  position: relative;
  z-index: 1;
}

.filter {
  position: absolute;
  top: 46px;
  right: 0;
  height: auto;
  padding: 30px 0;
  background-color: var(--filter-bg-color);
  border-radius: 20px;
  box-shadow: var(--filter-shadow);
  transition: opacity, visibility;
  transition-duration: 0.3s;
}
@media (max-width: 575.98px) {
  .filter {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}
.filter.hide {
  opacity: 0;
  visibility: hidden;
}
.filter__row {
  display: flex;
}
.filter__col {
  width: auto;
  padding: 0 30px;
  border-right: 1px solid #eee;
}
.filter__col:first-child {
  padding-left: 0;
  border-left: none;
}
.filter__col:last-child {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 1199.98px) {
  .filter__col {
    padding: 30px 0;
    border-right: none;
    border-top: 1px solid #eee;
  }
  .filter__col:first-child {
    border-top: none;
  }
  .filter__col:last-child {
    border-bottom: none;
  }
}
.filter__heading {
  font-size: 2.2rem;
  font-weight: 500;
}
.filter__heading {
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .filter__heading {
    padding: 0 30px;
  }
}
.filter__form-group {
  display: flex;
  margin-top: 20px;
}
.filter__form-group--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.filter__form-slider {
  position: relative;
  margin: 10px 0;
  width: 100%;
  height: 2px;
  background-color: #d2d1d6;
}
.filter__form-slider::before, .filter__form-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 6px solid #ffb700;
  background-color: var(--filter-bg-color);
  cursor: pointer;
}
.filter__form-slider::before {
  left: 10%;
}
.filter__form-slider::after {
  left: 60%;
}
.filter__form-text-input {
  display: flex;
  align-items: center;
  padding: 0 16px;
  width: 324px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
  font-size: 1.5rem;
}
@media (max-width: 1199.98px) {
  .filter__form-text-input {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .filter__form-text-input {
    font-size: 1.6rem;
  }
}
.filter__form-text-input--small {
  height: 36px;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 500;
  width: 120px;
}
@media (max-width: 1199.98px) {
  .filter__form-text-input--small {
    width: 100%;
  }
}
.filter__form-input {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
}
.filter__form-input::placeholder {
  font-size: 1.5rem;
  font-weight: 300;
  color: #9e9da8;
}
@media (max-width: 767.98px) {
  .filter__form-input {
    font-size: 1.6rem;
  }
}
.filter__form-search-icon {
  margin-left: 12px;
}
.filter__content {
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (max-width: 1199.98px) {
  .filter__content {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .filter__content {
    max-height: calc(100vh - 220px);
    padding-bottom: 40px;
  }
}
.filter__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (max-width: 1199.98px) {
  .filter__footer {
    justify-content: space-between;
    padding-top: 16px;
    margin-top: 0;
  }
}
@media (max-width: 575.98px) {
  .filter__footer {
    justify-content: space-between;
    position: sticky;
    bottom: 24px;
    background: var(--filter-bg-color);
  }
}
.filter__heading, .filter__content, .filter__footer {
  padding-left: 30px;
  padding-right: 30px;
}

.form__label {
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
}
@media (max-width: 767.98px) {
  .form__label {
    font-size: 2rem;
  }
}
.form__label--small {
  margin-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
}
.form__select-wrap {
  display: flex;
  align-items: center;
  height: 44px;
  width: 100%;
  flex: 1;
  border: 1px solid var(--separate-color);
  border-radius: 6px;
}
.form__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  height: calc(100% - 10px);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .form__select {
    flex-grow: 1;
  }
}
.form__select + .form__select {
  border-left: 1px solid var(--separate-color);
}
.form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form__tag {
  height: 32px;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--form-tag-color);
  border-radius: 6px;
  background: var(--form-tag-bg-color);
  transition: color, background;
  transition-duration: 0.3s;
}
.form__tag:hover {
  color: var(--form-tag-color-hover);
  background: var(--form-tag-bg-color-hover);
}

.search-bar {
  margin-top: 30px;
  height: 50px;
  background-color: var(--search-bar-bg-color);
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .search-bar {
    margin-top: 20px;
  }
}
.search-bar__input {
  padding-left: 16px;
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 140%;
}
.search-bar__input::placeholder {
  color: var(--search-bar-placeholder-color);
  font-weight: 400;
}
.search-bar__submit {
  padding: 0 16px;
}

.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.2rem;
}
.text-content h3 {
  font-size: 1.8rem;
}
.text-content h4 {
  font-size: 1.6rem;
}
.text-content h5 {
  font-size: 1.4rem;
}
.text-content h6 {
  font-size: 1.2rem;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6,
.text-content p,
.text-content blockquote,
.text-content img,
.text-content figure,
.text-content ul,
.text-content ol,
.text-content table {
  margin: 20px 0;
  line-height: 150%;
}
.text-content img {
  display: block;
  max-width: 100%;
  max-height: 600px;
  border-radius: 16px;
  margin-left: auto;
  margin-right: auto;
}
.text-content img + em {
  display: block;
  text-align: center;
  opacity: 0.6;
  transform: translateY(-8px);
}
.text-content a {
  color: #0071dc;
}
.text-content hr {
  border: none;
  height: 1px;
  background-color: var(--separate-color);
  margin: 40px 0;
}
.text-content ul {
  list-style: disc;
  padding-left: 20px;
}
.text-content ol {
  list-style: decimal;
  padding-left: 20px;
}
.text-content blockquote {
  margin: 40px 0;
  padding: 20px;
  background-color: rgba(91, 198, 210, 0.1);
  border-left: 4px solid rgb(91, 198, 210);
  font-size: 2rem;
  font-style: italic;
  line-height: 150%;
}
.text-content table {
  width: 100%;
  border-collapse: collapse;
}
.text-content th,
.text-content td {
  border: 1px solid var(--separate-color);
  padding: 8px 16px;
  text-align: left;
  vertical-align: middle;
}
.text-content th {
  font-weight: 600;
}
.text-content thead {
  background-color: var(--table-head-bg-color);
}

.review-card {
  padding: 30px;
  background-color: var(--review-card-bg-color);
  border-radius: 16px;
  height: 100%;
}
.review-card__content {
  display: flex;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .review-card__content {
    flex-direction: column;
  }
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.review-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card__title {
  font-size: 22px;
  font-weight: 500;
  line-height: 150%;
}
.review-card__desc {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 150%;
}
.review-card__rating {
  margin-top: 6px;
}

.home__container {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .home__container {
    margin-top: 30px;
  }
}
.home__container:last-of-type {
  margin-bottom: 40px;
}
.home__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 767.98px) {
  .home__heading {
    font-size: 2.2rem;
  }
}
.home__cate {
  --grid-gutter-x: 50px;
}
@media (max-width: 1399.98px) {
  .home__cate {
    --grid-gutter-x: 36px;
  }
}
@media (max-width: 991.98px) {
  .home__cate {
    --grid-gutter-x: 24px;
  }
}
@media (max-width: 767.98px) {
  .home__cate {
    gap: 20px;
  }
}
.home__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth {
  display: flex;
  min-height: 100vh;
}
.auth__intro, .auth__content {
  flex: 1;
  padding: 30px;
}
@media (max-width: 767.98px) {
  .auth__intro, .auth__content {
    padding: 20px;
  }
}
.auth__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--auth-intro-bg-color);
}
.auth__intro-text {
  width: 100%;
  max-width: 410px;
  margin-top: 50px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
  color: var(--auth-intro-text-color);
}
.auth__intro-img {
  max-width: 100%;
}
.auth__content {
  display: flex;
  justify-content: center;
  background: var(--auth-content-bg-color);
}
.auth__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
  width: 100%;
  max-width: 460px;
}
@media (max-width: 767.98px) {
  .auth__inner {
    margin: 20px auto;
  }
}
.auth__heading {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .auth__heading {
    margin-top: 30px;
    font-size: 2.4rem;
  }
}
.auth__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  text-align: center;
  color: #9e9da8;
}
.auth__text--bottom {
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .auth__text--bottom {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}
.auth__form {
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .auth__form {
    margin-top: 30px;
  }
}
.auth__link {
  color: #0071dc;
  font-size: 1.5rem;
  font-weight: 500;
}
.auth__btn-group {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .auth__btn-group {
    margin-top: 28px;
  }
}

.form:has(:invalid) .form__submit-btn {
  color: #d2d1d6;
  background-color: #f6f6f6;
  pointer-events: none;
  border: none;
}
.form__group {
  margin-bottom: 16px;
}
.form__text-input {
  display: flex;
  align-items: center;
  padding: 0 12px;
  height: 50px;
  border: 1px solid #d2d1d6;
  border-radius: 10px;
}
.form__text-input:hover {
  border-color: #76dae6;
}
.form__input {
  height: 100%;
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
}
.form__input::placeholder {
  color: #d2d1d6;
}
.form__input-icon {
  margin-left: 12px;
  width: 24px;
  height: 24px;
}
.form__input-icon--error {
  width: 20px;
  height: 20px;
  display: none;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__text-input {
  border-color: var(--error-border-color);
  background-color: rgba(var(--error-bg-color), 0.05);
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__error-message {
  display: block;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__input-icon--error {
  display: block;
  animation: shake 0.7s;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__input-icon {
  display: none;
}
.form__error-message {
  margin-top: 10px;
  color: var(--error-text-color);
  font-size: 1.4rem;
  display: none;
}
.form__group-inline {
  display: flex;
  align-items: center;
}
.form__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.form__checkbox-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 146.667%;
  padding-left: 28px;
  color: var(--auth-checkbox-label-color);
}
.form__checkbox::before, .form__checkbox::after {
  content: "";
  position: absolute;
}
.form__checkbox::before {
  width: 20px;
  height: 20px;
  border: 1px solid #d2d1d6;
  border-radius: 5px;
}
.form__checkbox::after {
  display: none;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background-image: url(../icons/checked.svg);
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1%) hue-rotate(204deg) brightness(104%) contrast(101%);
}
.form__checkbox:has(:checked)::before {
  background-color: #76dae6;
  border-color: #76dae6;
}
.form__checkbox:has(:checked)::after {
  display: block;
}
.form__checkbox:has(:checked) .form__checkbox-label {
  color: var(--auth-checkbox-label-color-checked);
}
.form__align-right {
  margin-left: auto;
}

.btn__icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .container {
    gap: 20px;
  }
}

.product-page {
  display: flex;
  margin-bottom: 50px;
  background-color: var(--product-page-bg-color);
}

@media (max-width: 991.98px) {
  .prod-info__container {
    background-color: var(--prod-info-bg-color);
    border-radius: 16px;
  }
}

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

.prod-preview {
  padding: 0 30px;
}
@media (max-width: 991.98px) {
  .prod-preview {
    display: flex;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .prod-preview {
    padding: 16px;
  }
}
.prod-preview__list {
  display: flex;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .prod-preview__list {
    flex: 1;
  }
}
.prod-preview__item {
  position: relative;
  width: 100%;
  padding-top: 92%;
  flex-shrink: 0;
}
.prod-preview__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prod-preview__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  gap: 12px;
}
@media (max-width: 991.98px) {
  .prod-preview__thumbs {
    flex-direction: column;
    margin: 0 40px;
  }
}
@media (max-width: 767.98px) {
  .prod-preview__thumbs {
    display: none;
  }
}
.prod-preview__thumb-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background-color: transparent;
  border: 1px solid var(--thumb-border-color);
  border-radius: 8px;
  transition: border-color 0.3s;
  cursor: pointer;
}
.prod-preview__thumb-img:hover {
  border-color: #76dae6;
}
.prod-preview__thumb-img--active {
  border-color: #76dae6;
}
@media (max-width: 991.98px) {
  .prod-preview__thumb-img {
    width: 80px;
    height: 80px;
  }
}

.prod-info {
  display: flex;
  flex-direction: column;
  background-color: var(--prod-info-bg-color);
  padding: 50px;
  border-radius: 16px;
}
@media (max-width: 1399.98px) {
  .prod-info {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .prod-info {
    padding: 16px;
  }
}
.prod-info__heading {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .prod-info__heading {
    font-size: 2rem;
  }
}
.prod-info__right-col {
  padding-left: 30px;
}
@media (max-width: 1399.98px) {
  .prod-info__right-col {
    padding-left: 10px;
  }
}
@media (max-width: 991.98px) {
  .prod-info__right-col {
    padding-left: 0;
  }
}

.prod-prop {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .prod-prop {
    margin-top: 20px;
  }
}
.prod-prop__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
}
.prod-prop__icon {
  align-self: flex-start;
  padding-top: 2px;
}
.prod-prop__desc {
  margin-top: 4px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 140%;
}
.prod-prop__list {
  margin-top: 30px;
}

.prod-form {
  margin-top: 30px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--separate-color);
  border-radius: 6px;
  gap: 20px;
}
.prod-card__row {
  display: flex;
  align-items: center;
}
.prod-card__price {
  margin-right: 10px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.prod-card__tax {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 150%;
  color: rgb(103, 176, 68);
  background-color: var(--tag-green-bg-color);
}
.prod-card__total-price {
  font-size: 2.6rem;
  font-weight: 500;
}
.prod-card__cta {
  flex: 1;
}
.prod-card__like-btn {
  box-shadow: none;
}

.prod-tab__list {
  display: flex;
  align-items: center;
  margin: 0 -30px;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .prod-tab__list {
    margin: 0 -16px;
  }
}
.prod-tab__item {
  padding: 0 30px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 150%;
  color: #9e9da8;
  user-select: none;
  white-space: nowrap;
}
.prod-tab__item:not(.prod-tab__item--current) {
  cursor: pointer;
}
.prod-tab__item--current {
  color: inherit;
}
@media (max-width: 767.98px) {
  .prod-tab__item {
    font-size: 1.8rem;
    padding: 16px 16px 0px;
  }
}
.prod-tab__content-item {
  display: none;
  padding-top: 30px;
}
.prod-tab__content-item--current {
  display: block;
}
.prod-tab__text-content {
  margin-top: -20px;
}

.prod-content__heading {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 30px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .container {
    gap: 20px;
  }
}

.checkout-page {
  display: flex;
  margin-bottom: 50px;
  background-color: var(--product-page-bg-color);
}

.checkout__wrap {
  display: flex;
  flex-direction: column;
  padding: 30px;
  background-color: var(--card-bg-color);
  border-radius: 16px;
}
@media (max-width: 1199.98px) {
  .checkout__wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .checkout__wrap {
    padding: 16px;
  }
}
.checkout__wrap + .checkout__wrap {
  margin-top: 30px;
}
.checkout__item {
  display: flex;
}
.checkout__item + .checkout__item {
  border-top: 1px solid var(--separate-color);
  margin-top: 30px;
  padding-top: 30px;
}
.checkout__thumb {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-right: 30px;
}
@media (max-width: 1399.98px) {
  .checkout__thumb {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .checkout__thumb {
    width: 60px;
    height: 60px;
    margin-right: 16px;
  }
}
.checkout__item-content {
  display: flex;
  flex: 1;
}
@media (max-width: 991.98px) {
  .checkout__item-content {
    flex-direction: column;
  }
}
.checkout__item-detail {
  flex: 1;
}
.checkout__content {
  min-height: 90px;
}
@media (max-width: 991.98px) {
  .checkout__content {
    min-height: 0;
  }
}
.checkout__title, .checkout__price {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .checkout__title, .checkout__price {
    font-size: 1.6rem;
  }
}
.checkout__price {
  margin-top: 8px;
  color: #9e9da8;
}
.checkout__item-status {
  color: #67b044;
  font-weight: 400;
}
.checkout__inputs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .checkout__inputs {
    flex-direction: column;
  }
}
.checkout__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 44px;
  width: 120px;
  border: 1px solid var(--separate-color);
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .checkout__input {
    width: 100%;
    height: 44px;
  }
}
.checkout__input--select {
  width: 200px;
  padding: 0 10px 0 16px;
  cursor: pointer;
}
@media (max-width: 1399.98px) {
  .checkout__input--select {
    width: 180px;
  }
}
@media (max-width: 1199.98px) {
  .checkout__input--select {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .checkout__input--select {
    width: 100%;
  }
}
.checkout__input-icon {
  cursor: pointer;
}
.checkout__item-total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
}
@media (max-width: 991.98px) {
  .checkout__item-total {
    margin: 0;
  }
}
.checkout__total-price {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: right;
}
@media (max-width: 991.98px) {
  .checkout__total-price {
    text-align: left;
    margin-top: 24px;
    margin-bottom: 14px;
  }
}
@media (max-width: 767.98px) {
  .checkout__total-price {
    font-size: 2rem;
  }
}
.checkout__action {
  display: flex;
  margin-right: -15px;
}
@media (max-width: 991.98px) {
  .checkout__action {
    margin-right: 0;
    margin-left: -8px;
  }
}
.checkout__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 15px;
  color: #9e9da8;
  cursor: pointer;
}
@media (max-width: 1399.98px) {
  .checkout__btn {
    padding: 0 8px;
  }
}
.checkout__back-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: inherit;
}
.checkout__back-btn--wrap {
  padding-top: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--separate-color);
  border-radius: 0;
}

.checkout-pricing__row {
  display: flex;
  justify-content: space-between;
}
.checkout-pricing__row--bold {
  font-size: 2.2rem;
  font-weight: 700;
  border-top: 1px solid var(--separate-color);
  padding-top: 16px;
}
.checkout-pricing__row + .checkout-pricing__row {
  margin-top: 16px;
}
.checkout-pricing__btn {
  margin-top: 30px;
}

.checkout-promo {
  display: flex;
  align-items: center;
}
.checkout-promo__img {
  padding: 10px;
  background-color: var(--checkout-promo-illus-bg-color);
  border-radius: 14px;
  margin-right: 20px;
}
.checkout-promo__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 6px;
}
.checkout-promo__desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
}

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