:root {
    --primary-color:#ffbe00;
    --primary-rgb: #b70119;
    --primary-hover: #ffd24f;
	--dark-color: #323232;


    --red-color:#e13b42;
    --red-hover: #cb2229;

    --blue-color:rgb(18, 133, 255);
    --bg-color:#F8FAFC;
    --bg-dark:#30373e;

    --shadow-primary: 0 2px 8px 0 rgb(0 0 0 / 10%);
    --shadow-hover: 0 2px 8px 0 rgb(0 0 0 / 20%);

    --transition-default: .3s ease-in-out;
    --transition-cubic: .3s ease-in-out;
    --font-theme:  'Wix Madefor Display', sans-serif;


    --light-color: #F8FAFC;
    --light-gray-color: #fafafa;
    --gray-900: #111827;
    --gray-800: #27272A;
    --gray-600: #52525B;
    --gray-500: #71717A;
    --gray-400: #A1A1AA;
    --gray-300: #D4D4D8;
    --gray-200: #e2e2e5;
    --gray-100: #f1f1f1;
    --page-background: #f8f8fc;
    --shadow: 0px 6px 14px -6px rgba(24, 39, 75, 0.12), 0px 10px 32px -4px rgba(24, 39, 75, 0.1);
    --shadow-1: 0px 2px 4px rgba(97, 97, 97, 0.18), 0px 4px 8px rgba(97, 97, 97, 0.18);
    --shadow-2: 0px 6px 12px -6px rgba(24, 39, 75, 0.12), 0px 8px 24px -4px rgba(24, 39, 75, 0.08);
    --shadow-3: 0px 1px 2px rgba(97, 97, 97, 0.2), 0px 2px 4px rgba(97, 97, 97, 0.2);
    --size-heading: calc(24 / 14 * 1em);
    --size-heading-1: calc(22 / 14 * 1em);
    --size-heading-2: calc(18 / 14 * 1em);
    --size-description: 1.2em;
    --size-title: 1.2em;
    --size-subtitle: 1.1em;
    --size-default: 1em;
    --size-sub: .95em;
    --size-small: .9em;
    --gray-primary:#b0b6bc;


    /* =============   font-size  ===============*/
    --text-ratio: 1rem;
    --text-xs: calc(var(--text-ratio) * 0.75);
    --text-sm: calc(var(--text-ratio) * 0.8125);
    --text-base: calc(var(--text-ratio) * 0.875); /*14*/
    --text-md: calc(var(--text-ratio) * 1);  /*16*/
    --text-lg: calc(var(--text-ratio) * 1.125);
    --text-xl: calc(var(--text-ratio) * 1.25);
    --text-2xl: calc(var(--text-ratio) * 1.5);
    --text-3xl: calc(var(--text-ratio) * 1.75);
    --text-4xl: calc(var(--text-ratio) * 2);

    --spacing-ratio: 1rem;
    --spacing-xxs: calc(var(--spacing-ratio) * 0.125);
    --spacing-xs: calc(var(--spacing-ratio) * 0.25);
    --spacing-sm: calc(var(--spacing-ratio) * 0.5);
    --spacing-md: calc(var(--spacing-ratio) * 0.75);
    --spacing-lg: calc(var(--spacing-ratio) * 1);
    --spacing-xl: calc(var(--spacing-ratio) * 1.25);
    --spacing-2xl: calc(var(--spacing-ratio) * 1.5);
    --spacing-3xl: calc(var(--spacing-ratio) * 1.75);
    --spacing-4xl: calc(var(--spacing-ratio) * 2);
    --text-5xl: calc(var(--text-ratio) * 2.125);
    --text-6xl: calc(var(--text-ratio) * 2.25);
    --text-7xl: calc(var(--text-ratio) * 2.5);
    --text-8xl: calc(var(--text-ratio) * 2.75);
    --text-9xl: calc(var(--text-ratio) * 3);

    --heading-line-height: 1.2;
    --body-line-height: 1.5;

    /* =============   transition  ===============*/
    --transition-all: all 0.5s ease-in-out;
    --transition-75: all 0.75s ease-in-out;

    /* =============  border  ===============*/
    --rounded:0.25rem;
    --rounded-sm:0.125rem;
    --rounded-md:0.375rem;
    --rounded-lg:0.5rem;
    --rounded-full:1.5rem;
}

@media screen and (max-width: 1399px) {
    :root {
        --size-heading: calc(22 / 14 * 1em);
        --size-heading-1: calc(20 / 14 * 1em);
    }
}

html {
    scroll-behavior: auto !important;
}

body {
    position: relative;
    width: 100%;
    background-color: var(--bs-white);
    color: var(--bs-gray-900);
    font: 400 14px/1.3 var(--font-theme);
    font-style: normal;
    font-stretch: normal;
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -o-transition: var(--transition-defautl);
    transition: var(--transition-defautl);
    -webkit-transition: var(--transition-defautl);
}

button, button:hover, button:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -o-transition: var(--transition-defautl);
    transition: var(--transition-defautl);
    -webkit-transition: var(--transition-defautl);
}

input,
select,
textarea {
    -o-transition: var(--transition-defautl);
    transition: var(--transition-defautl);
    -webkit-transition: var(--transition-defautl);
}

input:focus,
select:focus,
textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    border-color: #8f8d8d !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

.pseudo:before,
.pseudo:after {
    position: absolute;
    content: "";
    display: block;
}

.transition-default {
    -o-transition: var(--transition-default);
    transition: var(--transition-default);
    -webkit-transition: var(--transition-default);
}

.transition-cubic {
    -o-transition: var(--transition-cubic);
    transition: var(--transition-cubic);
    -webkit-transition: var(--transition-cubic);
}

.background-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.background-contain {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.image-contain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.object-fit-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.object-fit-contain {
    -o-object-fit: contain;
    object-fit: contain;
}

.hidden-effect {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hidden-effect:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pseudo:before,
.pseudo:after {
    position: absolute;
    content: "";
    display: block;
}

.z-index--1 {
    z-index: -1;
}

.z-index-0 {
    z-index: 0;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5 !important;
}

.z-index-10 {
    z-index: 10;
}

.text-1-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
}

.text-2-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text-3-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.text-4-line {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

/*
    Start table of content
*/
.theme-toc {
    border: 1px solid #e9e9e9;
    background: #faf9fa;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    margin-bottom: 15px;
    min-width: 200px;
    font-size: 16px;
}

.theme-toc > .nav {
    padding: 0 0 8px;
    width: 100%;
}

.theme-toc .nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.theme-toc .nav > li > a {
    padding-top: 3px;
    padding-right: 15px;
    padding-bottom: 3px;
    display: block;
    color: var(--bs-gray-dark);
    font-size: .95em;
}

.theme-toc .nav > li > a:hover,
.theme-toc .nav > li > a:active {
    color: var(--primary-color);
}

.theme-toc .nav > li > a.toc-link-1 {
    padding-left: 15px;
}

.theme-toc .nav > li > a.toc-link-2 {
    padding-left: 30px;
}

.theme-toc .nav > li > a:not(.toc-link-1):before {
    content: "-";
    margin-right: 9px;
}

.theme-toc .nav > li > a.toc-link-3 {
    padding-left: 45px;
}

.theme-toc .nav > li > a.toc-link-4 {
    padding-left: 60px;
}

.theme-toc .nav > li > a.toc-link-5 {
    padding-left: 75px;
}

.theme-toc .nav > li > a.toc-link-6 {
    padding-left: 90px;
}

.theme-toc .nav > li.toc-heading {
    background-color: #f5f5f5;
    border-bottom: 1px solid #dddddd;
    padding: 0;
    margin-bottom: 5px;
    width: 100%;
}

.theme-toc .nav > li.toc-heading > p {
    color: var(--bs-gray-dark);
    padding: 10px 0 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    display: block;
    margin-bottom: 0;
}

.theme-toc .nav > li.toc-heading > p > a {
    color: var(--primary-color);
    margin-left: 4px;
    font-size: .9em;
}

.theme-toc .nav > li.toc-heading > p > a:hover,
.theme-toc .nav > li.toc-heading > p > a:active {
    color: var(--primary-hover);
}

.theme-toc .nav .nav {
    margin-bottom: 0;
}

@media screen and (max-width: 600px) {
    .theme-toc {
        width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .theme-toc .nav > li.toc-heading > p,
    .theme-toc .nav > li > a {
        font-size: .9em;
    }
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-width: 2px;
    border-color: var(--primary-color);
}

.swal2-popup {
    font-size: 14px;
}

.swal2-popup .swal2-title {
    font-size: var(--size-heading);
    color: var(--bs-gray-700);
    font-weight: 700;
}

.swal2-popup .swal2-html-container {
    color: var(--gray-500);
    font-size: var(--size-description);
}

.swal2-popup .swal2-confirm,
.swal2-popup .swal2-cancel,
.swal2-popup .swal2-deny {
    font-size: var(--size-default);
    font-weight: 700;
    text-transform: uppercase;
    padding: 8px 30px 6px;
    border-radius:0;
    transition: var(--transition-default);
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
    margin: 0 5px;

}

.swal2-popup .swal2-confirm {
    border: 1px solid var(--bs-gray-900);
    background: var(--primary-color);
    color: var(--bs-gray-900);
}

.swal2-popup .swal2-confirm:hover {
    border: 1px solid var(--bs-gray-900);
    background: var(--primary-hover);
    color: var(--bs-gray-900);
}

.swal2-popup .swal2-cancel,
.swal2-popup .swal2-deny {
    border: 1px solid var(--bs-gray-900);
    background:var(--primary-color);
    color: var(--bs-gray-900);
}

.swal2-popup .swal2-cancel:hover,
.swal2-popup .swal2-deny:hover {
    border: 1px solid var(--bs-gray-900);
    background: var(--primary-hover);
    color: var(--bs-gray-900);
}

.card-reset {
    border: 0;
    border-radius: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.card-reset > .card-header {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.ratio > * {
    object-fit: cover;
    max-width: 100%;
}
.ratio-5x9 {
    --bs-aspect-ratio: calc(500 / 900 * 100%);
}

.ratio-product {
    --bs-aspect-ratio: calc(2048 / 1365 * 100%);
}

.background-light {
    background: #f7f7f7;
}

.section-main {
    position: relative;
    z-index: 1;
}
.other-page .section-main{
    margin-top: 130px;
}
@media(max-width: 576px) {
    .other-page .section-main{
        margin-top: 109px;
    }
}

.mr-3{
    margin-right: 3px;
}
.ml-10{
    margin-left: 10px;
}
.primary-text{
    color:var(--primary-color) !important;
}
.section-gap{
    padding: 50px 0;
}
.section-gap-20{
    padding: 20px 0;
}

.gap-8{
    gap: 8px;
}
.ml-5{
    margin-left: 5px;
}

@media(max-width: 991px) {
    .border-start{
        border-left: none !important;
    }
}

.mr-5{
    margin-right: 5px;
}
.mr-6{
    margin-right: 6px;
}
.mr-7{
    margin-right: 7px;
}
.mr-8{
    margin-right: 8px;
}
.ml-4{
    margin-left: 4px;
}
.ml-5{
    margin-left: 5px;
}
.ml-6{
    margin-left: 6px;
}
.ml-7{
    margin-left: 7px;
}
.ml-8{
    margin-left: 8px;
}
.gap-15{
    gap: 15px;
}
