:root {
    --primary: #508cd3;
    --primary-dk: #325986;
    --primary-lt: #4e8bd2;
    --secondary: #ff7300;
    --secondary-dk: #ff4e00;
    --secondary-lt: #ff8f28;
    --successful: #2d9834;
    --price: var(--secondary-dk);

    --white: #FFFFFF;
    --light: #F7F7F7;
    --flash: #E1E1E1E1;
    --gray: #A1A1A1;
    --dark: #666666;
    --black: #111111;

    --shadow: rgba(11 11 11 / 11%);
    --backgroundColor: rgba(11 11 11 / 44%);
    --trans: all 250ms ease-in-out;

    --gap6: 8px;
    --gap8: 8px;
    --gap10: 10px;
    --gap12: 12px;
    --gap14: 14px;
    --gap16: calc(var(--gap8) * 2);
    --gap18: 18px;
    --gap20: calc(var(--gap10) * 2);
    --gap22: 22px;
    --gap24: calc(var(--gap12) * 2);

    --radius: 3px;
    --borderRadius: 5px;
    --priceColor: #d80d0d;

    --font: 'Outfit', sans-serif;

}

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
}

html,
body {
    text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    color: var(--dark);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
    scrollbar-color: #999 #d1d1d1;
    scrollbar-width: thin;
    overflow-x: hidden;
    overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-top: 0;
    line-height: 1.1;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    padding: 5px;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

body::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    width: 4px;
    border-radius: 4px;
    background-color: #e1e1e1;
}

::-webkit-scrollbar-thumb {
    padding: 10px;
    background-color: #555;
}

.site-w {
    width: 100%;
    max-width: 1400px;
    padding-left: var(--gap20);
    padding-right: var(--gap20);
    margin: 0 auto;
    position: relative;
}

figure {
    padding: 0;
    margin: 0;
    border: 0;
}

b,
strong {
    font-weight: 500
}

.form-control {
    display: block;
    width: 100%;
    padding: 7px 10px;
    line-height: 1.2857143;
    background-color: var(--white);
    background-image: none;
    border: 1px solid var(--flash);
    border-radius: 3px;
    font-size: 16px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    outline: 0;
    border: 1px solid var(--primary);
}

.form-control::-webkit-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-control::placeholder {
    color: var(--gray);
    opacity: 1;
}

a {
    color: #19124f;
    text-decoration: none;
    border: none;
    outline: 0;
    cursor: pointer;
    transition: var(--trans);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    object-fit: contain;
    border: none;
}

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-family: inherit;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    user-select: none;
    background-color: var(--white);
    color: var(--dark);
    font-weight: 500;
}

.button:hover {
    outline: none;
}

.primary {
    color: var(--white);
    background-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.primary:hover {
    color: var(--white);
    background-color: var(--primary-dk)
}

.secondary {
    color: var(--white);
    background-color: var(--secondary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.secondary:hover {
    color: var(--white);
    background-color: var(--secondary-dk);
    border-color: var(--secondary-dk);
}

.success {
    color: var(--white);
    background-color: var(--successful);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.success:hover {
    background-color: #15bb5f;
    color: #fff;
}

.danger,
.danger:hover {
    color: var(--white);
    background-color: #ff3f3f;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.warning {
    color: var(--white);
    background-color: #ffa800;
    border-color: #ffa800;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.warning:hover {
    color: var(--white);
    background-color: #e69700;
    border-color: #e69700;
}

.dark {
    color: var(--white);
    background-color: #444;
    border-color: #444;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.dark:hover {
    color: var(--white);
    background-color: #222;
    border-color: #222;
}

select {
    background-color: var(--white);
    border: 1px solid var(--flash);
    border-radius: 4px;
    display: inline-block;
    font-size: 16px;
    padding: var(--small-padding) 10px;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #aaa, #aaa);
    background-position: calc(100% - 20px) var(--middle-padding), calc(100% - var(--middle-padding)) var(--middle-padding), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px calc(100% - var(--middle-padding));
    background-repeat: no-repeat;
}

select:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%), linear-gradient(to right, #aaa, #aaa);
    background-position: calc(100% - var(--middle-padding)) 1em, calc(100% - 20px) 1em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
    border-color: #a397e1;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem #a397e1;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

textarea {
    font-family: var(--font);
}

.label {
    display: block;
    width: 100%;
}

.loader {
    border: 2px solid var(--gray-lt);
    border-radius: 50%;
    border-top-color: var(--primary);
    border-bottom-color: var(--primary);
    margin: 0 10px;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

ul {
    padding-left: 20px;
}

.breadcrumb {
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    margin: 0;
}

.breadcrumb li+li::before {
    content: "/";
    color: var(--gray-md);
    margin: 0 3px;
}

.breadcrumb li:last-child,
.breadcrumb .active a {
    color: var(--gray-dk);
    cursor: default;
}

.breadcrumb-item {
    display: block;
    font-weight: 300;
    padding: 3px 3px;
}

.breadcrumb-item a {
    font-weight: 500;
}

.pagination-box {
    border-top: 2px solid #eee;
    margin: 25px auto 35px;
    padding-top: 25px;
}

[hidden],
.hidden {
    display: none !important;
    position: absolute;
    pointer-events: none;
}

.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 6px;
}

.pagination li a {
    padding: 6px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-weight: 500;
    border: 1px solid var(--flash);
    min-width: 40px;
}

.pagination .current a {
    background-color: var(--primary);
    border-color: var(--primary);
    cursor: default;
    color: var(--white);
}

.pagination li span {
    font-size: 14px;
}

.site-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.d-grid {
    display: grid;
}

.d-flex,
.flex-b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-w,
.flex-wrap {
    flex-wrap: wrap;
}

.flex-dc,
.flex-col {
    flex-direction: column;
}

.flex-dc-re {
    flex-direction: column-reverse;
}

.flex-dr-re {
    flex-direction: row-reverse;
}

.flex-c,
.justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-e,
.justify-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-s,
.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-c,
.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-s,
.items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.column {
    flex-direction: column;
}

/* Justify Content */
.justify-start {
    justify-content: flex-start;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-baseline {
    align-items: baseline;
}

.grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

.gap2 {
    grid-gap: 2px;
}

.gap4 {
    grid-gap: 4px;
}

.gap6 {
    grid-gap: 6px;
}

.gap8 {
    grid-gap: 8px;
}

.gap10 {
    grid-gap: 10px;
}

.gap12 {
    grid-gap: 12px;
}

.gap14 {
    grid-gap: 14px;
}

.gap16 {
    grid-gap: 16px;
}

.gap18 {
    grid-gap: 18px;
}

.gap20 {
    grid-gap: 20px;
}

.spacing-s {
    grid-gap: 24px;
}

.spacing-m {
    grid-gap: 32px;
}

.spacing-l {
    grid-gap: 40px;
}

.spacing-xl {
    grid-gap: 48px;
}

.w100 {
    width: 100%;
}

.square-image {
    position: relative;
    display: block;
    background-color: #f7f7f7;
    border-radius: var(--borderRadius, 5px);
}

.square-image::after {
    content: "";
    padding-bottom: 100%;
    display: block;
}

.square-image img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-success {
    color: #1cbc6b;
    background-color: #f3fff8;
    border-color: #77c384;
}

.alert {
    padding: 5px;
    margin-bottom: 20px;
    margin-top: 5px;
    border: 1px solid transparent;
}

.sticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}

.shadow {
    box-shadow: 0 0 3px var(--shadow)
}

.hidden,
hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}


.radio-input,
.checkbox-input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input-type-radio {
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 16px;
    border: 2px solid var(--dark);
    position: relative;
    transition: var(--trans)
}

.input-type-checkbox {
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid var(--flash);
    position: relative;
    border-radius: 3px;
    transition: var(--trans)
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label+.checkbox-label {
    margin-top: var(--middle-padding);
}

.checkbox-label span {
    padding-left: 7px;
    padding-right: 7px;
}

.input-type-radio::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    opacity: 0;
    background-color: var(--dark);
}

.input-type-checkbox::after,
.input-type-checkbox::before {
    content: "";
    width: 2px;
    height: 10px;
    display: block;
    background-color: var(--primary);
    position: absolute;
    opacity: 0;
}

.input-type-checkbox::after {
    transform: rotate(45deg);
    top: 3px;
    left: 8px;
}

.input-type-checkbox::before {
    transform: rotate(-45deg);
    top: 7px;
    left: 4px;
    height: 5px;
}

.checkbox-input:checked~.input-type-checkbox {
    border-color: var(--primary);
}

.checkbox-input:checked~.input-type-checkbox::after,
.checkbox-input:checked~.input-type-checkbox::before {
    opacity: 1
}


.radio-input:checked~.input-type-radio {
    border-color: var(--primary);
}

.radio-input:checked~.input-type-radio::before {
    background-color: var(--primary);
    opacity: 1;
}

.saleoff-icon {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
    position: absolute;
    top: 10px;
    right: 10px;
}


.choose-image input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.form-search-loading {
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    background-color: #fff;
}

.form-search-loading::before {
    content: "";
    width: 30px;
    height: 30px;
    display: block;
    border: 2px solid #e6e6e6;
    border-top: 2px dotted #999;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    animation: lsearchLoading 789ms linear infinite;
    border-radius: 36px;
}

.transition {
    transition: var(--trans);
}

@keyframes lsearchLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (min-width: 760px) {
    .isMobile {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}


@media (max-width: 760px) {
    .isDesktop {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

.is-mobile,
.is-tablet,
.is-desktop {
    display: none;
}

@media (max-width: 780px) {
    .is-mobile {
        display: block;
    }
}

@media (min-width: 781px) and (max-width: 1024px) {
    .is-tablet {
        display: block;
    }
}

@media (min-width: 1025px) {
    .is-desktop {
        display: block;
    }
}