:root {
    --primary: #ed1b23;
    --primary-dk: #c70009;
    --primary-lt: #ff4439;
    --secondary: #1a4388;
    --secondary-dk: #ff4e00;
    --secondary-lt: #ff8f28;
    --successful: #2d9834;
    --error: #f00;
    --white: #fff;
    --light: #f5f5f5;
    --flash: #e1e1e1;
    --gray: #a1a1a1;
    --dark: #999;
    --darkness: #444;
    --black: #111;

    --link: rgba(255 255 255 / 70%);
    --hover: #FFC20E;

    --font: 'Roboto', sans-serif;

    --shadow: rgba(11, 11, 11, 0.1);
    --trans: all 350ms ease-in-out;

    --left: 300px;
    --right: 480px;

    --nav-w: 280px;

    --small: 8px;
    --middle: 16px;
    --large: 32px;

    --bg: #fafafa;
    --size: 16px;
    --site: 1370px;
}

*,
: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;
    font-weight: 400;
    line-height: 1.3;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    font-family: var(--font);
    color: var(--black);
    scrollbar-color: #999 #d1d1d1;
    scrollbar-width: thin;
    overflow-x: hidden;
    overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    width: 6px;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    transition: var(--trans);
}

figure {
    padding: 0;
    margin: 0;
    border: 0;
}

b,
strong,
th {
    font-weight: 600
}

table {
    width: 100%;
    border-collapse: collapse;
}

td,
th {
    padding: 0.4rem 0.8rem
}

.form-input {
    font-family: var(--font);
    display: block;
    width: 100%;
    padding: 12px 10px;
    line-height: 1.42857143;
    background-color: var(--white);
    background-image: none;
    border: 1px solid var(--flash);
    border-radius: 3px;
    font-size: 16px;
    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;
    background-clip: padding-box;
    transition: border .2s ease-in-out, background-color .2s ease-in-out;
    box-shadow: none;
}

.form-input:focus {
    color: #495057;
    background-color: #fff;
    outline: 0;
    border: 1px solid var(--primary);
}

.form-input::-webkit-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-input::-moz-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-input::-ms-input-placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-input::placeholder {
    color: var(--gray);
    opacity: 1;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.4375rem 1.25rem 0.4375rem 0.75rem;
    -moz-padding-start: calc(0.75rem - 3px);
    font-weight: 400;
    line-height: 1.53;
    color: #697a8d;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%2867, 89, 113, 0.6%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 17px 12px;
    border: 1px solid #d9dee3;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-select {
    background-clip: padding-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

a {
    color: var(--link);
    text-decoration: none;
    border: none;
    outline: 0;
    cursor: pointer;
    transition: var(--trans);
}

a:hover {
    color: var(--hover);
}

img {
    max-width: 100%;
    object-fit: contain;
    border: none;
    display: block;
}

.button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 12px 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(--light);
    color: var(--dark);
    font-weight: 600;
}

.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: block;
    width: 100%;
    padding: 12px 10px;
    line-height: 1.42857143;
    font-size: 16px;
    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%);
    background-position: calc(100% - 21px) 50%, calc(100% - 16px) 50%, calc(100% - 16px);
    background-size: 5px 5px, 5px 5px, 1px calc(100% - 16px);
    background-repeat: no-repeat;
}

.select:focus {
    background-image: linear-gradient(45deg, green 50%, transparent 50%), linear-gradient(135deg, transparent 50%, green 50%);
    background-position: calc(100% - 16px) 50%, calc(100% - 21px) 50%;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    outline: 0;
    border-color: #a397e1;
    outline: 0;
    box-shadow: 0 0 0 3px #8da1c4;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

textarea {
    font-family: var(--font);
    resize: none;
}

.label {
    display: block;
    width: 100%;
}

.default-loading {
    width: 20px;
    height: 20px;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    margin: 0;
    display: none;
}

.default-loading::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: 20px;
    height: 20px;
    border-radius: 24px;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.8) transparent;
    animation: lds-dual-ring 800ms linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

ul {
    padding-left: 20px;
}

.breadcrumb-box {
    padding: 10px 0 15px
}

.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: 0;
    margin: 0;
}

.breadcrumb li+li::before {
    content: "/";
    color: var(--gray-md);
    margin: 0 7px;
}

.breadcrumb li:last-child,
.breadcrumb .active a {
    color: var(--gray-dk);
    cursor: default;
}

.breadcrumb-item {
    display: inline-block;
    padding: 3px 5px;
}

.pagination-box {
    border-top: 2px solid #eee;
    margin: 25px auto 35px;
    padding-top: 25px;
}

.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    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-left: 4px;
}

.pagination .disabled:first-child,
.pagination .disabled:last-child {
    display: none;
}

.pagination li span,
.pagination li a {
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 3px;
    font-weight: 600;
}

.pagination .active span,
.pagination .active a {
    background-color: var(--primary);
    cursor: default;
    color: var(--white);
    pointer-events: none;
}

.pagination li span {
    font-size: 14px;
}

.site-w {
    max-width: var(--site);
    width: 100%;
    padding-left: var(--large-padding);
    padding-right: var(--large-padding);
    margin: 0 auto;
}

.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;
}

.flex-b {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
	gap: 10px;
}

.flex-w {
    flex-wrap: wrap;
}

.flex-dc {
    flex-direction: column;
}

.flex-dc-re {
    flex-direction: column-reverse;
}

.flex-dr-re {
    flex-direction: row-reverse;
}

.flex-c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-e {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-s {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.align-c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-s {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-e {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.column {
    flex-direction: column;
}

.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;
    z-index: 2;
}

.checkbox-label+.checkbox-label {
    margin-top: 16px;
}

.checkbox-label span {
    padding-left: 7px;
    padding-right: 7px;
    font-weight: normal;
}

.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: 2px;
    left: 8px;
}

.input-type-checkbox::before {
    transform: rotate(-45deg);
    top: 6px;
    left: 3px;
    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
}

.checkbox-input:disabled~.input-type-checkbox {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(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: 600;
    position: absolute;
    top: 10px;
    right: 10px;
}

.choose-image input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.overall-heading {
    font-size: 18.5px;
}

.content-box {
    width: 90%;
    max-width: 1020px;
    margin: 0 auto;
}

@media (max-width: 780px),
(max-width: 990px) and (orientation:landscape) {
    .is-desktop {
        display: none !important;
    }

    ::-webkit-scrollbar {
        display: none;
    }

    .site-w {
        padding-left: var(--small-padding);
        padding-right: var(--small-padding);
    }
}

@media (min-width: 780px) and (orientation:portrait),
(min-width: 990px) {
    .is-mobile {
        display: none !important;
    }
}

@media (max-width: 1280px) {
    .site-w {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.widthstep1{width:187px!important;}