:root {
    --colorPrimary: #212121;
    --colorPrimaryDark: #000000;
    --colorAccent: #000000;
    /*--colorAccent: #3f2105;*/
    --colorWarn: #d0081c;
    --blueColor: #0094DA;
    --greenColor: #0ab120;
    --yellowColor: #f6c806;
    --textColor: rgba(0, 0, 0, 0.8);
    --divider: #ececec;
    --facebook_color: #3b5998;
    --whatsapp_color: #25D366;
    --pinterest_color: #CB2026;
    --google_plus_color: #d34836;
    --twitter: #0084b4;
    --instagram: #d6249f;
    --light_blue_grey: #3d5562;
    --dark_blue_grey: #2b3a42;
    --textColor: #424242;
    --black_shade: #212121;
    --button_disabled: #727272;
    --light_grey: #d9d9d9;
    --error_color: #b71c1c;
    --textColor: rgba(0, 0, 0, 0.8);
    --dark_grey: #767575;
    --tag_back_color: #efeeee;
    --tag_color: #6d6d6d;
    --logo-orange: #75d0f7;
    --logo-green: #75d0f7;
    --gradient: linear-gradient(to right, #895500, #ac7a1f, #eabd54);
    --content-width: 1400px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

h1, h2, h3, h4, h5, span, ul, li, p, td, th, a, input, button, label, textarea, select {
    font-family: "Urbanist", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.row_alignment, .row_column_alignment, .row_column_reverse_alignment {
    display: flex;
    flex-direction: row;
}

.column_alignment, .column_row_alignment {
    display: flex;
    flex-direction: column;
}


.row_alignment.three > *, .row_column_alignment.three > *, .row_column_reverse_alignment.three > * {
    width: calc((100% / 3) - 12px);
    margin: 6px 6px;
}

.row_alignment.two > *, .row_column_alignment.two > *, .row_column_reverse_alignment.two > * {
    width: calc((100% / 2) - 12px);
    margin: 6px 6px;
}

.align_right {
    align-items: flex-end;
    justify-content: flex-end;
}

.align_bottom {
    justify-content: flex-end;
}

.align_left, .align_top {
    align-items: flex-start;
    justify-content: flex-start;
}

.align_center {
    align-items: center;
    align-content: center;
    justify-content: center;
}

.fill {
    flex: 1 1 auto !important;
}

.fit {
    flex: 0 0 auto !important;
}

.wrap {
    flex-wrap: wrap;
}

.align_self_center {
    align-self: center;
}

.marquee {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 6px;
    background: var(--yellowColor);
    box-sizing: border-box;
}

.marquee .content {
    display: inline-block;
    padding-left: 100%;
    font-family: "Poppins", sans-serif;
    color: var(--colorAccent);
    animation: marquee 18s linear infinite;
    font-weight: bold;
    font-size: 14px;
}

.marquee:hover .content {
    animation-play-state: paused;
}

.message-success, .message-error, .message-info {
    padding: 8px 8px 8px 16px;
    margin: 8px 10px 18px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    outline: none;
    background-color: white;
    border-radius: 4px;
    max-width: 1400px;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    border-left-width: 3px;
    z-index: 9999;
    transition: 0.4s ease;
    min-width: 300px;
}

.message-success {
    color: var(--colorPrimary);
    border: 1px solid var(--greenColor);
    border-left-width: 4px;
}

.message-error {
    color: var(--colorPrimary);
    border: 1px solid var(--error_color);
    border-left-width: 4px;
}

.message-info {
    color: var(--colorAccent);
    border: 1px solid var(--colorAccent);
    border-left-width: 4px;
}

.fade_in_out {
    -webkit-animation-name: fade_in_out;
    -webkit-animation-duration: 4s;
    animation-name: fade_in_out;
    animation-duration: 4s;
}

.shake {
    -webkit-animation-name: shake;
    -webkit-animation-duration: 1s;
    animation-name: shake;
    animation-duration: 0.4s;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top-color: var(--colorAccent);
    width: 40px;
    margin: 8px 20px;
    display: flex;
    flex: 0 0 auto;
    height: 40px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}

/* Size Selector */
.size_container {
    cursor: pointer;
    outline: none;
}

.size_container input {
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
}

.checkmark {
    border: 1px solid transparent;
    margin: 2px;
    padding: 4px 8px;
    color: #212121;
    font-weight: 300;
    text-align: center;
    min-width: 50px;
    cursor: pointer;
    display: block;
    outline: none;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    transition: 0.5s ease;
}

.bordered .checkmark {
    border: 1px solid #525252;
}

.size_container .checkmark {
    font-size: 14px;
    margin-top: 2px;
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

.size_container:hover input ~ .checkmark {
    border: 1px solid #525252;
    transition: 0.5s ease;
    color: #212121;
}

.size_container input:checked ~ .checkmark {
    color: white;
    border: 1px solid #525252;
    background: #666666;
    transition: 0.5s ease;
}

.size_container input:disabled ~ .checkmark {
    border: 1px solid var(--divider);
    color: #767575;
    background: #e3e3e3;
    text-decoration: line-through;
    transition: 0.5s ease;
}


/* Address Selector */
.address_container {
    cursor: pointer;
    outline: none;
}

.address_container input {
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
}

.address_checkmark {
    border: 2px solid var(--divider);
    cursor: pointer;
    max-width: 250px;
    width: 100%;
    outline: none;
    transition: 0.5s ease;
    position: relative;
}

.address_container:hover input ~ .address_checkmark {
    border: 2px solid var(--colorAccent);
    transition: 0.5s ease;

}

.address_container input:checked ~ .address_checkmark {
    border: 2px solid var(--greenColor);
    transition: 0.5s ease;
}

.address_container input:hover ~ .address_checkmark .selection_icon {
    color: var(--colorAccent);
    transition: 0.5s ease;
}

.address_container input:checked ~ .address_checkmark .selection_icon {
    color: var(--greenColor);
    transition: 0.5s ease;
}

.selection_icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 8px;
    color: #c2c2c2;
}

.payment_method_wrapper {
    max-width: 450px;
    width: 100%;
    align-self: center;
    min-width: 400px;
}

.payment_method_wrapper .address_item {
    padding: 0;
}

.payment_method_wrapper .selection_icon {
    position: relative;
}

.payment_method_wrapper .other_details {
    padding: 10px;
    display: none;
}

.payment_method_wrapper input:checked ~ .address_checkmark .other_details {
    display: flex;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}


.sticky {
    position: sticky;
    top: 83px;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}


@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translate(0, 0);
    }
    100% {
        -webkit-transform: translate(-100%, 0);
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        -webkit-transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        -webkit-transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        -webkit-transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }
    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }
    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }
    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }
    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }
    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }
    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }
    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }
    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

@-webkit-keyframes fade_in_out {
    0% {
        opacity: 0;
    }

    3% {
        opacity: 0.5;
    }
    6% {
        opacity: 1;
    }

    94% {
        opacity: 1;
    }
    97% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade_in_out {
    0% {
        opacity: 0;
    }

    3% {
        opacity: 0.5;
    }
    6% {
        opacity: 1;
    }

    94% {
        opacity: 1;
    }
    97% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}


.on_desktop {
    display: flex !important;
}

.on_mobile {
    display: none !important;
}


/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}

@media only screen and (max-width: 780px) {
    .row_column_alignment {
        display: flex;
        flex-direction: column;
    }

    .column_row_alignment {
        display: flex;
        flex-direction: row;
    }

    .row_column_reverse_alignment {
        display: flex;
        flex-direction: column-reverse;
    }

    .row_column_alignment.three > *, .row_column_reverse_alignment.three > *, .row_column_alignment.two > *, .row_column_reverse_alignment.two > * {
        margin: 6px;
        width: calc(100% - 12px);
    }

    .on_desktop {
        display: none !important;
    }

    .on_mobile {
        display: flex !important;
    }


    .payment_method_wrapper {
        max-width: 450px;
        width: 100%;
        align-self: center;
        min-width: 300px;
    }

    .address_item {
        margin: 8px 0 !important;
    }

}

::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: var(--divider);
}

::-webkit-scrollbar-thumb {
    background: var(--colorPrimary);
}

::-moz-selection { /* Code for Firefox */
    color: white;
    background: var(--colorAccent);
}

::selection {
    color: white;
    background: var(--colorAccent);
}

.progress_bar {
    background-color: white;
    margin-bottom: 40px;
}

.progress_bar > div {
    height: 5px;
    background-color: var(--colorAccent);
}


/* The container */
.checkbox_container {
    display: block;
    position: relative;
    padding: 4px 4px 4px 35px !important;
    cursor: pointer;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    white-space: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox_checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4px;
    height: 16px;
    width: 16px;
    padding: 0 !important;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkbox_checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_container input:checked ~ .checkbox_checkmark {
    background-color: var(--colorAccent);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkbox_checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkbox_checkmark:after {
    left: 6px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Country Select Widget Start */
.country_select_widget_container.dark {
    color: white;
}

.country_select_widget_container.dark .input_field {
    border-color: white;
}

.country_select_widget_container.dark .accent_button {
    background: transparent;
    border: 1px solid white;
    padding: 6px 16px;
    font-weight: normal;
}

.country_select_widget_container {
    width: 100%;
    max-width: 300px;
}

.country_select_widget_content {
    display: none;
    width: 100%;
    max-width: 300px;
    border: 1px solid var(--divider);
    max-height: 120px;
    overflow: auto;
}

.country_select_widget_content.active {
    display: flex;
}

.country_select_widget_container .accent_button {
    display: none;
    margin-top: 16px;
    width: 100%;
    text-align: center;
    max-width: 300px;
}

.country_select_widget_container .accent_button.active {
    display: block;
}

.country_select_widget_container .input_field {
    margin: 0;
}

.country_select_widget_container .input_field span {
    font-size: 12px;
}

.country_select_widget_container .input_field img {
    height: 14px;
    width: 18px;
    object-fit: contain;
    margin-right: 12px
}

.country_select_widget_content .input_field {
    margin: 0;
    border: 0;
    padding: 4px 8px;
    background: transparent;
    transition: 0.4s ease;
}

.country_select_widget_content .input_field:hover {
    background-color: rgba(0, 0, 0, 0.1);
}


/* Country Select Widget End */
