@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --colorPrimary: #212121;
    --colorPrimaryDark: #000000;
    --colorAccent: #008000;
    --colorAccent2: #feba12;
    --colorAccentLight: #bfa5c4;
    --colorWarn: #B71C1C;
    --blueColor: #0094DA;
    --greenColor: #23779a;
    --yellowColor: #f6c806;
    --textColor: rgba(0, 0, 0, 0.8);
    --divider: rgba(0, 0, 0, 0.11);
    --facebook_color: #3b5998;
    --whatsapp_color: #25D366;
    --pinterest_color: #CB2026;
    --google_plus_color: #d34836;
    --twitter: #0084b4;
    --instagram: #d6249f;
    --primaryHeaderTextColor: #959595;
    --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: #0094DA;
    --logo-green: #75d0f7;
}

body {
    margin: 0;
    padding: 0;
}

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

h1, h2, h3, h4, h5, span, ul, li, td, a {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

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

.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;
}


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

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

.on_desktop {
    display: flex !important;
}

.on_mobile {
    display: none !important;
}


.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: "Neutra", 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 16px;
    margin: 8px 10px 18px;
    font-size: 14px;
    font-family: "Neutra", sans-serif;
    outline: none;
    background-color: white;
    border-radius: 4px;
    max-width: 1400px;
    position: fixed;
    top: 150px;
    right: 50px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
    border-left-width: 3px;
    z-index: 9999;
    transition: 0.4s ease;
}

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

.message-error {
    color: var(--error_color);
    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 {
    text-align: center;
    padding: 10px;
    min-width: 50px;
    font-size: 15px;
    border: 2px solid var(--divider);
    margin: 4px;
    cursor: pointer;
    display: block;
    outline: none;
    font-weight: normal;
    color: var(--colorPrimary);
    transition: 0.5s ease;
}

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

}

.size_container input:checked ~ .checkmark {
    border: 2px solid var(--greenColor);
    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;
    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: var(--divider);
}


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

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

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

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

@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 smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}

@media only screen and (max-width: 1020px) {
    .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 > *, .row_alignment.two > *, .row_alignment.three > * {
        width: calc(100% - 16px);
        margin: 8px;
    }

    .on_desktop {
        display: none !important;
    }

    .on_mobile {
        display: flex !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: var(--colorPrimary);
    background: var(--colorAccent);
}

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

@keyframes background_animation {
    0%, 100% {
        background-position: 50% 35%;
    }
    50% {
        background-position: 50% 65%;
    }
}