footer{
    z-index: 20;
}

html {
    color-scheme: light dark;
}
html.light {
    color-scheme: light;
}
html.dark {
    color-scheme: dark;
}

html.light body,
html:not(.dark) body {
    background-color: #f6f7f8;
    color: #0f172a;
}
html.dark body {
    background-color: #121a20;
    color: #f8fafc;
}

html.dark .bg-white {
    background-color: #0f172a !important;
}
html.dark .bg-background-light {
    background-color: #121a20 !important;
}
html.light .text-slate-900,
html:not(.dark) .text-slate-900 {
    color: #0f172a;
}
html.dark .dark\:text-white,
html.dark .text-white {
    color: #f8fafc;
}

.bg-primary {
    background-color: #1f7ec1 !important;
}
.text-primary {
    color: #1f7ec1 !important;
}

html, body{
    overflow-x: hidden;
}
*{
    box-sizing: border-box;
}
input, textarea, button, select, a, p, span, div, li, td, th{
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
img, video, iframe{
    max-width: 100%;
    height: auto;
}

#cart-items select, #order-items select{
    padding-top: 0.2rem !important;
}