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

*,
::after,
::before {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-family: "Gordita", sans-serif;
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--bg-color);
}

input,
textarea,
button,
select,
a,
label,
option {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    background-color: transparent;
    outline: none;
    border: none;
    padding: 0;
    text-decoration: none;
}

button {
    cursor: pointer;
}

input {
    width: 100%;
}

.page-row {
    display: flex;
    align-items: center;
}

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

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.go-back {
    width: 20px;
    height: 20px;
}
.go-back img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.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 {
    max-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: 1439.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;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-none {
    display: none;
}

@media (max-width: 1439.98px) {
    .d-xxl-block {
        display: block;
    }
    .d-xxl-flex {
        display: flex;
    }
    .d-xxl-grid {
        display: grid;
    }
    .d-xxl-none {
        display: none;
    }
}
@media (max-width: 1199.98px) {
    .d-xl-block {
        display: block;
    }
    .d-xl-flex {
        display: flex;
    }
    .d-xl-grid {
        display: grid;
    }
    .d-xl-none {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .d-lg-block {
        display: block;
    }
    .d-lg-flex {
        display: flex;
    }
    .d-lg-grid {
        display: grid;
    }
    .d-lg-none {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .d-md-block {
        display: block;
    }
    .d-md-flex {
        display: flex;
    }
    .d-md-grid {
        display: grid;
    }
    .d-md-none {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .d-sm-block {
        display: block;
    }
    .d-sm-flex {
        display: flex;
    }
    .d-sm-grid {
        display: grid;
    }
    .d-sm-none {
        display: none;
    }
}
html.dark {
    --text-color: #ffffff;
    --icon-color: brightness(0) saturate(100%) invert(100%) sepia(0%)
        saturate(0%) hue-rotate(356deg) brightness(103%) contrast(101%);
    --bg-color: #292e39;
    --header-bg-color: #171c28;
    --top-act-bg-color: #292e39;
    --top-act-shadow-color: rgba(0, 0, 0, 0.2);
    --dropdown-color: #2b333f;
    --dropdown-shadow-color: rgba(23, 28, 40, 0.4);
    --dropdown-bridge-color: brightness(0) saturate(100%) invert(18%) sepia(13%)
        saturate(875%) hue-rotate(177deg) brightness(97%) contrast(94%);
    --top-menu-border-color: #171c28;
    --top-menu-text-color: #b9babe;
    --shadow-color: rgba(23, 28, 40, 0.4);
    --card-bg-color-1: var(--header-bg-color);
    --card-bg-color-2: #171c28;
    --img-bg-color-1: var(--bg-color);
    --tag-bg: #171c28;
    --intro-bg: #171c28;
    --intro-subtitle-color: #b9babe;
    --breadcrumb-bg: #171c28;
    --card-odd-bg: rgba(0, 0, 0, 0.05);
    --card-even-bg: rgba(0, 0, 0, 0.05);
    --title-undeline: #292e39;
}

:root {
    --text-color: #1a162e;
    --icon-color: brightness(0) saturate(100%) invert(8%) sepia(51%)
        saturate(751%) hue-rotate(210deg) brightness(93%) contrast(96%);
    --field-icon-color: brightness(0) saturate(100%) invert(77%) sepia(9%)
        saturate(268%) hue-rotate(206deg) brightness(82%) contrast(84%);
    --bg-color: #f6f6f6;
    --header-bg-color: #eee;
    --top-act-bg-color: #fff;
    --top-act-shadow-color: rgba(237, 237, 246, 0.2);
    --dropdown-color: #fff;
    --dropdown-shadow-color: rgba(200, 200, 200, 0.4);
    --top-menu-border-color: #d2d1d6;
    --top-menu-text-color: var(--text-color);
    --shadow-color: rgba(200, 200, 200, 0.2);
    --card-bg-color-1: #eee;
    --card-bg-color-2: #fff;
    --img-bg-color-1: #fff;
    --form-elem-color: #d2d1d6;
    --tag-bg: #f8f8fb;
    --intro-bg: #fafafd;
    --breadcrumb-bg: #f6f6f6;
    --card-odd-bg: rgba(0, 0, 0, 0.05);
    --card-even-bg: transparent;
    --title-undeline: #d2d1d6;
}
@media (max-width: 767.98px) {
    :root {
        --header-bg-color: #fff;
    }
}

.header {
    padding: 30px 0;
    background-color: var(--header-bg-color);
}
@media (max-width: 767.98px) {
    .header {
        padding: 16px 0;
    }
}

.top-bar {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.top-bar__more {
    width: 24px;
    height: 24px;
    padding: 4px 6px;
}

.navbar {
    margin-left: 144px;
}
@media (max-width: 1199.98px) {
    .navbar {
        position: fixed;
        inset: 0 50% 0 0;
        translate: -100%;
        z-index: 2;
        bottom: 0;
        margin: 0;
        background-color: var(--dropdown-color);
        border-radius: 0 20px 20px 0;
        padding: 20px;
        transition: 0.3s linear;
    }
}
@media (max-width: 575.98px) {
    .navbar {
        right: 50px;
    }
}
.navbar-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    inset: 0;
    z-index: 1;
    transition: 0.3s linear;
}
@media (max-width: 1199.98px) {
    .navbar-overlay {
        background-color: rgba(0, 0, 0, 0.4);
    }
}
.navbar__list {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199.98px) {
    .navbar__list {
        flex-direction: column;
        gap: 20px;
        height: calc(100% - 27px);
        padding: 0 0 10px 0;
        overflow: auto;
    }
}
.navbar__item:hover .dropdown {
    display: block;
}
@media (max-width: 1199.98px) {
    .navbar__item:hover .dropdown {
        display: none;
    }
}
.navbar__link {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 146.667%;
    display: flex;
    gap: 6px;
    align-items: center;
}
@media (max-width: 1199.98px) {
    .navbar__link {
        justify-content: space-between;
    }
}
.navbar__close-btn {
    display: none;
    filter: var(--icon-color);
}
@media (max-width: 1199.98px) {
    .navbar__close-btn {
        display: block;
        padding: 4px;
        margin-bottom: 20px;
    }
}
.navbar.active {
    translate: 0;
    box-shadow: 0 40px 90px 20px var(--shadow-color);
}
.navbar.active ~ .navbar-overlay {
    visibility: visible;
    opacity: 1;
}

.top-act {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}
@media (max-width: 767.98px) {
    .top-act {
        margin-left: 0;
    }
}
.top-act__group {
    align-items: center;
    border-radius: 8px;
    background: var(--top-act-bg-color);
    box-shadow: 0px 20px 60px 10px var(--top-act-shadow-color);
}
.top-act__separate {
    width: 1px;
    height: 30px;
    background: #ededf6;
}
.top-act__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px;
}
.top-act__icon {
    width: 24px;
    height: auto;
}
.top-act__title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 146.667%;
}
.top-act__user {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    box-shadow: 0px 4px 14px 2px rgba(0, 0, 0, 0.08);
}
.top-act__ava {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-act-mobi__group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
}
.top-act-mobi__icon {
    filter: var(--icon-color);
}
.top-act-mobi__name {
    margin-left: 16px;
    margin-right: auto;
}

.top-act__btn:hover .cart-dropdown {
    display: block;
}

.footer {
    background-color: var(--dropdown-color);
    padding: 70px 0;
    margin-top: 30px;
}

.footer-col {
    width: 25%;
    padding: 0 15px;
}

.footer-col h4 {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 600;
    position: relative;
}

.footer-col h4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #0071dc;
    height: 3px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    font-weight: 500;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgb(220, 220, 220);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #24262b;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #77dae6;
    background-color: #373737;
}

/*responsive*/
@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width: 574px) {
    .footer-col {
        width: 100%;
    }
}
.title-01 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
@media (max-width: 991.98px) {
    .title-01 {
        font-size: 18px;
    }
}

.title-02 {
    font-size: 22px;
    font-weight: 500;
}

.title-03 {
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .title-03 {
        font-size: 14px;
    }
}

.title-04 {
    font-size: 18px;
    font-weight: 500;
}

.title-05 {
    font-size: 22px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .title-05 {
        font-size: 15px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
@media (max-width: 1199.98px) {
    .logo {
        margin-right: auto;
        margin-left: 50px;
    }
}
@media (max-width: 767.98px) {
    .logo {
        margin-left: auto;
    }
}
.logo__img {
    width: 32px;
    height: auto;
}
@media (max-width: 767.98px) {
    .logo__img {
        width: 24px;
    }
}
.logo__title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 145.455%;
}
@media (max-width: 767.98px) {
    .logo__title {
        font-size: 1.8rem;
    }
}

.dropdown {
    position: absolute;
    left: 0;
    padding-top: 54px;
    width: min(1240px, 100%);
    display: none;
}
@media (max-width: 1199.98px) {
    .dropdown {
        position: static;
        padding-top: 20px;
        max-height: 100%;
    }
}
.dropdown__inner {
    position: relative;
    border-radius: 20px;
    background: var(--dropdown-color);
    box-shadow: 0px 40px 90px 20px var(--dropdown-shadow-color);
    padding: 30px;
    height: min(588px, 100vh - 128px);
}
.dropdown__inner::after {
    content: url("../icons/bridge.svg");
    filter: var(--dropdown-bridge-color);
    position: absolute;
    top: -12px;
    left: var(--arrow-left-pos);
    translate: -50%;
}
@media (max-width: 1199.98px) {
    .dropdown__inner {
        padding: 0;
        box-shadow: none;
        height: auto;
    }
    .dropdown__inner::after {
        content: none;
    }
}
@media (max-width: 1199.98px) {
    .dropdown.active {
        display: block !important;
    }
}

.top-menu {
    position: relative;
    height: 100%;
}
.top-menu__main {
    width: 292px;
    height: 100%;
    border-right: 1px solid var(--top-menu-border-color);
    overflow: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.top-menu__main ::-webkit-scrollbar {
    /* Chrome, Safari and Opera */
    display: none;
}
@media (max-width: 1199.98px) {
    .top-menu__main {
        width: 100%;
        height: auto;
        border-right: none;
    }
}

.menu-column {
    display: flex;
    gap: 14px;
}
.menu-column + .menu-column {
    margin-top: 22px;
}
@media (max-width: 1199.98px) {
    .menu-column + .menu-column {
        margin-top: 10px;
    }
}
.menu-column__content {
    flex-grow: 1;
}
.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;
    width: 24px;
    height: 24px;
    object-fit: contain;
    right: 0;
    bottom: 0;
    filter: var(--icon-color);
}
.menu-column__heading {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 6px;
    color: var(--top-menu-text-color);
}
.menu-column__list {
    margin-top: 19px;
}
.menu-column__list > li:hover .sub-menu {
    display: flex;
}
@media (max-width: 1199.98px) {
    .menu-column__list > li:hover .sub-menu {
        display: none;
    }
}
.menu-column__list > li:hover > a,
.menu-column__list > li:active > a {
    color: #0071dc;
}
@media (max-width: 1199.98px) {
    .menu-column__list {
        margin-top: 0;
    }
}
.menu-column__link {
    display: block;
    font-size: 14px;
    line-height: 142.857%;
    padding: 7px 0;
    color: var(--top-menu-text-color);
}

.sub-menu {
    position: absolute;
    left: 292px;
    right: 0;
    top: 0;
    bottom: 0;
    padding-left: 30px;
    display: none;
    overflow: auto;
    gap: 77px;
}
@media (max-width: 1439.98px) {
    .sub-menu {
        gap: 40px;
    }
}
@media (max-width: 1199.98px) {
    .sub-menu {
        position: static;
        flex-direction: column;
        padding-left: 0;
        gap: 10px;
    }
    .sub-menu.active {
        display: flex !important;
    }
}
.sub-menu--not-main {
    left: 0;
    display: flex;
}

.cart-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    padding-top: 14px;
    width: min(645px, 100%);
    display: none;
}
.cart-dropdown__inner {
    position: relative;
    border-radius: 20px;
    background: var(--dropdown-color);
    box-shadow: 0px 40px 90px 20px var(--dropdown-shadow-color);
    padding: 30px;
    height: auto;
}
.cart-dropdown__inner::after {
    content: url("../icons/bridge.svg");
    filter: var(--dropdown-bridge-color);
    position: absolute;
    top: -12px;
    right: 104px;
    translate: -50%;
}
@media (max-width: 1199.98px) {
    .cart-dropdown__inner {
        box-shadow: none;
    }
}

.cart-menu__heading {
    display: flex;
    font-size: 22px;
    justify-content: space-between;
}
.cart-menu__title {
    font-weight: 500;
}
.cart-menu__prds {
    margin-top: 30px;
    margin-bottom: 30px;
}
.cart-menu__prds li:nth-child(2n) .card-04__img {
    background-color: var(--card-even-bg);
}
.cart-menu__all {
    color: #0071dc;
}
.cart-menu__prices {
    border-top: 1px solid #d2d1d6;
    border-bottom: 1px solid #d2d1d6;
    padding-top: 30px;
    padding-bottom: 10px;
}
.cart-menu__price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 22px;
}
.cart-menu__price--total {
    font-weight: 500;
}
.cart-menu__btn {
    margin-top: 30px;
    display: block;
    margin-left: auto;
}

.slideshow {
    border-radius: 20px;
    overflow: hidden;
}
@media (max-width: 991.98px) {
    .slideshow {
        border-radius: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
.slideshow__img-wrapper {
    position: relative;
    padding-bottom: 28%;
}
@media (max-width: 991.98px) {
    .slideshow__img-wrapper {
        padding-bottom: 35%;
    }
}
.slideshow__img-wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.filter {
    position: relative;
    padding-bottom: 20px;
}
.filter__btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--card-bg-color-2);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
}
.filter__btn img {
    width: 16px;
    height: auto;
    filter: var(--icon-color);
}
.filter__wrapper {
    display: none;
    position: absolute;
    right: 0;
    z-index: 1;
    max-width: calc(100vw - 30px);
    background-color: var(--top-act-bg-color);
    box-shadow: 0px 40px 90px 20px var(--shadow-color);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
}
.filter__wrapper::after {
    content: url("../icons/bridge.svg");
    filter: var(--dropdown-bridge-color);
    position: absolute;
    top: -12px;
    right: 35px;
}
@media (max-width: 1199.98px) {
    .filter__wrapper {
        padding: 20px;
    }
}
.filter__wrapper.active {
    display: block;
}
.filter__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: transparent;
}
.filter__wrapper.active ~ .filter__overlay {
    display: block;
}
.filter__form {
    margin-top: 30px;
}
@media (max-width: 1199.98px) {
    .filter__form {
        margin-top: 20px;
    }
}
.filter__funcs {
    display: flex;
    gap: 30px;
}
@media (max-width: 1199.98px) {
    .filter__funcs {
        flex-direction: column;
        gap: 20px;
    }
}
.filter__func {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 272px;
    max-width: 100%;
}
.filter__seperate {
    width: 0.8px;
    background: var(--form-elem-color);
}
@media (max-width: 1199.98px) {
    .filter__seperate {
        width: 100%;
        height: 1px;
    }
}
.filter__tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.filter__btns {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    margin-top: 20px;
}

.form .range-slider {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 10px 0;
    background-color: var(--form-elem-color);
}
.form .slider-track {
    height: 100%;
    position: absolute;
    background-color: #ffb700;
}
.form .range-slider input {
    position: absolute;
    width: 100%;
    background: none;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    appearance: none;
    margin: 0;
}
.form input[type="range"]::-webkit-slider-thumb {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 6px solid #ffb700;
    background: var(--top-act-bg-color);
    pointer-events: auto;
    appearance: none;
    cursor: pointer;
}
.form input[type="range"]::-moz-range-thumb {
    height: 22px;
    width: 22px;
    border-radius: 50%;
    border: 6px solid #ffb700;
    background: var(--top-act-bg-color);
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
}
.form .input-box {
    display: flex;
    gap: 30px;
}
.form .input-wrap {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}
.form .input-addon {
    margin-bottom: 10px;
}
.form .input-field {
    position: relative;
    display: block;
    border-radius: 6px;
    border: 1px solid var(--form-elem-color);
    padding: 8px 12px;
}
.form .input-field--dollar {
    padding: 8px 12px 8px 24px;
}
.form .input-field--dollar::before {
    content: "$";
    position: absolute;
    left: 12px;
    top: 50%;
    translate: 0 -50%;
}
.form .input-field--search {
    padding: 8px 50px 8px 12px;
}
.form .select-couple {
    display: flex;
    padding: 12px 14px;
    gap: 14px;
    border-radius: 6px;
    border: 1px solid var(--form-elem-color);
    font-size: 14px;
    font-weight: 500;
}
.form .select-single {
    position: relative;
}
.form .select-single:first-child {
    width: 57%;
}
.form .select-single:last-child {
    flex-grow: 1;
}
.form .select-seperate {
    width: 0.8px;
    background: var(--form-elem-color);
}
.form__check label {
    display: flex;
    align-items: center;
    gap: 13px;
}
.form__realbox {
    display: none;
}
.form__fakebox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--form-elem-color);
}
.form__realbox:checked ~ .form__fakebox {
    border: 1px solid #67b044;
    background: url("../icons/check.svg") center/66% auto no-repeat;
    background-color: #67b044;
}
.form__checklabel {
    color: var(--form-elem-color);
}
.form__number {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid var(--form-elem-color);
    padding: 10px 20px;
    /* Chrome, Safari, Edge, Opera */
    /* Firefox */
}
.form__number input {
    width: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}
.form__number input::-webkit-outer-spin-button,
.form__number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.form__number input[type="number"] {
    -moz-appearance: textfield;
}
.form__number button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid var(--text-color);
    flex-shrink: 0;
}

.tag-btn {
    background-color: var(--tag-bg);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    color: #9e9da8;
}
.tag-btn:hover {
    color: var(--text-color);
}

.select-single__btn::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    width: 24px;
    height: 24px;
    background: url("../icons/icon__dropdown.svg");
    filter: var(--icon-color);
}

.field-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    translate: 0 -50%;
    display: flex;
}

.cancel-btn {
    font-size: 15px;
    color: #9e9da8;
}
.cancel-btn:hover {
    color: var(--text-color);
}

.round-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 9px 10px;
    border-radius: 6px;
    background: #ffb700;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.round-btn:hover {
    color: #fff;
}

.circle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: max-content;
    padding: 18px 40px;
    border-radius: 50px;
    background: #ffb700;
    color: #1a162e;
    font-size: 22px;
    font-weight: 500;
}
.circle-btn:hover {
    color: #fff;
}
.circle-btn:hover svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
        hue-rotate(110deg) brightness(105%) contrast(103%);
}

.no-bg-btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--form-elem-color);
}
.no-bg-btn img {
    filter: var(--icon-color);
}
.no-bg-btn:hover {
    background-color: rgba(224, 224, 224, 0.2156862745);
}

.red-btn {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 12px;
    border-radius: 10px;
    opacity: 0.8;
    background-color: #ed4337;
}
.red-btn:hover {
    opacity: 1;
}

.breadcrumbs {
    border-radius: 10px;
    background: var(--breadcrumb-bg);
    box-shadow: 0 20px 60px 10px var(--shadow-color);
    padding: 20px;
}
.breadcrumbs__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.breadcrumbs__link {
    font-size: 16px;
    font-weight: 500;
    margin-right: 8px;
    color: #9e9da8;
}
.breadcrumbs__next {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(71%) sepia(13%) saturate(165%)
        hue-rotate(206deg) brightness(85%) contrast(96%);
    transform: rotate(-90deg);
    margin-right: 20px;
}
.breadcrumbs__active {
    color: var(--text-color);
}

.calc {
    background-color: var(--card-bg-color-2);
    padding: 30px;
    border-radius: 20px;
}
.calc__title {
    margin-bottom: 6px;
}
.calc__subtitle {
    font-size: 15px;
}
@media (max-width: 767.98px) {
    .calc__subtitle {
        font-size: 14px;
    }
}
.calc__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 14px;
}
.calc__row span {
    font-weight: 400;
}
.calc__row--total {
    padding-top: 14px;
    border-top: 1px solid #d2d1d6;
}
.calc__btn {
    margin-top: 30px;
    width: 100%;
    font-size: 22px;
}
@media (max-width: 1439.98px) {
    .calc__btn {
        font-size: 16px;
    }
}
.calc__form-group {
    margin-bottom: 30px;
}
.calc__form-group .title-03 {
    margin-bottom: 20px;
    display: block;
}
.calc__form-group .select-single {
    font-weight: normal;
}

.gift {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    margin-top: 30px;
    background-color: var(--card-bg-color-2);
    border-radius: 20px;
}
.gift__icon {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    padding: 10px;
    background: rgba(118, 68, 225, 0.0666666667);
}
.gift__title {
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .gift__title {
        font-size: 16px;
    }
}
.gift__subtitle {
    font-size: 14px;
    margin-top: 10px;
}

.page-back {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
}
.page-back img {
    padding: 5px;
    object-fit: contain;
    transform: rotate(90deg);
    filter: var(--icon-color);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s linear;
}
.modal__overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(141, 141, 141, 0.3450980392);
}
.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-color: var(--bg-color);
    padding: 60px;
    border-radius: 30px;
    max-width: 100%;
}
@media (max-width: 991.98px) {
    .modal__content {
        padding: 20px;
    }
}
.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    filter: var(--icon-color);
}
@media (max-width: 991.98px) {
    .modal__close {
        width: 30px;
        height: 30px;
    }
}
.modal__close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.modal__message {
    font-weight: 500;
    font-size: 30px;
    margin: 10px 0 30px;
    width: 400px;
    text-align: center;
}
@media (max-width: 991.98px) {
    .modal__message {
        font-size: 18px;
        width: 300px;
        max-width: 100%;
        margin: 30px 0;
    }
}
.modal__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.modal__btn {
    font-size: 20px;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.panel {
    border-radius: 20px;
    overflow: hidden;
}
.panel__wall {
    position: relative;
    width: 100%;
    height: 246px;
    padding: 40px 20px 20px;
    text-align: center;
    background-image: linear-gradient(
        180deg,
        rgba(26, 22, 46, 0) 0%,
        #1a162e 100%
    );
}
.panel__bg {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.panel__avatar {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    margin: 0 auto;
}
.panel__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.panel__name {
    color: #fff;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}
.panel__regis {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.panel__control {
    background-color: var(--card-bg-color-2);
    padding: 30px 30px 0;
}
.panel__group {
    padding-bottom: 30px;
}
.panel__title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
.panel__row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.panel__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.text-content h3,
.text-content p,
.text-content blockquote,
.text-content img,
.text-content em {
    font-size: inherit;
    margin: 20px 0;
}
@media (max-width: 991.98px) {
    .text-content h3,
    .text-content p,
    .text-content blockquote,
    .text-content img,
    .text-content em {
        margin: 10px 0;
    }
}
.text-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
}
@media (max-width: 991.98px) {
    .text-content h2 {
        font-size: 18px;
    }
}
.text-content h3 {
    font-size: 18px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .text-content h3 {
        font-size: 16px;
    }
}
.text-content p {
    font-size: 16px;
}
@media (max-width: 991.98px) {
    .text-content p {
        font-size: 14px;
    }
}
.text-content a {
    color: #0071dc;
    font-weight: 500;
    text-decoration: underline;
}
.text-content em {
    font-style: italic;
}
.text-content blockquote {
    border-left: 4px solid #ffc800;
    padding: 1px 20px;
    font-style: italic;
    background-color: rgba(255, 225, 0, 0.1098039216);
}
@media (max-width: 991.98px) {
    .text-content blockquote {
        border-width: 2px;
        padding: 1px 10px;
    }
}
.text-content hr {
    margin: 30px 0;
}
@media (max-width: 991.98px) {
    .text-content hr {
        margin: 20px 0;
    }
}
.text-content img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 500px;
    height: auto;
}
@media (max-width: 991.98px) {
    .text-content img {
        width: 200px;
    }
}
.text-content img + em {
    text-align: center;
    display: block;
}

.card-01 {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    border-radius: 16px;
    background-color: var(--card-bg-color-1);
}
.card-01__img {
    background-color: var(--img-bg-color-1);
    width: 116px;
    height: 116px;
    flex-shrink: 0;
    border-radius: 8px;
}
@media (max-width: 767.98px) {
    .card-01__img {
        width: 88px;
        height: 88px;
    }
}
.card-01__img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.card-01__info {
    margin-top: auto;
    margin-bottom: auto;
}
.card-01__price-range {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 5px;
}
@media (max-width: 767.98px) {
    .card-01__price-range {
        font-size: 18px;
    }
}
.card-01__desc {
    font-size: 16px;
    font-weight: 400;
}
@media (max-width: 767.98px) {
    .card-01__desc {
        font-size: 14px;
    }
}

.card-02 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
    background-color: var(--card-bg-color-2);
}
.card-02__img {
    position: relative;
    width: 100%;
    height: 284px;
}
.card-02__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-02__heart {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 20px 60px 6px rgba(124, 124, 124, 0.2);
    background-color: var(--top-act-bg-color);
}
.card-02__heart svg {
    width: 25px;
    height: auto;
}
.card-02__heart.active svg {
    fill: #f94545;
}
.card-02__heart.active path:first-child {
    stroke: #f94545;
}
.card-02__heart.active path:last-child {
    stroke: #fff;
}
.card-02__name {
    font-size: 16px;
    font-weight: 500;
}
.card-02__brand {
    font-size: 15px;
    color: #9e9da8;
}
.card-02__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}
.card-02__rate {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-03 {
    border-radius: 16px;
    background: var(--intro-bg);
    padding: 30px;
}
.card-03__user {
    display: flex;
    gap: 20px;
}
.card-03__user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.card-03__user-avatar img {
    width: 100%;
    object-fit: cover;
}
@media (max-width: 1199.98px) {
    .card-03__user-avatar {
        width: 60px;
        height: 60px;
    }
}
.card-03__user-name {
    font-size: 22px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .card-03__user-name {
        font-size: 18px;
    }
}
.card-03__user-mess {
    margin-top: 10px;
    font-size: 16px;
}
.card-03__rate {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}
.card-03__list-star {
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-03__list-star img {
    width: 24px;
    height: 24px;
    padding: 3px;
    vertical-align: middle;
}
.card-03__point {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

.card-04 {
    text-align: left;
}
.card-04__img {
    position: relative;
    padding-bottom: 100%;
    background-color: var(--card-odd-bg);
}
.card-04__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    object-fit: contain;
}
.card-04__name {
    margin-top: 14px;
    margin-bottom: 6px;
    font-size: 14px;
}
.card-04__price {
    font-size: 15px;
    font-weight: 500;
}

.card-05 {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--title-undeline);
}
.card-05__inner {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}
@media (max-width: 767.98px) {
    .card-05__inner {
        align-items: start;
        gap: 16px;
    }
}
.card-05__img {
    width: 175px;
    height: 175px;
    object-fit: contain;
}
@media (max-width: 767.98px) {
    .card-05__img {
        width: 60px;
        height: 60px;
    }
}
.card-05__info {
    flex-grow: 1;
}
.card-05__unit-price {
    font-size: 18px;
    font-weight: 500;
    color: #9e9da8;
    margin-top: 16px;
    margin-bottom: 16px;
}
.card-05__unit-price span {
    color: #67b044;
}
.card-05__edit {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1439.98px) {
    .card-05__edit {
        flex-direction: column;
        align-items: start;
    }
}
.card-05 .form {
    display: flex;
    gap: 20px;
    margin-right: 30px;
}
@media (max-width: 1199.98px) {
    .card-05 .form {
        flex-direction: column;
    }
}
.card-05 .select-couple {
    width: 137px;
}
.card-05__sum {
    position: absolute;
    top: 12px;
    right: 0;
    font-size: 22px;
    font-weight: 700;
}
@media (max-width: 1439.98px) {
    .card-05__sum {
        margin-top: 16px;
        position: static;
    }
}
.card-05__acts {
    display: flex;
    align-items: center;
    gap: 30px;
    color: #9e9da8;
    font-weight: 500;
}
@media (max-width: 1439.98px) {
    .card-05__acts {
        margin-top: 14px;
    }
}
.card-05__act {
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-05__heart svg {
    width: 25px;
    height: auto;
}
.card-05__heart.active svg {
    fill: #f94545;
}
.card-05__heart.active path:first-child {
    stroke: #f94545;
}
.card-05__heart.active path:last-child {
    stroke: #fff;
}
.card-05 .circle-btn {
    margin-left: auto;
}
@media (max-width: 1439.98px) {
    .card-05 .circle-btn {
        margin-left: 0;
        margin-top: 16px;
    }
}

.card-06 {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    z-index: 0;
    min-height: 171px;
}
.card-06__bg {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
}
.card-06__brand {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 6px;
}
.card-06__brand-icon {
    width: 14px;
    height: 16px;
    object-fit: contain;
}
.card-06__account {
    font-size: 18px;
    margin-top: 37px;
    margin-bottom: 20px;
}
.card-06__foot {
    display: flex;
    gap: 40px;
}
.card-06__label {
    font-size: 8px;
}
.card-06__info {
    font-size: 10px;
}
.card-06__mastercard {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 28px;
}
.card-06__mastercard img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.card-06__add-text {
    color: #d2d1d6;
}
.card-06__icon-plus {
    width: 25px;
    height: auto;
    filter: var(--icon-color);
}

.card-06--blue-bg {
    background: #1e2e69;
}
.card-06--grey-bg {
    background: #354151;
}
.card-06--add {
    background: transparent;
    border: 1px dashed #b9babe;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-07 {
    background: var(--bg-color);
    border-radius: 10px;
    display: block;
}
.card-07__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}
.card-07__icon {
    padding: 15px;
    border-radius: 8px;
    background: var(--top-act-bg-color);
}
.card-07__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: var(--icon-color);
}
.card-07__info {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}
.card-07__value {
    font-size: 14px;
}

.slideshow,
.browse,
.lavazza {
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 991.98px) {
    .slideshow,
    .browse,
    .lavazza {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.lavazza__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sign-wrapper {
    display: flex;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}
.sign-wrapper > * {
    flex: 0 1 50%;
}
@media (max-width: 767.98px) {
    .sign-wrapper > * {
        flex: 0 1 auto;
    }
}
.sign-wrapper .logo {
    margin-left: auto;
}

.sign-intro {
    background-color: var(--intro-bg);
}
@media (max-width: 767.98px) {
    .sign-intro {
        width: 100%;
    }
}
.sign-intro__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    height: 100%;
}
.sign-intro__illus {
    width: 100%;
    max-width: 422px;
    margin: 200px auto;
}
@media (max-width: 767.98px) {
    .sign-intro__illus {
        margin: 175px auto;
    }
}
.sign-intro__illus img {
    width: 100%;
    height: auto;
}
.sign-intro__subtitle {
    color: var(--top-menu-text-color);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}
.sign-intro__next {
    width: 25px;
}
.sign-intro__next img {
    width: 100%;
    height: auto;
}

.sign-fill {
    background-color: var(--top-act-bg-color);
}
@media (max-width: 767.98px) {
    .sign-fill {
        position: absolute;
        inset: 0;
        translate: 100%;
    }
    .sign-fill.active {
        translate: 0;
    }
}
.sign-fill__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 460px;
    padding: 50px 0;
    margin: 0 auto;
}

.sign-form {
    margin-top: 50px;
}
.sign-form__title {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}
.sign-form__subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 60px;
    color: #9e9da8;
    text-align: center;
}
.sign-form__fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sign-form__fields .icon {
    filter: var(--form-elem-color);
}
.sign-form__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.sign-form__recovery-pw {
    font-size: 15px;
    font-weight: 500;
    color: #0071dc;
}
.sign-form__btns {
    margin-top: 50px;
}
.sign-form__btn {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 18px;
    margin-bottom: 30px;
}

.sign-ask {
    margin-top: 108px;
    display: flex;
    gap: 10px;
    font-size: 18px;
}
.sign-ask__text {
    color: #9e9da8;
}
.sign-ask__link {
    color: #0071dc;
    font-weight: 500;
}

.pduct-distance {
    margin-top: 30px;
    margin-bottom: 30px;
}

.product {
    display: flex;
    gap: 30px;
}
@media (max-width: 991.98px) {
    .product {
        flex-direction: column;
    }
}
.product__img {
    width: 551px;
}
.product__img img {
    width: 100%;
    object-fit: contain;
}
@media (max-width: 1439.98px) {
    .product__img {
        width: 400px;
    }
}
@media (max-width: 991.98px) {
    .product__img {
        width: auto;
    }
}

.product-info {
    flex-grow: 1;
    background-color: var(--card-bg-color-2);
    padding: 60px;
}
@media (max-width: 991.98px) {
    .product-info {
        padding: 16px;
    }
}
.product-info__form {
    margin-top: 30px;
}
.product-info__size {
    width: auto;
}
.product-info__row {
    display: flex;
    gap: 40px;
}
@media (max-width: 1199.98px) {
    .product-info__row {
        flex-direction: column;
    }
}
.product-info__col {
    flex: 0 1 50%;
}
.product-info__rate {
    display: flex;
    gap: 16px;
    align-items: center;
}
.product-info__star {
    width: 24px;
    height: 24px;
    padding: 3px;
}
.product-info__text {
    font-size: 18px;
    font-weight: 500;
}

.product-item__group {
    display: flex;
    gap: 20px;
    margin-bottom: 27px;
}
.product-item__icon {
    width: 24px;
    height: 24px;
    padding: 2px;
    object-fit: contain;
}
.product-item__name {
    font-size: 18px;
    font-weight: 500;
}
.product-item__sub {
    font-size: 14px;
}

.product-buy {
    border-radius: 6px;
    border: 1px solid #b9babe;
    padding: 20px;
    font-weight: 500;
}
.product-buy__head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.product-buy__old-price {
    font-size: 16px;
    text-decoration: line-through;
    opacity: 0.5;
}
.product-buy__tag {
    padding: 0 8px;
    color: #67b044;
    background-color: #e1efda;
}
.product-buy__new-price {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 26px;
}
.product-buy__btns {
    display: flex;
    gap: 20px;
}
.product-buy__add {
    flex-grow: 1;
}
.product-buy__heart.active svg {
    fill: #f94545;
}
.product-buy__heart.active path:first-child {
    stroke: #f94545;
}
.product-buy__heart.active path:last-child {
    stroke: #fff;
}

.desc {
    overflow: hidden;
}
.desc .swiper-slide {
    width: max-content;
}
.desc .swiper-slide-thumb-active {
    color: var(--text-color);
}
.desc .desc__swiper {
    margin-top: 30px;
}
.desc__tabs {
    font-size: 22px;
    font-weight: 500;
    color: #9e9da8;
}
@media (max-width: 991.98px) {
    .desc__tabs {
        font-size: 14px;
    }
}
.desc__tab {
    cursor: pointer;
}

.checkout-main {
    display: flex;
    gap: 30px;
}
@media (max-width: 991.98px) {
    .checkout-main {
        flex-direction: column;
    }
}

.checkout-left {
    background-color: var(--card-bg-color-2);
    padding-left: 30px;
    padding-right: 30px;
    flex-grow: 1;
    border-radius: 20px;
}
@media (max-width: 991.98px) {
    .checkout-left {
        padding-left: 16px;
        padding-right: 16px;
    }
}
.checkout-left__foot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 30px;
}
@media (max-width: 575.98px) {
    .checkout-left__foot {
        flex-direction: column-reverse;
        gap: 16px;
    }
}
.checkout-left__mini-title {
    font-size: 18px;
    font-weight: 500;
}

.checkout-right {
    width: 391px;
    max-width: 100%;
    flex-shrink: 0;
}
@media (max-width: 991.98px) {
    .checkout-right {
        width: auto;
    }
}
.checkout-right .form {
    margin-top: 30px;
}

.shipping {
    margin: 30px 0;
}
.shipping__title {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--title-undeline);
}

.shipping-address__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1199.98px) {
    .shipping-address__row {
        flex-direction: column;
        gap: 16px;
        align-items: start;
    }
}
.shipping-address__title {
    font-size: 18px;
    font-weight: 500;
}
.shipping-address__subtile {
    font-size: 15px;
}
.shipping-address__btn {
    font-size: 18px;
    padding: 10px 20px;
}
.shipping-address__add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    border: 2px solid currentColor;
    flex-shrink: 0;
}
.shipping-address .form__check {
    position: relative;
}
.shipping-address__edit {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}
@media (max-width: 575.98px) {
    .shipping-address__edit {
        position: static;
        margin-top: 16px;
    }
}
.shipping-address__edit img {
    width: 24px;
    height: 24px;
    filter: var(--icon-color);
}

.address {
    margin-top: 30px;
}
.address__name {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}
.address__street {
    font-size: 15px;
}
.address__items {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 575.98px) {
    .address__items {
        margin-top: 16px;
    }
}
.address__item {
    list-style: disc inside;
    font-size: 14px;
}
.address .form__fakebox {
    width: 24px;
    height: 24px;
}

.form__check .address {
    align-items: start;
}

.shipping-set__row {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bg-color);
    margin-top: 30px;
}
.shipping-set__row label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.shipping-set__title {
    font-size: 18px;
    font-weight: 500;
}
.shipping-set__subtitle {
    font-size: 15px;
}
.shipping-set__box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.shipping-method__row {
    border-radius: 20px;
    padding: 20px;
    background-color: var(--bg-color);
    margin-top: 30px;
}
.shipping-method__row label {
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 991.98px) {
    .shipping-method__row label {
        align-items: start;
    }
}
.shipping-method__img {
    width: 70px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.shipping-method__text {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
@media (max-width: 991.98px) {
    .shipping-method__text {
        flex-direction: column;
        align-items: start;
    }
}
.shipping-method__name {
    font-size: 18px;
    font-weight: 700;
}
.shipping-method__desc {
    font-size: 16px;
    color: #9e9da8;
}
.shipping-method__check {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    color: #9e9da8;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .shipping-method__check {
        margin-top: 16px;
    }
}
.shipping-method input[type="radio"]:checked ~ p {
    color: var(--text-color);
}

.favourite {
    margin-top: 30px;
}
.favourite .form__fakebox {
    align-self: start;
    flex-shrink: 0;
}
.favourite__list {
    margin-top: 16px;
}

.profile {
    margin-top: 30px;
}
@media (max-width: 991.98px) {
    .profile {
        margin-top: 20px;
    }
}
.profile__inner {
    display: flex;
    gap: 30px;
}
@media (max-width: 991.98px) {
    .profile__inner {
        flex-direction: column;
        gap: 20px;
    }
}
.profile .panel {
    width: 345px;
    height: max-content;
    flex-shrink: 0;
}
@media (max-width: 991.98px) {
    .profile .panel {
        width: 100%;
    }
}
.profile .tabs-content {
    flex-grow: 1;
    padding: 30px;
    background-color: var(--card-bg-color-2);
    border-radius: 20px;
}
@media (max-width: 991.98px) {
    .profile .tabs-content {
        padding: 16px;
    }
}
.profile .tabs-content__group {
    margin-bottom: 30px;
}
.profile .tabs-content__group:last-child {
    margin-bottom: 0px;
}
.profile .tabs-content__subtitle {
    font-size: 15px;
    margin-bottom: 16px;
}
.profile .title-01 {
    margin-bottom: 4px;
}

.wallet__cards {
    --grid-gutter-y: 16px;
}

.prefer__item {
    display: flex;
    align-items: start;
    gap: 20px;
    font-weight: 500;
    padding: 20px 0;
    border-bottom: 1px solid #d2d1d6;
}
.prefer__item:last-child {
    border-bottom: 1px solid transparent;
    padding-bottom: 0;
}
.prefer__img-wrapper {
    width: 151px;
    height: 108px;
}
@media (max-width: 575.98px) {
    .prefer__img-wrapper {
        width: 110px;
        height: 80px;
        flex-shrink: 0;
    }
}
.prefer__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prefer__name {
    font-size: 15px;
}
@media (max-width: 575.98px) {
    .prefer__name {
        font-size: 14px;
    }
}
.prefer__row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
@media (max-width: 575.98px) {
    .prefer__row {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        margin-top: 10px;
    }
}
.prefer__price {
    font-size: 22px;
}
@media (max-width: 575.98px) {
    .prefer__price {
        font-size: 18px;
    }
}
.prefer__btn {
    font-size: 15px;
    padding: 10px 20px;
}

.add-card__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}
.add-card__form {
    margin-top: 30px;
}
@media (max-width: 991.98px) {
    .add-card__form {
        margin-top: 16px;
    }
}
.add-card .title-03 {
    margin-bottom: 20px;
    display: block;
}
@media (max-width: 991.98px) {
    .add-card .title-03 {
        margin-bottom: 12px;
    }
}
.add-card .input-field {
    padding: 12px;
    border-radius: 10px;
}
.add-card__check.form__check {
    font-weight: 500;
}
.add-card__btns {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    margin-top: 30px;
}
@media (max-width: 991.98px) {
    .add-card__btns {
        margin-top: 16px;
    }
}
.add-card__btns .circle-btn {
    padding: 10px 20px;
    font-size: 16px;
}
@media (max-width: 991.98px) {
    .add-card__btns .circle-btn {
        font-size: 14px;
    }
}
.add-card__btns .cancel-btn {
    font-size: 16px;
    font-weight: 500;
}
@media (max-width: 991.98px) {
    .add-card__btns .cancel-btn {
        font-size: 14px;
    }
}

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