@font-face {
    font-display: swap;
    font-family: 'Hornet Medium';
    font-style: normal;
    font-weight: 500;
    src: url('../assets/fonts/Hornet-Medium.otf') format('opentype');
    src: url('../assets/fonts/Hornet-Medium.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: 'Hornet SemiBold';
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/Hornet-SemiBold.otf') format('opentype');
    src: url('../assets/fonts/Hornet-SemiBold.ttf') format('truetype');
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    border: 0;
    outline: 0;
}

button,
textarea {
    font-size: inherit;
    background-color: transparent;
}
button:hover { cursor: pointer; }
button[disabled] {
    background-color: #888;
    pointer-events: none;
}

a { text-decoration: none; }


.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.mb-_5 { margin-bottom: .5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-1_5 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 2rem; }
.ml-_5 { margin-left: .5rem; }
.mr-_5{ margin-right: .5rem; } .mr-1{margin-right: 1rem;}
.mt-2{ margin-top: 2rem; }

.p-_5 { padding: .5rem; }
.p-1 { padding: 1rem; }
.py-_5 {
    padding-top: .5rem;
    padding-bottom: .5rem;
}
.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.pt-0 { padding-top: 0; } .pt-1 { padding-top: 1rem; } .pt-2 { padding-top: 2rem; }
.pl-1 { padding-left: 1rem; }

.w-100 { width: 100%; }

.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.insetx-0 {
    right: 0;
    left: 0;
}
.insetx-1 {
    right: 1rem;
    left: 1rem;
}
.top-0 { top: 0; } .top-1 { top: 1rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-n1 { z-index: -1; } .z-1 { z-index: 1; } .z-2 { z-index: 2; } .z-3 { z-index: 3; }

.d-none { display: none; }
.d-flex { display: flex; }

.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.bg-white { background-color: #fff; }
.bg-gray { background-color: #808080; }
.bg-red { background-color: #f00; }
.bg-error { background-color: #e00; }

.rounded-xs { border-radius: .25rem; }
.rounded-sm { border-radius: .5rem; }

.black { color: #111; }

.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

.ls-0 { letter-spacing: 0; }

.object-fit-cover { object-fit: cover; }

#debug-logs {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    max-height: 300px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px;
    overflow-y: auto;
    border: 1px solid white;
    z-index: 9999;
    white-space: pre-line;
}

#toggle-btn {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: white;
    z-index: 1000;
}