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

* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text-color);
  background: var(--body-bg);
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

button {
  background: transparent;
  cursor: pointer;
}

a,
button,
input,
label,
textarea,
select {
  padding: 0;
  color: inherit;
  font-family: inherit;
  outline: none;
  border: none;
}

input,
textarea {
  background: transparent;
}

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

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

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

.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;
  }
}
html.dark {
  --text-color: #fff;
  --icon-color: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7482%) hue-rotate(72deg) brightness(99%) contrast(99%);
  --body-bg: #292e39;
  --header-bg-color: #171c28;
  --top-act-group-bg-color: #292e39;
  --top-act-group-shadow: rgba(0, 0, 0, 0.2);
  --top-act-group-separate: #ededf6;
  --dropdown-bg-color: #2f3441;
  --dropdown-shadow-color: rgba(23, 28, 40, 0.4);
  --dropdown-arrow-color: brightness(0) saturate(100%) invert(17%) sepia(27%) saturate(487%) hue-rotate(185deg) brightness(89%) contrast(88%);
  --top-menu-border-color: #171c28;
  --sidebar-bg-color: #292e39;
  --sidebar-shadow: 0px 40px 90px 20px rgba(23, 28, 40, 0.4);
  --cate-item-bg-color: #171c28;
  --cate-item__thum-bg-color: #292e39;
  --cate-item__title-color: #fff;
  --cate-item-small-shadow-color: 0px 20px 60px 10px rgba(0, 0, 0, 0.2);
  --filter-btn-color: #fff;
  --filter-btn-bg-color: #171c28;
  --like-btn-bg-color: #292e39;
  --like-btn-shadow-color: 0px 20px 60px rgba(124, 124, 124, 0.2);
  --product-card-bg-color: #171c28;
  --product-card-shadow-color: 0px 20px 60px 10px rgba(0, 0, 0, 0.2);
  --form-tag-bg-color: #171c28;
  --form-select-dialog-bg: #2f3441;
  --form-select-dialog-shadow: 0 0 5px rgba($color: #fff, $alpha: 0.15);
  --form-option-hover-bg: #292e39;
  --filter-bg-color: #292e39;
  --filter-shadow-color: 0px 40px 90px rgba(0, 0, 0, 0.4);
  --filter__arrow-color: brightness(0) saturate(100%) invert(13%) sepia(5%) saturate(2853%) hue-rotate(183deg) brightness(93%) contrast(85%);
  --footer-bg-color: #171c28;
  --auth-bg-color: #171c28;
  --auth__content-bg-color: #292e39;
  --auth__intro-text-color: #b9babe;
  --auth__heading-color: #b9babe;
  --btn-outline-color: #b9babe;
  --product-info-text-color: #eee;
  --product-detail-bg: #292e39;
  --product-info-bg-color: #171c28;
  --product-info__form-tag: #292e39;
  --product-detail-info-content: #171c28;
  --breadcrumbs-bg-color: #171c28;
  --breadcrumbs-shadow-color: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
  --search-bar-bg-color: #171c28;
  --review-card-bg-color: #171c28;
  --act-dropdown-bg-color: #2f3441;
  --act-dropdown-shadow-color: 0px 40px 90px 20px rgba(23, 28, 40, 0.4);
  --act-dropdown-bottom-color: #171c28;
  --act-dropdown-text-color: #b9babe;
  --act-dropdown__arrow-color: brightness(0) saturate(100%) invert(13%) sepia(5%) saturate(2853%) hue-rotate(183deg) brightness(93%) contrast(85%);
  --checkout-page__breadcrumbs-bg-color: #171c28;
  --checkout-cart-info-bg-color: #171c28;
  --checkout-cart-info-shadow-color: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
  --checkout-cart-item-border-color: #292e39;
  --checkout-gift-item__icon-wrap-bg-color: #292e39;
  --payment-item-bg-color: #292e39;
  --user-menu__link-bg-color: #292e39;
  --profile-sidebar-bg: #171c28;
  --profile-sidebar-shadow: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
  --profile-menu__link-bg-color: #292e39;
  --profile-info-bg-color: #171c28;
  --profile-info-shadow-color: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
  --account-info-bg-color: #292e39;
  --account-info__icon-bg-color: #171c28;
}

html {
  --text-color: #1a162e;
  --icon-color: brightness(0) saturate(100%) invert(8%) sepia(10%) saturate(4042%) hue-rotate(212deg) brightness(90%) contrast(95%);
  --body-bg: #f6f6f6;
  --header-bg-color: #eee;
  --top-act-group-bg-color: #fff;
  --top-act-group-shadow: rgba(237, 237, 246, 0.2);
  --top-act-group-separate: #ededf6;
  --dropdown-bg-color: #fff;
  --dropdown-shadow-color: rgba(200, 200, 200, 0.4);
  --top-menu-border-color: #d2d1d6;
  --sidebar-bg-color: #fff;
  --sidebar-shadow: 0px 40px 90px 20px rgba(200, 200, 200, 0.4);
  --cate-item-bg-color: #eee;
  --cate-item__thum-bg-color: #fff;
  --cate-item__title-color: #000;
  --cate-item-small-shadow-color: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --filter-btn-color: #6c6c72;
  --filter-btn-bg-color: #fff;
  --like-btn-bg-color: #fff;
  --like-btn-shadow-color: 0px 20px 60px rgba(124, 124, 124, 0.2);
  --product-card-bg-color: #fff;
  --product-card-shadow-color: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --product-card__brand-color: #9e9da8;
  --form-tag-bg-color: #f8f8fb;
  --form-select-dialog-bg: #fff;
  --form-select-dialog-shadow: 0 0 5px rgba($color: #000000, $alpha: 0.15);
  --form-option-hover-bg: #ebebeb;
  --filter-bg-color: #fff;
  --filter-shadow-color: 0px 40px 90px rgba(200, 200, 200, 0.4);
  --filter__arrow-color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(133deg) brightness(101%) contrast(102%);
  --footer-bg-color: #eee;
  --auth-bg-color: #fafafd;
  --auth__content-bg-color: #fff;
  --auth__intro-text-color: #1a162e;
  --auth__heading-color: #1a162e;
  --btn-outline-color: #1a162e;
  --product-info-text-color: #1a162e;
  --product-detail-bg: #fff;
  --product-info-bg-color: #f6f6f6;
  --product-info__form-tag: #ededf6;
  --product-detail-info-content: #fff;
  --breadcrumbs-bg-color: #f6f6f6;
  --breadcrumbs-shadow-color: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --search-bar-bg-color: #fff;
  --review-card-bg-color: #fafafd;
  --act-dropdown-bg-color: #fff;
  --act-dropdown-shadow-color: 0px 40px 90px 20px rgba(200, 200, 200, 0.4);
  --act-dropdown-bottom-color: #d2d1d6;
  --act-dropdown-text-color: #1a162e;
  --act-dropdown__arrow-color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(133deg) brightness(101%) contrast(102%);
  --checkout-page__breadcrumbs-bg-color: #fff;
  --checkout-cart-info-bg-color: #fff;
  --checkout-cart-info-shadow-color: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --checkout-cart-item-border-color: #d2d1d6;
  --checkout-gift-item__icon-wrap-bg-color: rgba(118, 68, 225, 0.1);
  --payment-item-bg-color: #f6f6f6;
  --user-menu__link-bg-color: #ebebeb;
  --profile-sidebar-bg: #ffffff;
  --profile-sidebar-shadow: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --profile-menu__link-bg-color: #ebebeb;
  --profile-info-bg-color: #fff;
  --profile-info-shadow-color: 0px 20px 60px 10px rgba(237, 237, 246, 0.2);
  --account-info-bg-color: #f6f6f6;
  --account-info__icon-bg-color: #fff;
}
@media (max-width: 767.98px) {
  html {
    --auth-bg-color: #fff;
  }
}
@media (max-width: 991.98px) {
  html {
    --header-bg-color: #fff;
    --top-act-group-bg-color: #eee;
    --top-act-group-separate: #a9a9a9;
    --cate-item-bg-color: #fff;
    --product-detail-bg: #fafafd;
    --breadcrumbs-bg-color: #fff;
    --product-info-bg-color: #fff;
    --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 {
  padding: 20px 0;
  background: var(--header-bg-color);
}

.top-bar {
  position: relative;
  z-index: 1;
}
.top-bar__more {
  width: 24px;
  height: 24px;
}
@media (max-width: 991.98px) {
  .top-bar .logo {
    column-gap: 10px;
    margin-left: 50px;
  }
}
@media (max-width: 767.98px) {
  .top-bar .logo {
    margin-left: auto;
  }
}
@media (max-width: 991.98px) {
  .top-bar .logo__title {
    font-size: 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .top-bar .logo__title {
    font-size: 1.125rem;
  }
}
@media (max-width: 991.98px) {
  .top-bar .logo__img {
    width: 28px;
  }
}
@media (max-width: 575.98px) {
  .top-bar .logo__img {
    width: 24px;
  }
}

.navbar {
  margin-left: 144px;
}
@media (max-width: 1399.98px) {
  .navbar {
    margin-left: auto;
  }
}
.navbar__list {
  margin: 0 -15px;
}
@media (max-width: 1199.98px) {
  .navbar__list {
    margin: 0;
  }
}
@media (max-width: 991.98px) {
  .navbar__list {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
    height: calc(100% - 40px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 767.98px) {
  .navbar__list {
    margin-top: 0;
  }
}
.navbar:has(.nav-btn) .navbar__list {
  height: calc(100% - 120px);
}
.navbar__item:hover .dropdown {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991.98px) {
  .navbar__item {
    width: 100%;
    margin-top: 20px;
  }
  .navbar__item:hover .dropdown {
    opacity: 0;
    visibility: hidden;
  }
  .navbar__item--active .dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    position: initial;
  }
}
.navbar__link {
  height: 50px;
  column-gap: 6px;
  padding: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 991.98px) {
  .navbar__link {
    justify-content: space-between;
    padding: 0 40px;
    height: auto;
    font-size: 1rem;
    line-height: 150%;
    background: var(--sidebar-bg-color);
  }
}
@media (max-width: 575.98px) {
  .navbar__link {
    padding: 0 20px;
  }
}
@media (max-width: 991.98px) {
  .navbar {
    position: fixed;
    inset: 0 50% 0 0;
    z-index: 1;
    margin-left: 0;
    padding: 40px 0;
    border-radius: 0 20px 20px 0;
    background: var(--sidebar-bg-color);
    translate: -100%;
    transition: translate 0.5s;
  }
  .navbar.show {
    box-shadow: var(--sidebar-shadow);
    translate: 0;
  }
  .navbar.show ~ .navbar__overlay {
    visibility: visible;
    opacity: 1;
  }
  .navbar__arrow {
    rotate: -90deg;
    transition: rotate 0.2s;
  }
  .navbar__item--active .navbar__arrow {
    rotate: 0deg;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    inset: 0 20% 0 0;
    padding: 20px 0;
  }
}
@media (max-width: 991.98px) {
  .navbar__close-btn {
    display: block;
    padding: 0 40px;
  }
}
@media (max-width: 575.98px) {
  .navbar__close-btn {
    padding: 0 20px;
  }
}
.navbar__overlay {
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 991.98px) {
  .navbar__overlay {
    position: fixed;
    inset: 0;
    transition: opacity, visibility;
    transition-duration: 0.5s;
    background: rgba(0, 0, 0, 0.4);
  }
}

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

.nav-btn {
  padding: 10px 40px;
  align-items: center;
}
.nav-btn__title, .nav-btn__qnt {
  color: var(--text-color);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
}
.nav-btn__title {
  margin-left: 15px;
}
.nav-btn__qnt {
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .nav-btn {
    padding: 10px 20px;
  }
}

.act-dropdown {
  padding-top: 25px;
  position: absolute;
  top: 45px;
  right: -60px;
  width: min(525px, 100vw);
  color: var(--act-dropdown-text-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.act-dropdown__inner {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: var(--act-dropdown-bg-color);
  box-shadow: var(--act-dropdown-shadow-color);
}
.act-dropdown__arrow {
  position: absolute;
  width: 52.5px;
  bottom: 100%;
  right: 95px;
  filter: var(--act-dropdown__arrow-color);
}
.act-dropdown__arrow-user {
  right: 15px;
}
.act-dropdown__top {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-dropdown__title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
.act-dropdown__view-all {
  color: #0071dc;
  font-size: 1.125rem;
  line-height: 145.455%;
}
.act-dropdown-list {
  flex-wrap: nowrap;
  overflow-x: auto;
}
.act-dropdown__bottom {
  margin: 30px 0;
  padding: 30px 0;
  border-width: 1px 0;
  border-color: var(--act-dropdown-bottom-color);
  border-style: solid;
}
.act-dropdown__separate {
  height: 1px;
  margin: 20px 0;
  background: var(--act-dropdown-bottom-color);
}
.act-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-dropdown__row + .act-dropdown__row {
  margin-top: 10px;
}
.act-dropdown__row--bold {
  margin-top: 25px !important;
  font-weight: 600;
}
.act-dropdown__label, .act-dropdown__value {
  font-size: 1.125rem;
  line-height: 145.455%;
}
.act-dropdown__checkout {
  display: flex;
  justify-content: flex-end;
}
.act-dropdown__checkout-btn {
  min-width: 218px;
}
.act-dropdown-user {
  width: 300px;
  top: 50px;
  right: -15px;
}
@media (max-width: 767.98px) {
  .act-dropdown-user {
    width: 250px;
  }
}

.cart-preview-item {
  margin-bottom: 10px;
  padding: 0 10px 10px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  text-align: left;
}
.cart-preview-item__img-wrap {
  position: relative;
  padding-top: 98.29%;
}
.cart-preview-item__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-preview-item__title {
  margin-top: 14px;
  font-size: 0.875rem;
  line-height: 142.857%;
}
.cart-preview-item__price {
  margin-top: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
}

@media (max-width: 767.98px) {
  .user-menu {
    padding: 16px;
  }
}
.user-menu__top {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 767.98px) {
  .user-menu__top {
    column-gap: 10px;
  }
}
.user-menu__avatar {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767.98px) {
  .user-menu__avatar {
    width: 60px;
    height: 60px;
  }
}
.user-menu__name {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.user-menu__id {
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.user-menu__list {
  margin-top: 30px;
}
.user-menu__link {
  padding: 15px 0 15px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .user-menu__link {
    padding: 12px 0 12px 12px;
  }
}
.user-menu__link:hover {
  background: var(--user-menu__link-bg-color);
}

.footer {
  background: var(--footer-bg-color);
}
.footer__inner {
  padding: 50px 0;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.5fr 3.5fr;
  gap: 60px;
}
@media (max-width: 991.98px) {
  .footer__row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .footer__row {
    grid-template-columns: 1fr;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .footer__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__column .logo {
    margin: 0;
  }
}
.footer__right {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 1199.98px) {
  .footer__right {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .footer__right {
    grid-template-columns: 1fr;
  }
}
.footer__desc, .footer__help-text {
  margin-top: 30px;
  font-size: 0.885rem;
  font-weight: 400;
  line-height: 150%;
}
.footer__help-text {
  margin-top: 70px;
}
.footer__social {
  margin-top: 30px;
}
.footer__social-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 146.667%;
}
.footer__social-list {
  margin-top: 10px;
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.footer__social-item {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  overflow: hidden;
  transition: scale 0.3s;
}
.footer__social-item:hover {
  scale: 1.1;
}
.footer__social-icon {
  width: 100%;
}
.footer-copyright {
  margin-top: 30px;
  text-align: center;
}
.footer__act {
  overflow: hidden;
  transition: all 0.2s;
  gap: 0 !important;
}
.footer__act span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}
.footer__act svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}
.footer__act:hover {
  opacity: 1 !important;
}
.footer__act:hover .footer__act-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
.footer__act:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
.footer__act:hover span {
  transform: translateX(15em);
}
.footer__act:hover:active {
  transform: scale(0.95);
}
.footer__heading {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.2rem;
}
.footer__list {
  margin-top: 18px;
}
.footer__link, .footer__text {
  font-size: 0.885rem;
  padding: 8px 0;
  line-height: 1.4;
}
.footer__link {
  display: inline-block;
}
.footer__link:hover {
  color: #0071dc;
}
.footer__label {
  margin-top: 20px;
  font-weight: 500;
}
.footer input:focus + .footer__act {
  opacity: 1 !important;
}
.footer input:focus + .footer__act .footer__act-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
.footer input:focus + .footer__act svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}
.footer input:focus + .footer__act span {
  transform: translateX(5em);
}
.footer input:focus + .footer__act:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }
  to {
    transform: translateY(-0.1em);
  }
}
.logo {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.logo__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145.455%;
}

.dropdown {
  width: min(1240px, 100%);
  position: absolute;
  left: 0;
  padding-top: 44px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media (max-width: 991.98px) {
  .dropdown {
    padding-top: 0;
    transition: opacity 0.1s, visibility 0.1s;
  }
}
.dropdown__inner {
  --inner-padding: 30px;
  position: relative;
  padding: var(--inner-padding);
  border-radius: 20px;
  background: var(--dropdown-bg-color);
  box-shadow: 0px 40px 90px 20px var(--dropdown-shadow-color);
}
.dropdown__inner::before {
  content: url("../icons/dropdown-arrow.svg");
  position: absolute;
  top: -13px;
  left: var(--arrow-left-pos);
  translate: -50%;
  filter: var(--dropdown-arrow-color);
}
@media (max-width: 991.98px) {
  .dropdown__inner {
    padding: 6px 40px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .dropdown__inner::before {
    content: none;
  }
}

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

.menu-column {
  display: flex;
  gap: 14px;
}
@media (max-width: 991.98px) {
  .menu-column {
    margin-top: 14px;
  }
}
.menu-column + .menu-column {
  margin-top: var(--inner-padding);
}
@media (max-width: 991.98px) {
  .menu-column + .menu-column {
    margin-top: 23px;
  }
}
.menu-column__icon {
  position: sticky;
  top: 0;
  z-index: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.menu-column__content {
  flex-grow: 1;
}
.menu-column__icon-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.menu-column__heading {
  display: block;
  padding: 6px 0 19px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--dropdown-bg-color);
}
@media (max-width: 991.98px) {
  .menu-column__heading {
    padding-bottom: 26px;
    background: var(--sidebar-bg-color);
  }
}
.menu-column__list {
  margin-top: -7px;
}
.menu-column__item--active .sub-menu {
  display: grid;
}
.menu-column__item--active > .menu-column__link, .menu-column__item:hover > .menu-column__link {
  color: #0071dc;
  font-weight: 500;
}
.menu-column__link {
  display: block;
  padding: 7px 0;
  font-size: 0.875rem;
  line-height: 142.857%;
}

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

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

.cate-item {
  padding: 20px 26px 20px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background: var(--cate-item-bg-color);
}
@media (max-width: 1199.98px) {
  .cate-item {
    padding: 20px 20px;
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .cate-item {
    padding: 20px 26px 20px 20px;
    flex-direction: row;
  }
}
.cate-item__thumb {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cate-item__thum-bg-color);
}
@media (max-width: 1199.98px) {
  .cate-item__thumb {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .cate-item__thumb {
    width: 88px;
    height: 88px;
  }
}
.cate-item__info {
  padding-right: 16px;
}
@media (max-width: 1399.98px) {
  .cate-item__info {
    padding: 0;
  }
}
.cate-item__title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145.455%;
  color: var(--cate-item__title-color);
}
@media (max-width: 991.98px) {
  .cate-item__title {
    font-size: 1.125rem;
    line-height: 144.444%;
  }
}
.cate-item__desc {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .cate-item__desc {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}

.product-card {
  padding: 16px;
  border-radius: 20px;
  background: var(--product-card-bg-color);
  box-shadow: var(--product-card-shadow-color);
  height: 100%;
}
.product-card__row {
  display: flex;
  align-items: center;
}
.product-card__img-wrap {
  position: relative;
  padding-top: 100%;
}
.product-card__img-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__info {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.product-card__title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
}
.product-card__brand {
  color: var(--product-card__brand-color);
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.product-card__row {
  display: flex;
  align-items: center;
}
.product-card__price, .product-card__score {
  font-weight: 500;
  line-height: 150%;
}
.product-card__star {
  margin-left: auto;
}
.product-card__score {
  margin-left: 6px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  height: 46px;
  border-radius: 6px;
  font-size: 1.125rem;
  font-weight: 500;
  background: #f8f8fb;
  user-select: none;
  color: #1a162e;
  white-space: nowrap;
}
.btn + .btn:not(.btn--no-margin) {
  margin-left: 20px;
}
.btn--small {
  height: 40px;
}
.btn--text {
  background: transparent;
  font-weight: 400;
}
.btn--primary {
  background: #ffb700;
}
.btn--outline {
  background: transparent;
  border: 1px solid #d2d1d6;
  color: var(--btn-outline-color);
}
.btn--rounded {
  border-radius: 99px;
  background: #ffb700;
}
.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn:hover {
  opacity: 0.8;
}

.filter-btn {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  column-gap: 14px;
  height: 36px;
  color: var(--filter-btn-color);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 142.857%;
  border-radius: 6px;
  background: var(--filter-btn-bg-color);
}
.filter__cancel-btn, .filter__submit-btn {
  height: 38px;
  padding: 0 10px;
}
@media (max-width: 575.98px) {
  .filter__cancel-btn, .filter__submit-btn {
    flex-grow: 1;
  }
}
.filter__cancel-btn {
  font-size: 0.9375rem;
}
.filter__submit-btn {
  font-size: 0.875rem;
  margin-left: 10px !important;
}

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

.filter-wrap {
  position: relative;
}

.filter {
  padding: 31px 30px;
  position: absolute;
  right: 5px;
  top: 61px;
  border-radius: 20px;
  background: var(--filter-bg-color);
  box-shadow: var(--filter-shadow-color);
  transition: opacity, visibility;
  transition-duration: 0.5s;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .filter {
    width: 80vw;
    padding: 30px 20px 20.5px;
  }
}
.filter.hide {
  opacity: 0;
  visibility: hidden;
}
.filter__heading {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
.filter__form {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .filter__form {
    margin-top: 20px;
  }
}
.filter__form-group {
  margin-top: 20px;
}
.filter__form-group--inline {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.filter__form-slider {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  width: 100%;
  height: 2px;
  background: #d2d1d6;
}
.filter__form-slider::before, .filter__form-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 6px solid #ffb700;
  border-radius: 50%;
  translate: 0 -50%;
  background: var(--filter-bg-color);
  cursor: pointer;
}
.filter__form-slider::before {
  left: 10%;
}
.filter__form-slider::after {
  left: 60%;
}
.filter__form-input {
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
.filter__form-input {
  padding: 0 12px;
  width: 121px;
  height: 36px;
  font-size: 0.875rem;
  line-height: 142.857%;
}
@media (max-width: 575.98px) {
  .filter__form-input {
    width: 100%;
  }
}
.filter__form-search-wrap {
  display: flex;
  padding: 0 16px;
  width: 334px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
@media (max-width: 575.98px) {
  .filter__form-search-wrap {
    width: 100%;
  }
}
.filter__form-search-input {
  padding: 0 16px 0 0;
  width: 100%;
  height: 45px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.filter__form-search-input::placeholder {
  color: #9e9da8;
}
.filter__form-search-icon {
  cursor: pointer;
}
.filter__row {
  display: flex;
}
.filter__separate {
  width: 1px;
  margin: 0 30px;
  background: #eee;
}
.filter__separate--small {
  width: 1px;
  margin: 0;
  height: 85%;
  background: #d2d1d6;
}
@media (max-width: 1199.98px) {
  .filter__separate {
    width: 100%;
    margin: 20px 0;
    padding: 0.5px 0;
  }
}
.filter__footer {
  margin-top: 20px;
  justify-content: flex-end;
}
.filter__arrow {
  position: absolute;
  width: 52.5px;
  bottom: 100%;
  right: 30px;
  filter: var(--filter__arrow-color);
}
.filter__content {
  margin-right: -30px;
  padding-right: 30px;
}
@media (max-width: 1199.98px) {
  .filter__content {
    flex-direction: column;
    max-height: calc(100vh - 350px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}
@media (max-width: 575.98px) {
  .filter__content {
    margin-right: -20px;
    padding-right: 20px;
  }
}

.dots {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
}

.dot {
  width: 14px;
  height: 14px;
  background: #d2d2d2;
  border-radius: 50%;
  cursor: pointer;
}
.dot--active {
  width: 10px;
  height: 10px;
  background: #ffb700;
  outline: 1px solid #ffb700;
  outline-offset: 3px;
}

.cate-item-small {
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 10px;
  background: var(--cate-item-bg-color);
  box-shadow: var(--cate-item-small-shadow-color);
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .cate-item-small {
    min-width: 143px;
    padding-left: 10px;
  }
}
.cate-item-small__brand {
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 1199.98px) {
  .cate-item-small__brand {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 142.857%;
  }
}
.cate-item-small__img {
  width: 70px;
  height: 59.5px;
  margin-left: auto;
}
@media (max-width: 1199.98px) {
  .cate-item-small__img {
    width: 44px;
    height: 38px;
  }
}
.cate-item-small--active {
  background: #77dae6;
}

.form {
  width: 100%;
}
.form:has(:invalid) .form__submit-btn {
  opacity: 0.8;
  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: 25px;
}
@media (max-width: 575.98px) {
  .form__group {
    margin-top: 18px;
  }
}
.form__group--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form__group-footer {
  margin-top: 0;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__text-input {
  border-color: #ed4337;
  background: rgba(237, 67, 55, 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__input-icon-error {
  display: block;
  visibility: visible !important;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)) .form__error {
  display: block;
}
.form__text-area, .form__text-input {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #d2d1d6;
}
.form__text-area:focus-within, .form__text-input:focus-within {
  border-color: #77dae6;
}
.form__text-area {
  padding: 12px;
  height: 100px;
}
.form__text-area-input {
  width: 100%;
  resize: none;
}
.form__text-input {
  position: relative;
  height: 50px;
}
.form__text-input-footer {
  height: 46px !important;
}
@media (max-width: 767.98px) {
  .form__text-input {
    height: 48px;
  }
}
.form__input, .form__text-area-input {
  flex: 1;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .form__input, .form__text-area-input {
    font-size: 1rem;
    line-height: 150%;
  }
}
.form__input::placeholder, .form__text-area-input::placeholder {
  color: #d2d1d6;
}
.form__input-icon {
  margin-left: 12px;
}
.form__input-icon-error {
  width: 20px;
  display: none;
}
.form__select-dialog {
  position: absolute;
  top: -1px;
  right: -1px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  translate: 8px 0;
  transition: opacity, visibility, translate;
  transition-duration: 0.2s;
  min-width: 40%;
  max-height: 250px;
  border: 1px solid #d2d1d6;
  border-radius: 0 10px 10px 10px;
  background: var(--form-select-dialog-bg);
  box-shadow: var(--form-select-dialog-shadow);
}
@media (max-width: 575.98px) {
  .form__select-dialog {
    position: fixed;
    max-width: initial;
    max-height: initial;
    inset: 0;
    border-radius: 0;
  }
}
.form__select-dialog.show {
  opacity: 1;
  visibility: visible;
  translate: 0;
}
.form__search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 49px;
  padding: 0 20px;
  border-bottom: 1px solid #d2d1d6;
}
@media (max-width: 767.98px) {
  .form__search {
    height: 47px;
  }
}
@media (max-width: 575.98px) {
  .form__search {
    padding: 0 14px;
    border: 1px solid #d2d1d6;
    margin: 10px 30px 0;
    border-radius: 10px;
  }
}
.form__search-input {
  flex: 1;
  height: 100%;
  font-size: 1rem;
}
.form__search-icon {
  margin-left: 10px;
}
.form__options-list {
  flex: 1;
  margin: 10px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.form__option {
  padding: 8px 20px;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .form__option {
    padding: 14px 20px;
  }
}
@media (max-width: 575.98px) {
  .form__option {
    padding: 14px 30px;
  }
}
.form__option--current {
  font-weight: 500;
  background: rgba(255, 183, 0, 0.6);
}
.form__option:not(.form__option--current):hover {
  background: var(--form-option-hover-bg);
  cursor: pointer;
}
.form__dialog-heading {
  padding: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
}
.form__close-dialog {
  font-size: 1.875rem;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 18px;
  opacity: 0.8;
}
.form__error {
  display: none;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 10px;
  color: #ed4337;
}
.form__checkbox {
  position: relative;
  cursor: pointer;
}
.form__checkbox::before, .form__checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.form__checkbox::before {
  left: 0;
  width: 19px;
  height: 19px;
  border: 1.5px solid #9e9da8;
  border-radius: 6px;
}
.form__checkbox:has(:checked)::before {
  background: #ffb700;
  border-color: #ffb700;
}
.form__checkbox:has(:checked)::after {
  left: 3.3px;
  width: 12.5px;
  height: 6.5px;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  rotate: -45deg;
  translate: 0 -91%;
}
.form__checkbox-label {
  margin-left: 29px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #9e9da8;
}
@media (max-width: 767.98px) {
  .form__checkbox-label {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 142.857%;
  }
}
.form__label {
  display: block;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
.form__label--small {
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 142.857%;
}
.form__label--medium {
  margin-bottom: 20px;
  font-size: 1.125rem;
  line-height: 144.444%;
}
.form__select-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
.form__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  min-width: var(--width, 108px);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 142.857%;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .form__select {
    flex: 1;
  }
}
.form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 575.98px) {
  .form__tags {
    gap: 6px 10px;
  }
}
.form__tag {
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--form-tag-bg-color);
  color: #9e9da8;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 142.857%;
  transition: color 0.2s;
}
.form__tag:hover {
  color: var(--text-color);
}
.form-footer {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .form-footer {
    flex-direction: column;
  }
}
.form-card__label {
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.form-card__bottom {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.messages {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: left;
}
.messages--success {
  border: 1px solid #5bc45f;
  background: rgba(39, 243, 117, 0.2);
}

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

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

.review-card {
  padding: 30px;
  border-radius: 16px;
  background: var(--review-card-bg-color);
}
@media (max-width: 767.98px) {
  .review-card {
    padding: 20px;
  }
}
.review-card__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .review-card__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .review-card__content {
    flex-direction: row;
    align-items: initial;
    text-align: initial;
  }
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 80px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .review-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 60px;
  }
}
.review-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .review-card__title {
    font-size: 1.125rem;
    line-height: 144.444%;
  }
}
.review-card__desc {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 150%;
}
.review-card__rating {
  margin-top: 20px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 1199.98px) {
  .review-card__rating {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .review-card__rating {
    flex-direction: row;
    align-items: initial;
  }
}
.review-card__rating-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}

.text-content {
  font-size: 1rem;
  line-height: 100%;
}
.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: 1.625rem;
}
.text-content h2 {
  font-size: 1.375rem;
}
.text-content h3 {
  font-size: 1.125rem;
}
.text-content h4 {
  font-size: 1rem;
}
.text-content h5 {
  font-size: 0.875rem;
}
.text-content h6 {
  font-size: 0.75rem;
}
.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;
}
.text-content img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}
.text-content img + em {
  display: block;
  font-style: italic;
  text-align: center;
}
.text-content a {
  color: #0071dc;
  text-decoration: underline;
}
.text-content blockquote {
  background: rgba(119, 218, 230, 0.1);
  padding: 20px;
  border-left: 3px solid #77dae6;
}
.text-content blockquote p {
  margin: 0;
}
.text-content hr {
  border: none;
  height: 1px;
  margin: 40px 0;
  background: #9e9da8;
}

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

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: 0.2s;
}
@media (max-width: 767.98px) {
  .modal__btn {
    flex: 1;
  }
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
.modal--small .modal__content {
  --content-width: 400px;
}
.modal--large .modal__content {
  --content-width: 1100px;
}
.modal__body {
  margin-right: -20px;
  padding-right: 20px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.modal__content {
  width: min(var(--content-width, 800px), 100% - 40px);
  padding: 30px;
  background: var(--checkout-cart-info-bg-color);
  border-radius: 20px;
  box-shadow: var(--checkout-cart-info-shadow-color);
  z-index: 1;
}
@media (max-width: 767.98px) {
  .modal__content {
    padding: 20px;
  }
}
.modal__overlay {
  background: rgba(0, 0, 0, 0.6);
}
.modal__heading {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 141.667%;
}
.modal__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.modal__bottom {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

.favourite-item {
  display: flex;
  gap: 20px;
}
.favourite-item__thumb {
  width: 151px;
  height: 108px;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .favourite-item__thumb {
    width: 110px;
    height: 78.675px;
  }
}
.favourite-item__title {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .favourite-item__title {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.favourite-item__content {
  margin-top: 10px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
@media (max-width: 991.98px) {
  .favourite-item__content {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }
}
.favourite-item__price {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .favourite-item__price {
    font-size: 1.125rem;
    line-height: 144.444%;
  }
}

.favourite-separate {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: #d2d1d6;
}
@media (max-width: 767.98px) {
  .favourite-separate {
    margin: 16px 0;
  }
}

.home {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  padding-bottom: 100px;
}
@media (max-width: 1399.98px) {
  .home {
    grid-template-columns: 200px 1fr;
  }
}
.home__content {
  margin-left: -250px;
  transition: margin-left 0.3s, margin-top 0.3s;
}
@media (max-width: 1399.98px) {
  .home__content {
    margin-left: -200px;
  }
}
@media (max-width: 1199.98px) {
  .home__content {
    margin-left: 0;
    margin-top: -14%;
  }
}
@media (max-width: 991.98px) {
  .home__content {
    margin-top: -18%;
  }
}
@media (max-width: 767.98px) {
  .home__content {
    margin-top: -25%;
  }
}
@media (max-width: 575.98px) {
  .home__content {
    margin-top: -40%;
  }
}
.home__container {
  margin-top: 40px;
  --grid-gutter-y: 30px;
}
.home__heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 141.667%;
}
.home__cate {
  --grid-gutter-x: 51px;
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .home__cate {
    --grid-gutter-x: 30px;
  }
}
@media (max-width: 767.98px) {
  .home__cate {
    --grid-gutter-y: 20px;
  }
}
.home__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home__product {
  margin-top: 20px;
}
.home__category {
  margin-top: 40px;
  padding-right: 30px;
  translate: -100%;
  transition: translate 0.3s;
}
@media (max-width: 1199.98px) {
  .home__category {
    translate: 0 -156%;
    padding-right: 0;
  }
}
.home__category.show {
  translate: 0;
}
.home__category.show + .home__content {
  margin-left: 0;
}
@media (max-width: 1199.98px) {
  .home__category.show + .home__content {
    margin-top: 0;
  }
}
.home__category-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1199.98px) {
  .home__category-list {
    flex-direction: row;
    overflow-y: auto;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
}
section[class~=show] + .home__content .home__cate-xxl {
  display: none;
}
@media (max-width: 1199.98px) {
  .home {
    grid-template-columns: 100%;
  }
}

.auth {
  min-height: 100vh;
  display: flex;
  background: var(--auth-bg-color);
}
@supports (-webkit-touch-callout: none) {
  .auth {
    min-height: -webkit-fill-available;
  }
}
.auth__intro {
  position: relative;
  flex: 1;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 50px;
  background: var(--auth-bg-color);
}
.auth__intro-img {
  width: min(422px, 100%);
}
.auth__intro-text {
  max-width: 412px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
  color: var(--auth__intro-text-color);
}
@media (max-width: 767.98px) {
  .auth__intro-text {
    font-size: 0.9375rem;
    line-height: 146.667%;
  }
}
.auth__intro-logo, .auth__intro-next {
  position: absolute;
  left: 50%;
  translate: -50%;
}
.auth__intro-logo {
  top: 80px;
}
.auth__intro-next {
  bottom: 50px;
}
.auth__intro-next-img {
  height: 18px;
}
.auth__content {
  flex: 1;
  background: var(--auth__content-bg-color);
  padding: 50px 30px;
}
@media (max-width: 767.98px) {
  .auth__content {
    position: fixed;
    inset: 0;
    z-index: 1;
    translate: 100%;
    transition: translate 0.8s;
    overflow-y: auto;
  }
}
@media (max-width: 575.98px) {
  .auth__content {
    padding: 30px;
  }
}
.auth__content-inner {
  margin: 0 auto;
  width: min(460px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.auth__content.show {
  translate: 0;
}
.auth__heading {
  margin-top: 50px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 146.667%;
  color: var(--auth__heading-color);
}
@media (max-width: 767.98px) {
  .auth__heading {
    font-size: 1.375rem;
    line-height: 145.455%;
  }
}
@media (max-width: 575.98px) {
  .auth__heading {
    margin-top: 30px;
  }
}
.auth__desc {
  padding: 10px 20px 0;
  text-align: center;
  color: #9e9da8;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .auth__desc {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.auth__form {
  margin-top: 35px;
}
@media (max-width: 575.98px) {
  .auth__form {
    margin-top: 15px;
  }
}
.auth__form-forgot {
  margin-top: 10px;
}
.auth__btn-group {
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .auth__btn-group {
    margin-top: 30px;
  }
}
.auth__btn {
  width: 100%;
}
.auth__btn-icon {
  margin-right: 10px;
}
.auth__btn + .auth__btn {
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .auth__btn + .auth__btn {
    margin-top: 10px;
  }
}
.auth__text {
  margin-top: 108px;
  color: #9e9da8;
  font-size: 1.125rem;
  line-height: 144.444%;
  display: flex;
  column-gap: 10px;
}
@media (max-width: 767.98px) {
  .auth__text {
    margin-top: 56px;
    font-size: 1rem;
    line-height: 150%;
  }
}
@media (max-width: 575.98px) {
  .auth__text {
    margin-top: 30px;
  }
}
.auth__link {
  font-size: inherit;
  font-weight: 500;
  line-height: 144.444%;
  color: #0071dc;
}
@media (max-width: 767.98px) {
  .auth__link {
    line-height: 150%;
  }
}
.auth__messages {
  margin-top: 30px;
}

.product-page {
  min-height: 80vh;
  background: var(--product-detail-bg);
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}

.product-container {
  margin-top: 30px;
  border-radius: 10px;
  background: transparent;
}
@media (max-width: 767.98px) {
  .product-container {
    margin-top: 20px;
  }
}

.product-preview {
  padding: 0 30px;
}
@media (max-width: 991.98px) {
  .product-preview {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media (max-width: 767.98px) {
  .product-preview {
    padding: 0 15px;
  }
}
.product-preview__list {
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .product-preview__list {
    flex: 1;
  }
}
.product-preview__item {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  padding-top: 92%;
}
.product-preview__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-preview__thumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px;
}
@media (max-width: 991.98px) {
  .product-preview__thumbs {
    flex-direction: column;
    padding: 15px;
  }
}
@media (max-width: 991.98px) {
  .product-preview__thumbs {
    padding: 10px;
  }
}
.product-preview__thumb {
  width: 65px;
  height: 65px;
  object-fit: contain;
  border: 0.5px solid #c0becc;
  border-radius: 10px;
  opacity: 0.9;
  transition: border-color, opacity;
  transition-duration: 0.3s;
}
@media (max-width: 767.98px) {
  .product-preview__thumb {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 575.98px) {
  .product-preview__thumb {
    width: 45px;
    height: 45px;
  }
}
.product-preview__thumb:hover {
  opacity: 1;
  border-color: #9e9da8;
  cursor: pointer;
}
.product-preview__thumb--current {
  border-color: #ffb700;
  opacity: 1;
}

.product-info {
  color: var(--product-info-text-color);
  padding: 60px;
  background: var(--product-info-bg-color);
  border-radius: 10px;
}
@media (max-width: 1399.98px) {
  .product-info {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .product-info {
    padding: 0 15px 15px;
  }
}
.product-info-content {
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .product-info-content {
    background: var(--product-detail-info-content);
  }
}
.product-info__heading {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 138.462%;
}
@media (max-width: 767.98px) {
  .product-info__heading {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 144.444%;
  }
}
.product-info-left {
  padding-right: 30px;
}
@media (max-width: 1399.98px) {
  .product-info-left {
    padding-right: 20px;
  }
}
@media (max-width: 1199.98px) {
  .product-info-left {
    padding-right: 0;
  }
}
.product-info__label {
  margin-top: 30px;
}
.product-info__form__tag {
  background: var(--product-info__form-tag);
}
.product-info__card {
  margin-top: 30px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #b9babe;
}
.product-info__row {
  display: flex;
  align-items: center;
}
.product-info__price {
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
}
.product-info__price-total {
  margin: 20px 0;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 138.462%;
}
.product-info__tax {
  margin-left: 10px;
  padding: 0 8px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #67b044;
  color: #67b044;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 142.857%;
}
.product-info__add-to-card {
  flex: 1;
}
.product-info__like-btn {
  margin-left: 19px;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
  background: transparent;
}

.product-prop {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.product-prop__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.product-prop__desc {
  margin-top: 4px;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 142.857%;
}
.product-prop + .product-prop {
  margin-top: 27px;
}

.product-tab__list {
  margin-left: -30px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .product-tab__list {
    margin-left: -10px;
  }
}
.product-tab__item {
  padding: 0 30px;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
  color: #9e9da8;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 767.98px) {
  .product-tab__item {
    padding: 0 10px;
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.product-tab__item--current {
  color: var(--text-color);
}
.product-tab__contents {
  padding: 30px 0;
}
.product-tab__content {
  display: none;
}
.product-tab__content--current {
  display: block;
}

.product-content__heading {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 767.98px) {
  .product-content__heading {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 144.444%;
  }
}

.checkout-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
}
.checkout-page__breadcrumbs {
  background: var(--checkout-page__breadcrumbs-bg-color);
}

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

.cart-info {
  padding: 30px;
  background: var(--checkout-cart-info-bg-color);
  border-radius: 20px;
  box-shadow: var(--checkout-cart-info-shadow-color);
}
@media (max-width: 767.98px) {
  .cart-info {
    padding: 16px;
  }
}
.cart-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
}
.cart-info__heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 141.667%;
}
.cart-info__heading--lv2 {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .cart-info__heading, .cart-info__heading--lv2 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
  }
}
.cart-info__desc {
  margin-top: 6px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.cart-info__sub-heading {
  margin: 30px 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .cart-info__sub-heading {
    font-size: 0.9375rem;
    line-height: 146.667%;
  }
}
.cart-info__list {
  margin-top: -30px;
}
@media (max-width: 767.98px) {
  .cart-info__list {
    margin-top: -16px;
  }
}
.cart-info__list-none {
  display: none;
  margin-top: 30px;
  grid-column: 1/-1;
}
.cart-info__list-none.show {
  display: block;
}
.cart-info__bottom {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .cart-info__bottom {
    margin-top: -16px;
  }
}
.cart-info__continue {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.cart-info__continue-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-info__continue-icon {
  rotate: 90deg;
}
.cart-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-info__row + .cart-info__row {
  margin-top: 10px;
}
.cart-info__row--bold {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145.455%;
}
.cart-info__separate {
  margin: 30px 0;
  width: 100%;
  height: 1px;
  background: var(--checkout-cart-item-border-color);
}
.cart-info + .cart-info {
  margin-top: 30px;
}
.cart-info__sub {
  font-weight: 700;
}
.cart-info__sub-label {
  font-weight: 300;
}
.cart-info-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-info-left .cart-info__row {
  font-size: 1rem;
  line-height: 150%;
  margin: 0;
}
.cart-info-left .cart-info__separate {
  margin: 0;
}
.cart-info__next-btn {
  margin-top: 16px;
}
@media (max-width: 767.98px) {
  .cart-info__next-btn {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
  }
}
.cart-info__checkbox {
  display: flex;
  align-items: center;
}
.cart-info__checkbox-input {
  appearance: none;
  cursor: pointer;
}
.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__edit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  line-height: 144.444%;
}
.cart-info__form {
  margin-bottom: 30px;
}
.cart-info__form-row {
  column-gap: 20px;
}
.cart-info__check-all {
  padding: 30px 0;
}

.cart-item {
  display: flex;
  column-gap: 30px;
  padding: 30px 0;
  border-bottom: 1px solid var(--checkout-cart-item-border-color);
}
@media (max-width: 991.98px) {
  .cart-item {
    column-gap: 16px;
  }
  .cart-item:last-child {
    border: none;
  }
}
.cart-item__thumb {
  width: 175px;
  height: 172px;
  object-fit: contain;
}
@media (max-width: 1199.98px) {
  .cart-item__thumb {
    width: 135px;
    height: 132px;
  }
}
@media (max-width: 767.98px) {
  .cart-item__thumb {
    width: 65px;
    height: 62px;
  }
}
.cart-item__content {
  flex: 1;
  display: grid;
  column-gap: 20px;
  row-gap: 16px;
  grid-template-areas: "aa aa aa bb" "aa aa aa cc";
}
@media (max-width: 1199.98px) {
  .cart-item__content {
    grid-template-areas: "aa aa aa bb" "cc cc cc cc";
  }
}
@media (max-width: 991.98px) {
  .cart-item__content {
    grid-template-areas: "aa aa aa bb" "aa aa aa cc";
  }
}
@media (max-width: 767.98px) {
  .cart-item__content {
    grid-template-areas: "aa" "bb" "cc";
  }
}
.cart-item__content-left {
  grid-area: aa;
}
.cart-item__title, .cart-item__price-wrap {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-item__title {
  max-width: 374px;
}
@media (max-width: 767.98px) {
  .cart-item__title {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.cart-item__price-wrap {
  margin: 16px 0;
  color: #9e9da8;
}
.cart-item__status {
  color: #67b044;
}
.cart-item__ctrl {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
}
@media (max-width: 1399.98px) {
  .cart-item__ctrl {
    gap: 10px;
  }
}
.cart-item__ctrl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  color: #9e9da8;
}
@media (max-width: 1399.98px) {
  .cart-item__ctrl-btn {
    gap: 5px;
  }
}
.cart-item__ctrl-btn:hover {
  filter: brightness(0) saturate(100%) invert(28%) sepia(63%) saturate(2946%) hue-rotate(345deg) brightness(103%) contrast(86%);
}
.cart-item__ctrl-btn:first-child {
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .cart-item__ctrl--md-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cart-item__input {
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 0 20px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--checkout-cart-item-border-color);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .cart-item__input {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.cart-item__input-btn {
  display: flex;
}
.cart-item__total-price {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 145.455%;
  text-align: right;
  grid-area: bb;
}
@media (max-width: 767.98px) {
  .cart-item__total-price {
    font-size: 1.125rem;
    line-height: 144.444%;
    text-align: left;
  }
}
.cart-item__act {
  display: flex;
  grid-area: cc;
}
@media (max-width: 991.98px) {
  .cart-item__act {
    align-items: flex-end;
  }
}

.gift-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.gift-item__icon-wrap {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: var(--checkout-gift-item__icon-wrap-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .gift-item__icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.gift-item__icon {
  width: 78%;
}
.gift-item__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .gift-item__title {
    font-size: 1rem;
    line-height: 150%;
  }
}
.gift-item__desc {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 142.857%;
}

.user-address__top {
  display: flex;
  align-items: center;
  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.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .user-address__title {
    font-size: 1rem;
    line-height: 150%;
  }
}
.user-address__desc {
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .user-address__desc {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.user-address__message {
  margin-top: 30px;
  font-weight: 500;
}
.user-address__link {
  color: #0071dc;
  cursor: pointer;
}

.address-card {
  display: flex;
  margin-top: 30px;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .address-card {
    flex-direction: column;
  }
}
.address-card__left {
  flex: 1;
  display: flex;
  gap: 16px;
}
.address-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .address-card__title {
    font-size: 1rem;
    line-height: 150%;
  }
}
.address-card__desc {
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .address-card__desc {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.address-card__list {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  list-style: disc inside;
  font-size: 0.875rem;
  line-height: 142.857%;
}
@media (max-width: 575.98px) {
  .address-card__list {
    flex-direction: column;
    gap: 16px;
  }
}
.address-card__list-item {
  margin-left: 8px;
}
.address-card__ctrl {
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.payment-item {
  margin-top: 30px;
  padding: 20px;
  border-radius: 20px;
  background: var(--payment-item-bg-color);
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .payment-item {
    align-items: flex-start;
  }
}
.payment-item__content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .payment-item__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.payment-item__info {
  flex: 1;
}
.payment-item__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .payment-item__title {
    font-size: 1rem;
    line-height: 150%;
  }
}
.payment-item__title--bold {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .payment-item__title--bold {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 146.667%;
  }
}
.payment-item__desc {
  margin-top: 4px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .payment-item__desc {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.payment-item__desc--low {
  font-size: 1rem;
  line-height: 150%;
  color: #9e9da8;
}
@media (max-width: 767.98px) {
  .payment-item__desc--low {
    font-size: 0.875rem;
    line-height: 142.857%;
  }
}
.payment-item-view-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.payment-item__show-details {
  display: flex;
  align-items: center;
  justify-self: flex-end;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}
.payment-item__show-details-text {
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.payment-item__show-details-icon {
  display: none;
  rotate: 180deg;
}
.payment-item:has(.show) .payment-item__show-details-text {
  display: none;
}
.payment-item:has(.show) .payment-item__show-details-icon {
  display: block;
}
.payment-item .cart-item {
  pointer-events: none;
  user-select: none;
}
@media (max-width: 1399.98px) {
  .payment-item .cart-item__ctrl--md-block {
    flex-direction: column;
    align-items: flex-start;
  }
}
.payment-item .cart-item:first-child {
  border-top: 1px solid var(--checkout-cart-item-border-color);
}
.payment-item .cart-item:last-child {
  border: none;
  padding-bottom: 0;
}
.payment-item__thumb {
  width: 70px;
  height: 54px;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .payment-item__thumb {
    width: 60px;
    height: 46px;
  }
}
.payment-item__cost {
  font-size: 1.125rem;
  font-weight: 500;
  color: #9e9da8;
  line-height: 144.444%;
}
.payment-item__checkbox-input:not(:checked)::before {
  filter: brightness(0) saturate(100%) invert(66%) sepia(12%) saturate(190%) hue-rotate(206deg) brightness(94%) contrast(89%);
}
.payment-item__checkbox:has(:checked) .payment-item__cost {
  font-weight: 500;
  color: var(--text-color);
}

.profile {
  margin-bottom: 50px;
}
.profile-container {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .profile-container {
    margin-top: 20px;
  }
}
.profile__sidebar {
  padding-bottom: 15px;
  border-radius: 20px;
  background: var(--profile-sidebar-bg);
  box-shadow: var(--profile-sidebar-shadow);
  overflow: hidden;
}
.profile-user {
  margin-bottom: 15px;
  padding: 35px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, rgba(26, 22, 46, 0) 0%, #1a162e 100%), url(../img/profile/profile-bg.png) no-repeat center/cover;
  box-shadow: 0px 20px 60px 10px rgba(23, 28, 40, 0.2);
}
.profile-user__avatar {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.08);
}
.profile-user__name {
  margin-top: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 144.444%;
  color: #fff;
}
.profile-user__desc {
  margin-top: 2px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #fff;
}
.profile-menu {
  padding: 15px 30px;
}
.profile-menu__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 144.444%;
}
.profile-menu__list {
  margin-top: 10px;
}
.profile-menu__link {
  padding: 6px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.profile-menu__link:hover {
  background: var(--profile-menu__link-bg-color);
}
.profile-menu__icon {
  display: flex;
}
.profile-info {
  padding: 30px;
  background: var(--profile-info-bg-color);
  border-radius: 20px;
  box-shadow: var(--profile-info-shadow-color);
}
@media (max-width: 767.98px) {
  .profile-info {
    padding: 16px;
  }
}
.profile-info__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-info__heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 767.98px) {
  .profile-info__heading {
    font-size: 1rem;
    font-weight: 500;
    line-height: 150%;
  }
}
.profile-info__desc {
  margin: 6px 0 16px;
  font-size: 0.9375rem;
  line-height: 146.667%;
}
.profile-info__back-arrow {
  width: 30px;
}

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

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