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

html {
  font-size: 62.5%;
}

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

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

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

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

input,
textarea {
  background: transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--text-color);
  -webkit-box-shadow: 0 0 0 9999px var(--modal-bg) inset;
  transition: background-color 9999s;
  border-radius: 8px;
  caret-color: var(--text-color);
}

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

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

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

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: 600;
}

.separate {
  margin: var(--margin) 0;
  height: 1px;
  background: var(--separate-color);
}

/* Breakpoints, dimension, container, row, column, v.v */
.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 */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--grid-gutter-y) * -1);
  margin-left: calc(var(--grid-gutter-x) * -0.5);
  margin-right: calc(var(--grid-gutter-x) * -0.5);
}
.row > * {
  margin-top: var(--grid-gutter-y);
}

/* Col */
.col {
  flex: 1 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1399.98px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@keyframes shake {
  0%, 100% {
    translate: 0;
  }
  25%, 75% {
    translate: 4px;
  }
  50% {
    translate: -4px;
  }
}
html {
  --text-color: #1a162e;
  --icon-color: brightness(0) saturate(100%) invert(9%) sepia(23%) saturate(1419%) hue-rotate(210deg) brightness(98%)
      contrast(98%);
  --body-bg: #f6f6f6;
  --separate-color: #d2d1d6;
  --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);
  --dropdown-text-color: #1a162e;
  --top-menu-border-color: #d2d1d6;
  --act-dropdown-bg: #fff;
  --act-dropdown-shadow: rgba(200, 200, 200, 0.4);
  --act-dropdown-border-color: #d2d1d6;
  --sidebar-icon-color: brightness(0) saturate(100%) invert(7%) sepia(12%) saturate(5646%) hue-rotate(222deg)
      brightness(96%) contrast(94%);
  --sidebar-bg: #fff;
  --sidebar-text-color: #1a162e;
  --sidebar-shadow-color: rgba(200, 200, 200, 0.4);
  --cate-item-bg: #eee;
  --cate-item-thumb-bg: #fff;
  --cate-item-title-color: #000;
  --filter-btn-bg: #fff;
  --filter-btn-color: #6c6c72;
  --filter-icon-color: brightness(0) saturate(100%) invert(4%) sepia(44%) saturate(3579%) hue-rotate(239deg)
      brightness(99%) contrast(90%);
  --like-btn-bg: #fff;
  --like-btn-shadow: rgba(124, 124, 124, 0.2);
  --product-card-bg: #fff;
  --product-shadow-color: rgba(237, 237, 246, 0.2);
  --product-card-brand: #9e9da8;
  --filter-form-bg: #fff;
  --filter-form-shadow: rgba(200, 200, 200, 0.4);
  --form-tag-bg: #f8f8fb;
  --footer-top-color: #fff;
  --footer-top-icon-color: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(241deg)
      brightness(103%) contrast(103%);
  --footer-top-btn-sign-up: #1a162e;
  --footer-bg-color: #eee;
  --auth-content-bg: #fff;
  --product-container-shadow: rgba(237, 237, 246, 0.2);
  --product-detail-bg: #fff;
  --product-preview-tag-bg: #fff;
  --product-info-bg: #f6f6f6;
  --product-info-tag-bg: #ededf6;
  --breadcrumbs-bg: #f6f6f6;
  --breadcrumbs-shadow: rgba(237, 237, 246, 0.2);
  --search-bar-bg: #fff;
  --review-card-bg: #fafafd;
  --checkout-breadcrumbs-bg: #fff;
  --checkout-cart-info-bg: #fff;
  --checkout-cart-info-shadow: rgba(237, 237, 246, 0.2);
  --checkout-cart-item-border-color: #d2d1d6;
  --checkout-gift-shadow: rgba(237, 237, 246, 0.2);
  --address-cart-choose-border-color: #1a162e;
  --payment-item-bg: #f6f6f6;
  --modal-bg: #fff;
  --modal-shadow: rgba(200, 200, 200, 0.4);
  --profile-sidebar-bg: #fff;
  --profile-sidebar-shadow: rgba(237, 237, 246, 0.2);
  --profile-payment-new-card-border-color: #d2d1d6;
  --account-info-bg: #f6f6f6;
  --account-info-thumb-bg: #fff;
}
@media (max-width: 991.98px) {
  html {
    --header-shadow-color: rgba(237, 237, 246, 0.2);
  }
}
@media (max-width: 767.98px) {
  html {
    --header-bg-color: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --cate-item-bg: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --auth-intro-bg: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --product-detail-bg: #fafafd;
    --product-preview-bg: #fff;
    --product-info-bg: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --breadcrumbs-bg: #fff;
  }
}
@media (max-width: 767.98px) {
  html {
    --review-card-bg: #fff;
  }
}

html.dark {
  --text-color: #fff;
  --icon-color: brightness(0) saturate(100%) invert(100%) sepia(50%) saturate(0%) hue-rotate(44deg) brightness(103%)
      contrast(100%);
  --body-bg: #292e39;
  --separate-color: #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-text-color: #b9babe;
  --dropdown-arrow-color: brightness(0) saturate(100%) invert(18%) sepia(8%) saturate(1524%) hue-rotate(186deg)
      brightness(93%) contrast(89%);
  --top-menu-border-color: #171c28;
  --menu-column-icon-color: brightness(0) saturate(100%) invert(88%) sepia(22%) saturate(97%) hue-rotate(202deg)
      brightness(107%) contrast(95%);
  --act-dropdown-bg: #2f3441;
  --act-dropdown-shadow: rgba(23, 28, 40, 0.4);
  --act-dropdown-border-color: #171c28;
  --act-dropdown-text-color: #b9babe;
  --act-dropdown-arrow-color: brightness(0) saturate(100%) invert(16%) sepia(27%) saturate(508%) hue-rotate(185deg)
      brightness(95%) contrast(86%);
  --sidebar-icon-color: brightness(0) saturate(100%) invert(72%) sepia(11%) saturate(17%) hue-rotate(191deg)
      brightness(100%) contrast(97%);
  --sidebar-bg: #292e39;
  --sidebar-text-color: #b9babe;
  --sidebar-shadow-color: rgba(23, 28, 40, 0.4);
  --cate-item-bg: #171c28;
  --cate-item-thumb-bg: #292e39;
  --cate-item-title-color: #fff;
  --filter-btn-bg: #171c28;
  --filter-btn-color: #fff;
  --filter-icon-color: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7438%) hue-rotate(307deg)
      brightness(106%) contrast(103%);
  --like-btn-bg: #292e39;
  --like-btn-shadow: rgba(124, 124, 124, 0.2);
  --product-card-bg: #171c28;
  --product-shadow-color: rgba(0, 0, 0, 0.2);
  --product-card-brand: #9e9da8;
  --filter-form-bg: #292e39;
  --filter-form-shadow: rgba(0, 0, 0, 0.4);
  --form-tag-bg: #171c28;
  --filter-form-arrow-color: brightness(0) saturate(100%) invert(12%) sepia(13%) saturate(1098%) hue-rotate(183deg)
      brightness(102%) contrast(86%);
  --footer-top-color: #1a162e;
  --footer-top-icon-color: brightness(0) saturate(100%) invert(3%) sepia(94%) saturate(2195%) hue-rotate(242deg)
      brightness(95%) contrast(89%);
  --footer-top-btn-sign-up: #ffffff;
  --footer-bg-color: #171c28;
  --footer-content-color: #9e9da8;
  --auth-text-color: #b9babe;
  --auth-intro-bg: #171c28;
  --auth-content-bg: #292e39;
  --auth-content-icon-color: brightness(0) saturate(100%) invert(82%) sepia(8%) saturate(100%) hue-rotate(191deg)
      brightness(90%) contrast(90%);
  --product-container-shadow: rgba(23, 28, 40, 0.2);
  --product-detail-bg: #292e39;
  --product-info-bg: #171c28;
  --product-info-tag-bg: #292e39;
  --breadcrumbs-bg: #171c28;
  --breadcrumbs-shadow: rgba(23, 28, 40, 0.2);
  --search-bar-bg: #171c28;
  --review-card-bg: #171c28;
  --checkout-breadcrumbs-bg: #171c28;
  --checkout-text-color: #b9babe;
  --checkout-cart-info-bg: #171c28;
  --checkout-cart-info-shadow: rgba(23, 28, 40, 0.2);
  --checkout-cart-item-border-color: #292e39;
  --checkout-gift-shadow: rgba(23, 28, 40, 0.2);
  --checkout-icon-color: brightness(0) saturate(100%) invert(81%) sepia(1%) saturate(1513%) hue-rotate(194deg)
      brightness(98%) contrast(80%);
  --address-cart-choose-border-color: #b9babe;
  --address-cart-btn-icon-color: brightness(0) saturate(100%) invert(91%) sepia(6%) saturate(123%) hue-rotate(191deg)
      brightness(84%) contrast(84%);
  --payment-item-bg: #292e39;
  --modal-bg: #2f3441;
  --modal-shadow: rgba(23, 28, 40, 0.4);
  --profile-sidebar-bg: #171c28;
  --profile-text-color: #b9babe;
  --profile-icon-color: brightness(0) saturate(100%) invert(77%) sepia(15%) saturate(11%) hue-rotate(146deg)
      brightness(95%) contrast(90%);
  --profile-payment-new-card-border-color: #b9babe;
  --profile-sidebar-shadow: rgba(23, 28, 40, 0.2);
  --account-info-bg: #292e39;
  --account-info-thumb-bg: #171c28;
}
@media (max-width: 991.98px) {
  html.dark {
    --header-shadow-color: rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 991.98px) {
  html.dark {
    --product-preview-bg: #171c28;
  }
}

.logo {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.logo__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
}

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

.top-menu {
  --main-column-width: 322px;
  --max-inner-height: calc(min(582px, 100vh - 158px) - (var(--inner-padding) * 2));
  position: relative;
}
.top-menu__main {
  width: 292px;
  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;
  column-gap: 14px;
}
.menu-column + .menu-column {
  margin-top: 20px;
}
.menu-column__icon {
  position: relative;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.menu-column__icon-1 {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.menu-column__icon-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter: var(--menu-column-icon-color);
}
@media (max-width: 1199.98px) {
  .menu-column__icon {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .menu-column__icon {
    display: block;
  }
}
.menu-column__content {
  flex: 1;
  margin-top: 5px;
}
.menu-column__heading {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .menu-column__heading {
    margin-bottom: 20px;
  }
}
.menu-column__list {
  margin-top: 19px;
}
@media (max-width: 991.98px) {
  .menu-column__list {
    margin-top: 0;
  }
}
.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: 1.4rem;
  line-height: 142.857%;
}

.sub-menu {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  position: absolute;
  inset: 0 0 0 var(--main-column-width);
  overflow-y: auto;
}
@media (max-width: 991.98px) {
  .sub-menu {
    position: initial;
    grid-template-columns: 1fr;
    padding-top: 7px;
  }
}
.sub-menu--not-main {
  display: grid;
  inset: initial;
  position: 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;
  }
}
@media (max-width: 991.98px) {
  .sub-menu__column:not(:first-child) {
    margin-top: 20px;
  }
}

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

.cate-item {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background: var(--cate-item-bg);
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .cate-item {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .cate-item {
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
  }
}
.cate-item:hover {
  translate: 0 -10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.cate-item__thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: var(--cate-item-thumb-bg);
  object-fit: contain;
}
@media (max-width: 1199.98px) {
  .cate-item__thumb {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .cate-item__thumb {
    width: 88px;
    height: 88px;
    margin: 0;
  }
}
.cate-item__info {
  padding-right: 30px;
}
@media (max-width: 1399.98px) {
  .cate-item__info {
    padding-right: 0;
  }
}
.cate-item__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
  color: var(--cate-item-title-color);
}
@media (max-width: 767.98px) {
  .cate-item__title {
    font-size: 1.8rem;
    line-height: 144.444%;
  }
}
.cate-item__desc {
  margin-top: 6px;
  font-size: 1.6rem;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .cate-item__desc {
    font-size: 1.4rem;
    line-height: 142.857%;
  }
}

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

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 6px;
  background: #f8f8fb;
  white-space: nowrap;
  user-select: none;
}
.btn--small {
  height: 40px;
  padding: 0 16px;
}
.btn + .btn {
  margin-left: 20px;
}
.btn--text {
  font-weight: 400;
  background: transparent;
}
.btn--primary {
  background: #ffb700;
  color: #1a162e;
}
.btn--outline {
  background: transparent;
  border: 1px solid #d2d1d6;
}
.btn--rounded {
  border-radius: 99px;
}
.btn--danger {
  color: #fff;
  background: #ed4337;
}
.btn[disabled], .btn--disable {
  opacity: 0.5;
  pointer-events: none;
}
.btn:hover {
  opacity: 0.9;
}

.back-To__Top-Btn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100px;
  right: 20px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background-color: #2bd7e3;
  background-image: linear-gradient(73deg, #2bd7e3 10%, #e4d1d1 100%);
  display: none;
}
.back-To__Top-Btn:hover {
  opacity: 0.7;
}
.back-To__Top-Btn-img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(99%) sepia(48%) saturate(448%) hue-rotate(199deg) brightness(115%) contrast(100%);
}

.product-card {
  padding: 16px;
  background: var(--product-card-bg);
  border-radius: 20px;
  box-shadow: 0px 20px 60px 10px var(--product-shadow-color);
  transition: 0.3s;
}
.product-card:hover {
  translate: 0 -10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.product-card__img-wrap {
  position: relative;
  width: 100%;
  padding-top: 101%;
  flex-shrink: 0;
}
.product-card__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__like-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-card__title, .product-card__price, .product-card__score {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.product-card__title {
  margin-top: 16px;
}
@media (min-width: 1px) {
  .product-card__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.product-card__brand {
  margin: 16px 0;
  color: var(--product-card-brand);
  font-size: 1.5rem;
  line-height: 146.667%;
}
.product-card__row {
  display: flex;
  align-items: center;
}
.product-card__star {
  margin: 0 6px 0 auto;
}

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

.filter {
  position: absolute;
  top: 56px;
  right: 0;
  padding: 30px 0;
  border-radius: 20px;
  background: var(--filter-form-bg);
  filter: drop-shadow(0px 40px 90px var(--filter-form-shadow));
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .filter {
    position: fixed;
    height: 100vh;
    width: 100vw;
    inset: 0;
    border-radius: 0;
  }
}
.filter.hide {
  opacity: 0;
  visibility: hidden;
}
.filter.show {
  opacity: 1;
  visibility: visible;
}
.filter__arrow {
  position: absolute;
  top: -18px;
  right: 25px;
  height: 20.5px;
  filter: var(--filter-form-arrow-color);
}
.filter__heading {
  margin-left: 30px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 575.98px) {
  .filter__heading {
    margin-top: 32px;
  }
}
.filter__form {
  margin-top: 30px;
}
@media (max-width: 575.98px) {
  .filter__form {
    margin-top: 20px;
  }
}
.filter__form-input {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
.filter__form-input {
  border: 1px solid #d2d1d6;
  border-radius: 6px;
}
@media (max-width: 575.98px) {
  .filter__form-input {
    font-weight: 500;
  }
}
.filter__form-input {
  margin-top: 10px;
  padding: 0 12px;
  width: 121px;
  height: 36px;
}
@media (max-width: 1199.98px) {
  .filter__form-input {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .filter__form-input {
    font-size: 1.6rem !important;
  }
}
.filter__form-search-wrap {
  display: flex;
  align-items: center;
  width: 334px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
}
@media (max-width: 575.98px) {
  .filter__form-search-wrap {
    width: 100%;
  }
}
.filter__form-search {
  width: 100%;
  height: 100%;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.filter__form-search::placeholder {
  font-size: 1.5rem;
  line-height: 146.667%;
  color: #9e9da8;
}
@media (max-width: 575.98px) {
  .filter__form-search::placeholder {
    font-size: 1.6rem;
    font-weight: 400;
  }
}
.filter__form-search-icon {
  padding-right: 16px;
}
.filter__separate {
  width: 1px;
  background: #eee;
  margin: 0 30px;
}
@media (max-width: 1199.98px) {
  .filter__separate {
    width: 100%;
    height: 1px;
    margin: 30px 0;
  }
}
@media (max-width: 575.98px) {
  .filter__separate {
    margin: 20px 0;
  }
}
.filter__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 575.98px) {
  .filter__footer {
    position: sticky;
    margin-top: 18px;
    bottom: 30px;
    background: var(--filter-form-bg);
  }
}
.filter__footer {
  padding: 0 30px;
}
@media (max-width: 575.98px) {
  .filter__footer {
    padding: 0 20px;
  }
}
.filter__cancel, .filter__submit {
  height: 38px;
  padding: 0 10px;
}
@media (max-width: 575.98px) {
  .filter__cancel, .filter__submit {
    flex: 1;
    height: 40px;
  }
}
.filter__cancel {
  font-size: 1.5rem;
  font-weight: 400;
}
.filter__submit {
  font-size: 1.4rem;
  color: #1a162e;
}

.form:has(:invalid) .form__submit-btn {
  opacity: 0.5;
  pointer-events: none;
}
.form__group {
  margin-top: 30px;
}
.form__group-inline {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .form__group {
    margin-top: 20px;
  }
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__text-input {
  border-color: #ed4337;
  background: rgba(237, 67, 55, 0.1);
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__input-icon {
  display: none;
}
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__input-icon-error,
.form__group:has(:invalid):has(.form__input:not(:placeholder-shown)):has(.form__input:not(:focus-within)) .form__error {
  display: block;
}
.form__text-input, .form__text-area {
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 2px solid #d2d1d6;
}
.form__text-input:focus-within, .form__text-area:focus-within {
  border-color: #77dae6;
}
.form__text-input--small, .form__text-area--small {
  border-radius: 8px;
}
.form__text-area {
  padding: 12px;
  height: 100px;
}
.form__text-input {
  position: relative;
  height: 48px;
}
@media (max-width: 767.98px) {
  .form__text-input {
    height: 46px;
  }
}
.form__text-input--small {
  height: 42px;
}
.form__input, .form__text-area-input {
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0 12px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .form__input, .form__text-area-input {
    font-size: 1.6rem;
  }
}
.form__input::placeholder, .form__text-area-input::placeholder {
  color: #d2d1d6;
}
.form__text-area-input {
  resize: none;
  padding: 0;
}
.form__input {
  padding: 0 12px;
}
.form__input:focus ~ .form__input-icon {
  filter: brightness(0) saturate(100%) invert(98%) sepia(39%) saturate(7253%) hue-rotate(157deg) brightness(93%) contrast(92%);
}
.form__input-icon, .form__input-icon-error {
  margin-right: 12px;
}
.form__input-icon-error {
  display: none;
  animation: shake 0.5s;
}
.form__select-dialog {
  display: flex;
  position: absolute;
  flex-direction: column;
  bottom: 40px;
  left: -2px;
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: 0.3s;
  min-width: 230px;
  max-height: 280px;
  padding: 10px 20px;
  background: var(--modal-bg);
  border: 2px solid #d2d1d6;
  border-radius: 10px;
  box-shadow: 0px 20px 60px 10px var(--modal-shadow-color);
  z-index: 1;
}
.form__select-dialog.show {
  opacity: 1;
  visibility: visible;
  translate: 0 -8px;
}
@media (max-width: 575.98px) {
  .form__select-dialog.show {
    translate: 0 0;
  }
}
@media (max-width: 575.98px) {
  .form__select-dialog {
    position: fixed;
    min-width: initial;
    max-height: initial;
    inset: 0;
    translate: 0 0;
    border: none;
    border-radius: 20px;
  }
}
.form__close-dialog {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
  padding: 5px 29px;
  opacity: 0.8;
}
.form__close-dialog:hover {
  opacity: 1;
}
.form__search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  border-width: 0px 0px 2px 0px;
  border-style: solid;
  border-color: #d2d1d6;
  border-radius: 14px;
}
.form__search-input {
  padding-left: 10px;
  height: 100%;
  width: 100%;
  font-size: inherit;
}
.form__search-input::placeholder {
  color: inherit;
}
@media (max-width: 575.98px) {
  .form__search-input {
    padding: 0 10px 0 0;
  }
}
.form__search-icon {
  height: 18px;
  flex-shrink: 0;
  padding: 0 10px;
}
@media (max-width: 991.98px) {
  .form__search {
    height: 48px;
  }
}
@media (max-width: 575.98px) {
  .form__search {
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}
.form__option-list {
  margin-top: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@supports (-webkit-touch-callout: none) {
  .form__option-list {
    padding-bottom: 300px;
  }
}
.form__option {
  padding: 10px 0 10px 5px;
  border-radius: 8px;
  user-select: none;
}
.form__option--current {
  color: #1a162e;
  font-weight: 500;
  background: rgba(119, 218, 230, 0.6);
}
.form__option:hover:not(.form__option--current) {
  background: rgba(238, 234, 234, 0.6);
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .form__option {
    padding: 13px 0 13px 5px;
  }
}
.form__error {
  text-align: left;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px 0 0 15px;
  color: #ed4337;
  display: none;
}
.form__pull-right {
  margin-left: auto;
}
.form__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
}
.form__checkbox::before, .form__checkbox::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 19px;
  border: 1px solid #9e9da8;
  border-radius: 6px;
}
.form__checkbox::after {
  top: 4px;
  left: 3px;
  width: 12px;
  height: 8px;
  border-width: 3px;
  border-color: transparent transparent #fff #fff;
  border-radius: 0;
  rotate: -45deg;
  display: none;
}
.form__checkbox:has(:checked)::before {
  border-color: #ffb700;
  background: #ffb700;
}
.form__checkbox:has(:checked)::after {
  display: block;
}
.form__checkbox-input {
  width: 19px;
  height: 19px;
}
.form__checkbox-label {
  margin-left: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #b9babe;
}
@media (max-width: 767.98px) {
  .form__checkbox-label {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.form__row {
  display: flex;
  gap: 0 20px;
}
.form__row > * {
  flex: 1;
}
@media (max-width: 767.98px) {
  .form__row {
    flex-direction: column;
  }
}
.form__label {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.form__label--medium {
  font-size: 1.8rem !important;
  margin: 0 0 20px 4px;
}
.form__label--small {
  font-size: 1.6rem !important;
  margin: 0 0 10px 4px;
}
.form__content {
  padding: 0 30px;
}
@media (max-width: 575.98px) {
  .form__content {
    padding: 0 20px;
  }
}
.form__content {
  max-height: calc(100vh - 350px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (max-width: 1199.98px) {
  .form__content {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .form__content {
    max-height: calc(100vh - 230px);
    padding-bottom: 60px;
  }
}
.form__group-inline {
  display: flex;
  column-gap: 30px;
}
.form__slider {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 30px 0;
  flex-shrink: 0;
  background: #d2d1d6;
}
.form__slider::before, .form__slider::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  width: 22px;
  height: 22px;
  border: 6px solid #ffb700;
  border-radius: 50%;
  background: var(--filter-form-bg);
}
.form__slider::before {
  left: var(--min-value);
}
.form__slider::after {
  left: var(--max-value);
}
.form__select-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  border: 1px solid #d2d1d6;
  border-radius: 6px;
}
@media (max-width: 575.98px) {
  .form__select-wrap {
    font-weight: 500;
  }
}
.form__select, .form__tag {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
.form__select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  min-width: var(--width, 108px);
  height: calc(100% - 10px);
  cursor: pointer;
}
.form__select + .form__select {
  border-left: 1px solid #d2d1d6;
}
@media (max-width: 1199.98px) {
  .form__select {
    flex: 2;
  }
  .form__select + .form__select {
    flex: 1.4;
  }
}
.form__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
@media (max-width: 575.98px) {
  .form__tags {
    gap: 9px;
  }
}
.form__tag {
  padding: 6px 12px;
  border-radius: 6px;
  color: #9e9da8;
  background-color: var(--form-tag-bg);
  transition: 0.2s;
}
.form__tag:hover {
  color: var(--text-color);
}
@media (max-width: 575.98px) {
  .form__tag {
    font-weight: 400;
  }
}
.form__footer, .form__heading, .form__content {
  padding: 0 30px;
}
@media (max-width: 575.98px) {
  .form__footer, .form__heading, .form__content {
    padding: 0 20px;
  }
}
.form__group-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0 20px;
  min-height: 64px;
  padding: 0 20px;
  border-radius: 10px;
  background: var(--breadcrumbs-bg);
  box-shadow: 0px 20px 60px 10px var(--breadcrumbs-shadow);
}
@media (max-width: 767.98px) {
  .breadcrumbs {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
  }
}
.breadcrumbs__item {
  height: 100%;
}
.breadcrumbs__link {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
  color: #9e9da8;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .breadcrumbs__link {
    font-size: 1.4rem;
  }
}
.breadcrumbs__link--current {
  color: inherit;
}
.breadcrumbs__link:hover {
  color: #2bd7e3;
}
.breadcrumbs__link:hover .breadcrumbs__icon {
  translate: 4px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(69%) saturate(475%) hue-rotate(131deg) brightness(90%) contrast(98%);
}
.breadcrumbs__icon {
  transition: 0.3s;
}

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

.review-card {
  padding: 30px;
  border-radius: 16px;
  background: var(--review-card-bg);
  height: 100%;
}
@media (max-width: 991.98px) {
  .review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.review-card__content {
  display: flex;
  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: left;
  }
}
.review-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 575.98px) {
  .review-card__title {
    font-size: 1.8rem;
  }
}
.review-card__desc {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.review-card__ratting {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199.98px) {
  .review-card__ratting {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .review-card__ratting {
    flex-direction: row;
  }
}
.review-card__ratting-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.review-card__star-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-content {
  font-size: 1.6rem;
  line-height: 1.6;
}
.text-content h1,
.text-content h2,
.text-content h3,
.text-content h4,
.text-content h5,
.text-content h6 {
  font-weight: 600;
}
.text-content h1 {
  font-size: 2.6rem;
}
.text-content h2 {
  font-size: 2.4rem;
}
.text-content h3 {
  font-size: 2rem;
}
.text-content h4 {
  font-size: 1.8rem;
}
.text-content h5 {
  font-size: 1.6rem;
}
.text-content h6 {
  font-size: 1.4rem;
}
.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%;
  object-fit: cover;
}
.text-content img + em {
  display: block;
  font-style: italic;
  text-align: center;
}
.text-content a {
  text-decoration: underline;
  color: #2bd7e3;
}
.text-content blockquote {
  padding: 20px;
  border-left: 10px solid #2bd7e3;
  background: rgba(43, 215, 227, 0.1);
  text-align: justify;
}
.text-content blockquote p {
  margin: 0;
}
.text-content hr {
  border: none;
  background: #2bd7e3;
  height: 1px;
  margin: 40px 0;
}
.text-content ul {
  list-style: disc;
  margin-left: 50px;
}
.text-content table {
  width: 100%;
  text-align: center;
}
.text-content tr,
.text-content th,
.text-content td {
  padding: 10px 20px;
  border: 1px solid #2bd7e3;
}
.text-content th {
  font-weight: 500;
}

.modal__overlay, .modal {
  position: fixed;
  inset: 0;
  z-index: 99;
}

.modal {
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
.modal.hide {
  opacity: 0;
  visibility: hidden;
}
.modal__close {
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 2.6rem;
  font-weight: 500;
  opacity: 0.7;
  cursor: pointer;
  z-index: 101;
}
.modal__close:hover {
  opacity: 1;
}
.modal--small .modal__content {
  --content-width: 400px;
}
.modal--large .modal__content {
  --content-width: 1100px;
}
.modal--fill .modal__content {
  width: 100%;
  height: 100%;
  border-radius: 0px;
}
.modal__content {
  position: relative;
  padding: 30px 10px 30px 30px;
  width: min(var(--content-width, 800px), 100% - 40px);
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 20px;
  background: var(--modal-bg);
  box-shadow: 0px 20px 60px 10px var(--modal-shadow-color);
  z-index: 100;
}
@media (max-width: 575.98px) {
  .modal__content {
    padding: 20px 5px 20px 20px;
  }
}
.modal__heading {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 575.98px) {
  .modal__heading {
    margin-bottom: 5px;
  }
}
.modal__body {
  padding-right: 20px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.modal__text {
  font-size: 1.8rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.modal__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .modal__bottom {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .modal__btn {
    flex: 1;
    margin-left: 0 !important;
  }
}

.payment-card {
  position: relative;
  z-index: 0;
  padding: 20px;
  border-radius: 10px;
  background: var(--bg-color);
  color: #fff;
  overflow: hidden;
  user-select: none;
}
.payment-card__img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}
.payment-card__top {
  display: flex;
  align-items: center;
  gap: 6px;
}
.payment-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
}
.payment-card__number {
  margin-top: 37px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.payment-card__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-card__info {
  display: flex;
  align-items: center;
  gap: 40px;
}
.payment-card__label {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 175%;
}
.payment-card__value {
  font-size: 1rem;
  font-weight: 500;
  line-height: 140%;
}
.payment-card__circle {
  --circle-size: 28px;
  position: relative;
  width: 42px;
  height: var(--circle-size);
}
.payment-card__circle::before, .payment-card__circle::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--circle-size);
  height: var(--circle-size);
  border-radius: 50%;
}
.payment-card__circle::before {
  left: 0;
  z-index: 1;
  background: rgb(249, 69, 69);
  mix-blend-mode: hard-light;
}
.payment-card__circle::after {
  right: 0;
  background: #ffb700;
}
.payment-card__new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 171px;
  border-radius: 10px;
  border: 1px dashed var(--profile-payment-new-card-border-color);
  transition: 0.1s;
}
.payment-card__new:hover {
  border-color: #2bd7e3;
}
.payment-card__new:hover .payment-card__icon-add {
  filter: brightness(0) saturate(100%) invert(71%) sepia(69%) saturate(475%) hue-rotate(131deg) brightness(90%) contrast(98%);
}
.payment-card__new:hover .payment-card__new-text {
  color: #2bd7e3;
}
.payment-card__icon-add {
  filter: var(--profile-icon-color);
  transition: 0.1s;
}
.payment-card__new-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
  transition: 0.1s;
}

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

.favourite-item {
  display: flex;
  gap: 20px;
}
.favourite-item__thumb {
  width: 151px;
  height: 108px;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .favourite-item__thumb {
    width: 110px;
    height: 78.675px;
  }
}
.favourite-item__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
.favourite-item__inline {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  margin-top: 10px;
}
@media (max-width: 991.98px) {
  .favourite-item__inline {
    flex-direction: column;
    align-items: flex-start;
  }
}
.favourite-item__price {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.favourite-item__btn {
  color: #1a162e;
}

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

.header {
  position: relative;
  z-index: 2;
  background: var(--header-bg-color);
}
@media (max-width: 991.98px) {
  .header {
    box-shadow: 0px 20px 60px 10px var(--header-shadow-color);
  }
}

.top-bar {
  position: relative;
  padding: 16px 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .top-bar {
    justify-content: space-between;
  }
}
@media (max-width: 991.98px) {
  .top-bar__logo {
    column-gap: 10px !important;
    margin-left: 39px;
  }
  .top-bar__logo-title {
    font-size: 1.8rem !important;
  }
  .top-bar__logo-img {
    width: 24px;
  }
}
@media (max-width: 767.98px) {
  .top-bar__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    margin-left: 0;
  }
}

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

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

.nav-btn {
  height: 50px;
  align-items: center;
  padding-right: 40px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  color: inherit;
}
@media (max-width: 575.98px) {
  .nav-btn {
    height: 44px;
  }
}
.nav-btn__title {
  margin-left: 16px;
}
.nav-btn__qnt {
  margin-left: auto;
}

.act-dropdown {
  position: absolute;
  width: min(500px, 100vw);
  top: 48px;
  right: -60px;
  padding-top: 28px;
  text-align: left;
  color: var(--act-dropdown-text-color);
  opacity: 0;
  visibility: hidden;
  transition: opacity, visibility;
  transition-duration: 0.2s;
}
.act-dropdown__inner {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: var(--act-dropdown-bg);
  box-shadow: 0px 40px 90px 20px var(--act-dropdown-shadow);
}
.act-dropdown__arrow {
  position: absolute;
  top: -13px;
  right: 74px;
  height: 20.5px;
  object-fit: contain;
  filter: var(--act-dropdown-arrow-color);
}
.act-dropdown__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.act-dropdown__list {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}
.act-dropdown__title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.act-dropdown__view-all {
  color: var(--Blue-Blue, #0071dc);
  font-size: 1.8rem;
  line-height: 145.455%;
}
.act-dropdown__view-all:hover {
  opacity: 0.9;
}
.act-dropdown__bottom {
  margin: 20px 0;
  padding: 20px 0;
  border-width: 1px 0;
  border-style: solid;
  border-color: var(--act-dropdown-border-color);
}
.act-dropdown__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.act-dropdown__row--bold {
  font-weight: 500;
}
.act-dropdown__row + .act-dropdown__row {
  margin-top: 10px;
}
.act-dropdown__label, .act-dropdown__value {
  font-size: 1.8rem;
  line-height: 145.455%;
}
.act-dropdown__btn {
  width: 278px;
  margin-left: auto;
  color: #1a162e;
}
.act-dropdown__separate {
  margin: 20px 0;
  height: 1px;
  background: var(--act-dropdown-border-color);
}

.cart-preview__item-thumb-wrap {
  position: relative;
  padding-top: 100%;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}
.cart-preview__item-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-preview__title {
  margin-top: 14px;
  font-size: 1.4rem;
  line-height: 142.857%;
}
.cart-preview__price {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}

.user-menu__top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-menu__avatar {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}
.user-menu__name {
  font-size: 1.8rem;
  font-weight: 600;
}
.user-menu__username {
  margin-top: 4px;
  font-size: 1.4rem;
}
.user-menu__list {
  margin-top: 30px;
}
.user-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-radius: 5px;
  transition: 0.2s;
}
.user-menu__link:hover {
  color: #1a162e;
  background: #2bd7e3;
  background-image: linear-gradient(73deg, #2bd7e3 10%, #e4d1d1 100%);
}
.user-menu__link:hover > .user-menu__icon {
  filter: brightness(0) saturate(100%) invert(4%) sepia(44%) saturate(3579%) hue-rotate(239deg) brightness(99%) contrast(90%);
}
.user-menu__icon {
  width: 24px;
  height: 24px;
  transition: 0.1s;
  filter: var(--profile-icon-color);
}

.footer__inner {
  background: var(--footer-bg-color);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  border-radius: 10px;
  translate: 0 -50%;
  color: var(--footer-top-color);
  background-color: #2bd7e3;
  background-image: linear-gradient(73deg, #2bd7e3 80%, #cce5f5 100%);
}
@media (max-width: 991.98px) {
  .footer-top {
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    row-gap: 30px;
  }
}
.footer__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}
@media (max-width: 991.98px) {
  .footer__heading {
    text-align: center;
  }
}
.footer__benefits {
  margin-top: 15px;
  display: flex;
  gap: 10px 30px;
}
@media (max-width: 767.98px) {
  .footer__benefits {
    flex-direction: column;
  }
}
.footer__benefit {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 1.6rem;
  line-height: 150%;
}
.footer__benefit-icon {
  margin-top: 2px;
  width: 12px;
  filter: var(--footer-top-icon-color);
}
.footer__cta {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .footer__cta {
    row-gap: 15px;
    flex-direction: column;
  }
}
.footer__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  font-size: 1.6rem;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .footer__cta-btn {
    margin-left: 0 !important;
  }
}
.footer__cta-sign-up {
  background: var(--footer-top-btn-sign-up);
}
.footer__cta-sales {
  background: transparent;
  border: 1px solid;
}
.footer__cta-icon {
  width: 12px;
  filter: var(--footer-top-icon-color);
}
.footer-content {
  margin-top: -40px;
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .footer-content {
    margin-top: -90px;
  }
}
@media (max-width: 575.98px) {
  .footer-content {
    margin-top: -110px;
  }
}
.footer-logo {
  margin-bottom: 35px;
}
@media (max-width: 991.98px) {
  .footer-logo {
    margin-left: 0;
  }
}
.footer-item__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.footer-item__title, .footer-item__link {
  color: var(--footer-content-color);
}
.footer-item__list {
  margin-top: 10px;
}
.footer-item__link {
  position: relative;
  display: inline-block;
  padding: 5px 0;
  line-height: 140%;
}
.footer-item__link::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #2bd7e3;
  background-image: linear-gradient(73deg, #2bd7e3 10%, #e4d1d1 100%);
  transition: 0.5s;
}
.footer-item__link:hover::before {
  left: 0;
  width: 100%;
}
.footer-item__link:hover {
  opacity: 0.9;
}
.footer-bottom {
  margin-top: 80px;
  padding: 25px 0;
  border-top: 1px solid #2bd7e3;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .footer-bottom__inner {
    row-gap: 15px;
    flex-direction: column;
    justify-content: center;
  }
}
.footer__copyright {
  display: flex;
  column-gap: 10px;
  font-size: 1.4rem;
  color: var(--footer-content-color);
}
.footer__system {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  font-size: 1.2rem;
  color: #2bd7e3;
  border-color: #2bd7e3;
}

.home {
  margin-bottom: 120px;
}
@media (max-width: 767.98px) {
  .home {
    margin-bottom: 160px;
  }
}
@media (max-width: 575.98px) {
  .home {
    margin-bottom: 190px;
  }
}
.home__container {
  margin-top: 40px;
}
@media (max-width: 767.98px) {
  .home__container {
    margin-top: 30px;
  }
}
.home__heading {
  font-size: 2.4rem;
  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: 24px;
  }
}
@media (max-width: 767.98px) {
  .home__cate {
    margin-top: 0;
    --grid-gutter-y: 20px;
  }
}
.home__row {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth {
  display: flex;
  min-height: 100vh;
  color: var(--auth-text-color);
}
@supports (-webkit-touch-callout: none) {
  .auth {
    min-height: -webkit-fill-available;
  }
}
.auth__intro, .auth__content {
  flex: 1;
  padding: 0 30px;
}
.auth__intro {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  background: var(--auth-intro-bg);
}
.auth__intro-logo, .auth__intro-next {
  position: absolute;
  top: 80px;
  left: 50%;
  translate: -50%;
}
.auth__intro-next {
  top: initial;
  bottom: 50px;
}
.auth__intro-img {
  width: min(424px, 100%);
}
.auth__intro-text {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
  max-width: 412px;
}
@media (max-width: 767.98px) {
  .auth__intro-text {
    font-size: 1.5rem;
    line-height: 146.667%;
  }
}
.auth__content {
  background: var(--auth-content-bg);
}
@media (max-width: 767.98px) {
  .auth__content {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow-y: auto;
    transition: translate 0.4s;
  }
  .auth__content.hide {
    translate: 100%;
  }
}
.auth__content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .auth__content-inner {
    padding: 32px 0;
  }
}
.auth__heading {
  margin-top: 50px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .auth__heading {
    margin-top: 40px;
    font-size: 2.2rem;
  }
}
.auth__desc {
  margin-top: 10px;
  padding: 0 20px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #9e9da8;
}
@media (max-width: 767.98px) {
  .auth__desc {
    font-size: 1.4rem;
  }
}
.auth__message {
  margin-top: 30px;
}
.auth__form {
  width: 100%;
  margin-top: 30px;
}
.auth__form-forgot {
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .auth__form {
    margin-top: 0;
  }
}
.auth__link {
  color: #0071dc;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .auth__link {
    font-size: 1.4rem;
  }
}
.auth__link-sign-in {
  font-size: 1.8rem;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .auth__link-sign-in {
    font-size: 1.6rem;
  }
}
.auth__link:hover {
  opacity: 0.9;
}
.auth__btn-group {
  margin-top: 50px !important;
}
@media (max-width: 767.98px) {
  .auth__btn-group {
    margin-top: 40px !important;
  }
}
.auth__btn {
  column-gap: 10px;
  width: 100%;
  margin-left: 0 !important;
}
.auth__btn + .auth__btn {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .auth__btn + .auth__btn {
    margin-top: 20px;
  }
}
.auth__btn-icon {
  filter: var(--auth-content-icon-color);
}
.auth__text {
  margin-top: 108px;
  color: #9e9da8;
  font-size: 1.8rem;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .auth__text {
    margin-top: 40px;
    font-size: 1.6rem;
  }
}

.product-page {
  display: flex;
  flex-direction: column;
  background: var(--product-detail-bg);
  padding-bottom: 120px;
}
@media (max-width: 767.98px) {
  .product-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 575.98px) {
  .product-page {
    padding-bottom: 190px;
  }
}
.product-container {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .product-container {
    margin-top: 20px;
  }
}
.product-preview {
  padding: 0 30px;
  overflow: hidden;
  background: var(--product-preview-bg);
}
@media (max-width: 991.98px) {
  .product-preview {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
@media (max-width: 767.98px) {
  .product-preview {
    padding: 16px;
  }
}
.product-preview__list {
  width: 100%;
  display: flex;
  transition: transform 0.4s;
}
@media (max-width: 991.98px) {
  .product-preview__list {
    width: calc(100% - 60px);
  }
}
@media (max-width: 767.98px) {
  .product-preview__list {
    width: 100%;
  }
}
.product-preview__item {
  position: relative;
  width: 100%;
  height: 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;
  }
}
@media (max-width: 767.98px) {
  .product-preview__thumbs {
    display: none;
  }
}
.product-preview__thumb-img {
  height: 65px;
  width: 65px;
  object-fit: contain;
  border: 1px solid rgba(159, 158, 169, 0.3);
  border-radius: 8px;
  opacity: 0.9;
  transition: 0.3s;
  cursor: pointer;
}
.product-preview__thumb-img:hover {
  opacity: 1;
  border-color: #2bd7e3;
}
.product-preview__thumb-img--current {
  opacity: 1;
  border-color: #2bd7e3;
  cursor: default;
}
.product-info {
  padding: 60px;
  background: var(--product-info-bg);
}
@media (max-width: 1399.98px) {
  .product-info {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .product-info {
    margin-top: 0;
    padding: 0 16px 16px;
  }
}
.product-info__heading {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 138.462%;
}
@media (max-width: 575.98px) {
  .product-info__heading {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 144.444%;
  }
}
.product-info__label {
  display: inline-block;
  margin-top: 30px;
}
.product-info__tag {
  background: var(--product-info-tag-bg);
}
.product-info__card {
  padding: 20px;
  margin-top: 30px;
  border-radius: 6px;
  border: 1px solid #b9babe;
}
.product-info__row {
  display: flex;
  align-items: center;
}
.product-info__price {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.product-info__tax {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 142.857%;
  color: #67b044;
  margin-left: 10px;
  padding: 2px 8px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), #67b044;
}
.product-info__total-price {
  margin: 20px 0 20px 0;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 138.462%;
}
.product-info__add-to-cart {
  flex-grow: 1;
  margin-right: 20px;
}
.product-info__like-btn {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: 1px solid #d2d1d6;
  background: transparent;
}

@media (max-width: 767.98px) {
  .product-info-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 20px 60px 10px var(--product-container-shadow);
  }
}

.product-properties {
  padding-left: 30px;
}
@media (max-width: 1399.98px) {
  .product-properties {
    padding-left: 0;
  }
}

.product-property {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .product-property {
    margin-top: 20;
  }
}
.product-property__icon {
  margin-top: 3px;
  align-self: flex-start;
}
.product-property__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.product-property__desc {
  margin-top: 4px;
  font-size: 1.4rem;
  line-height: 142.857%;
}

.product-tab__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-left: -30px;
}
@media (max-width: 767.98px) {
  .product-tab__list {
    margin-left: -10px;
  }
}
.product-tab__item {
  padding: 0 30px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
  color: #9e9da8;
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.product-tab__item--current {
  color: inherit;
  cursor: default;
}
@media (max-width: 767.98px) {
  .product-tab__item {
    padding: 8px 10px;
    font-size: 1.8rem;
    line-height: 142.857%;
  }
}
.product-tab__contents {
  padding-top: 30px;
}
.product-tab__content {
  display: none;
}
.product-tab__content--current {
  display: block;
}
.product-tab__text-content {
  margin-top: -20px;
}

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

.checkout-page {
  display: flex;
  flex-direction: column;
  padding-bottom: 120px;
}
@media (max-width: 767.98px) {
  .checkout-page {
    padding-bottom: 160px;
  }
}
@media (max-width: 575.98px) {
  .checkout-page {
    padding-bottom: 190px;
  }
}
.checkout-page-breadcrumbs {
  background: var(--checkout-breadcrumbs-bg);
}
.checkout-container {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .checkout-container {
    margin-top: 20px;
  }
}

.cart-info {
  padding: 30px;
  border-radius: 20px;
  color: var(--checkout-text-color);
  background: var(--checkout-cart-info-bg);
  box-shadow: 0px 20px 60px 10px var(--checkout-cart-info-shadow);
}
@media (max-width: 767.98px) {
  .cart-info {
    padding: 16px;
  }
}
.cart-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cart-info + .cart-info {
  margin-top: 30px;
}
.cart-info__back {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.1s;
}
.cart-info__back:hover {
  color: #2bd7e3;
}
.cart-info__back:hover .cart-info__back-icon {
  filter: brightness(0) saturate(100%) invert(71%) sepia(69%) saturate(475%) hue-rotate(131deg) brightness(90%) contrast(98%);
  translate: -4px;
}
.cart-info__back-icon {
  width: 30px;
  filter: var(--checkout-icon-color);
  transition: translate 0.3s;
}
.cart-info__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 141.667%;
}
.cart-info__heading--lv2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 145.455%;
}
@media (max-width: 767.98px) {
  .cart-info__heading {
    font-size: 1.6rem;
    line-height: 150%;
  }
}
.cart-info__sub-heading {
  margin: 30px 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .cart-info__sub-heading {
    margin: 30px 0 16px;
  }
}
.cart-info__desc {
  margin-top: 6px;
  font-size: 1.5rem;
  line-height: 146.667%;
}
.cart-info__form {
  margin-bottom: 30px;
}
.cart-info__list {
  margin-top: -30px;
}
@media (max-width: 767.98px) {
  .cart-info__list {
    margin-top: -16px;
  }
}
.cart-info__bottom {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .cart-info__bottom {
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
  .cart-info__bottom-row {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start !important;
  }
}
.cart-info__continute, .cart-info__row {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .cart-info__continute, .cart-info__row {
    font-size: 1.6rem;
  }
}
.cart-info__sub-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
}
.cart-info__continute {
  display: flex;
  align-items: flex-end;
  height: 100%;
  user-select: none;
}
.cart-info__continute-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-info__continute-link:hover {
  color: #2bd7e3;
}
.cart-info__continute-link:hover .cart-info__continute-icon {
  translate: -4px;
  filter: brightness(0) saturate(100%) invert(71%) sepia(69%) saturate(475%) hue-rotate(131deg) brightness(90%) contrast(98%);
}
.cart-info__continute-icon {
  transition: 0.3s;
  filter: var(--checkout-icon-color);
}
.cart-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-info__row + .cart-info__row {
  margin-top: 10px;
}
.cart-info__row--total {
  font-size: 2.2rem;
  font-weight: 700;
}
.cart-info__separate {
  margin: 30px 0;
  height: 1px;
  background: var(--checkout-cart-item-border-color);
}
@media (max-width: 767.98px) {
  .cart-info__separate {
    margin: 16px 0;
  }
}
.cart-info__next-btn {
  margin-top: 30px;
  height: 48px;
  color: #1a162e;
  font-size: 2rem;
  font-weight: 500;
  line-height: 145.455%;
}
.cart-info__edit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  line-height: 144.444%;
}
.cart-info__edit-btn-icon {
  filter: var(--address-cart-btn-icon-color);
}
.cart-info__choose, .cart-info__choose-all {
  position: relative;
  margin-top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1px solid var(--address-cart-choose-border-color);
  flex-shrink: 0;
}
.cart-info__choose::before, .cart-info__choose-all::before {
  position: absolute;
  content: "";
  top: 3.5px;
  left: 3.5px;
  width: 10px;
  height: 7px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(-45deg);
  display: none;
}
.cart-info__choose--active, .cart-info__choose-all--active {
  background: #67b044;
  border-color: #67b044;
}
.cart-info__choose--active::before, .cart-info__choose-all--active::before {
  display: block;
}
.cart-info__choose-all {
  margin: 30px 0;
}
@media (max-width: 767.98px) {
  .cart-info__checkout-all {
    width: 100%;
  }
}

.cart-item {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid var(--checkout-cart-item-border-color);
}
@media (max-width: 767.98px) {
  .cart-item {
    padding: 16px 0;
  }
  .cart-item:last-child {
    border: none;
  }
}
.cart-item__thumb {
  margin: 0 30px 0 20px;
  width: 172px;
  height: 175px;
  object-fit: contain;
}
@media (max-width: 1399.98px) {
  .cart-item__thumb {
    width: 152px;
    height: 155px;
  }
}
@media (max-width: 991.98px) {
  .cart-item__thumb {
    width: 102px;
    height: 105px;
  }
}
@media (max-width: 767.98px) {
  .cart-item__thumb {
    margin: 0 14px;
    width: 60px;
    height: 60px;
  }
}
.cart-item__content {
  display: flex;
  flex: 1;
  align-self: flex-start;
}
@media (max-width: 767.98px) {
  .cart-item__content {
    flex-direction: column;
  }
}
.cart-item__content-left {
  flex: 1;
}
.cart-item__content-right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .cart-item__content-right {
    margin-top: 16px;
  }
}
.cart-item__title {
  max-width: 374px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-item__price-wrap {
  margin: 16px 0;
  display: flex;
  gap: 4px;
  color: #9e9da8;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.cart-item__status {
  color: #67b044;
}
.cart-item__total-price {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 145.455%;
  text-align: right;
}
@media (max-width: 767.98px) {
  .cart-item__total-price {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 13px;
  }
}
.cart-item__ctr-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .cart-item__ctr-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .cart-item__ctr-wrap {
    gap: 16px;
  }
}
.cart-item__ctrl {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
@media (max-width: 767.98px) {
  .cart-item__ctrl {
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .cart-item__ctrl--with-input {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cart-item__input {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  height: 44px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #d2d1d6;
}
.cart-item__input-value {
  width: 20px;
  text-align: center;
}
.cart-item__ctrl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  color: #9e9da8;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 150%;
}
.cart-item__ctrl-btn + .cart-item__ctrl-btn {
  margin-left: 10px;
}
.cart-item__icon {
  display: block;
  filter: var(--checkout-icon-color);
}
.cart-item__checkout-btn {
  margin-top: auto;
}
@media (max-width: 767.98px) {
  .cart-item__checkout-btn {
    max-width: min(200px, 100%);
  }
}

.gift-item {
  display: flex;
  gap: 20px;
}
.gift-item__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 14px;
  background: rgba(118, 68, 225, 0.1);
  box-shadow: 0px 20px 60px 10px var(--checkout-gift-shadow);
}
.gift-item__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.gift-item__desc {
  margin-top: 10px;
  font-size: 1.4rem;
  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.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .user-address__title {
    font-size: 1.6rem;
    line-height: 150%;
  }
}
.user-address__desc {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .user-address__desc {
    font-size: 1.4rem;
    line-height: 142.857%;
  }
}
.user-address__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
}
.user-address__message {
  margin: 30px 0;
  font-weight: 500;
}
.user-address__link {
  color: #2bd7e3;
}

.address-cart {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .address-cart {
    flex-direction: column;
  }
}
.address-cart__left {
  display: flex;
  gap: 16px;
  cursor: pointer;
}
.address-cart__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 767.98px) {
  .address-cart__title {
    font-size: 1.6rem;
    line-height: 150%;
  }
}
.address-cart__desc {
  width: min(520px, 90%);
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 146.667%;
}
@media (max-width: 767.98px) {
  .address-cart__desc {
    font-size: 1.4rem;
    line-height: 142.857%;
  }
}
.address-cart__list {
  display: flex;
  gap: 30px;
  margin: 20px 0 0 8px;
  list-style: disc inside;
  font-size: 1.4rem;
  line-height: 142.857%;
}
@media (max-width: 767.98px) {
  .address-cart__list {
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}
.address-cart__right {
  display: flex;
  align-items: flex-end;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 20px;
  border-radius: 20px;
  background: var(--payment-item-bg);
}
.payment-item__delivery {
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .payment-item__delivery {
    flex-direction: column;
    align-items: flex-start;
  }
}
.payment-item__info {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .payment-item__info {
    gap: 16px;
  }
}
.payment-item__thumb {
  width: 70px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 575.98px) {
  .payment-item__thumb {
    width: 60px;
    height: 46px;
  }
}
.payment-item__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
@media (max-width: 575.98px) {
  .payment-item__title {
    font-size: 1.6rem;
    line-height: 150%;
  }
}
.payment-item__desc, .payment-item__detail {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 146.667%;
}
.payment-item__desc--low, .payment-item__detail--low {
  color: #9e9da8;
  font-size: 1.6rem;
  line-height: 150%;
}
@media (max-width: 575.98px) {
  .payment-item__desc--low, .payment-item__detail--low {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 142.857%;
  }
}
.payment-item__detail {
  padding: 8px 12px;
  margin: 0 -8px 0 auto;
  font-weight: 700;
  color: #2bd7e3;
}
.payment-item__detail:hover {
  opacity: 0.9;
}
.payment-item__cost-wrap {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: auto;
}
@media (max-width: 575.98px) {
  .payment-item__cost-wrap {
    margin-left: 76px;
  }
}
.payment-item__cost {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
  color: #9e9da8;
}
.payment-item__cost--active {
  color: inherit;
}
.payment-item__check {
  margin-top: 0;
}

.profile {
  padding-bottom: 120px;
}
@media (max-width: 767.98px) {
  .profile {
    padding-bottom: 160px;
  }
}
@media (max-width: 575.98px) {
  .profile {
    padding-bottom: 190px;
  }
}
.profile__container {
  margin-top: 30px;
  color: var(--profile-text-color);
}
.profile__sidebar {
  padding-bottom: 30px;
  border-radius: 20px;
  background: var(--profile-sidebar-bg);
  box-shadow: 0px 20px 60px 10px var(--profile-sidebar-shadow);
}
.profile-user {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 35px 0 20px;
  background: linear-gradient(180deg, rgba(26, 22, 46, 0) 0%, #1a162e 100%), url("../img/profile/cover.png") no-repeat center/cover;
  border-radius: 20px 20px 0px 0px;
}
.profile-user__avatar {
  width: 121px;
  height: 121px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.08);
  background: #ccc content-box;
}
.profile-user__name {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 144.444%;
  color: #fff;
}
.profile-user__desc {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 146.667%;
  color: #fff;
}
.profile-menu {
  margin: 30px 30px 0 30px;
}
.profile-menu__title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 144.444%;
}
.profile-menu__list {
  margin-top: 11px;
}
.profile-menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-radius: 5px;
  transition: 0.2s;
}
.profile-menu__link:hover {
  color: #1a162e;
  background: #2bd7e3;
  background-image: linear-gradient(73deg, #2bd7e3 10%, #e4d1d1 100%);
}
.profile-menu__link:hover .profile-menu__icon {
  filter: brightness(0) saturate(100%) invert(4%) sepia(44%) saturate(3579%) hue-rotate(239deg) brightness(99%) contrast(90%);
}
.profile-menu__icon {
  width: 24px;
  height: 24px;
  transition: 0.1s;
  filter: var(--profile-icon-color);
}
.profile-menu__icon > * {
  width: 100%;
  height: 100%;
}
.profile__desc {
  margin-bottom: 16px;
}

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