:root {
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --white: #ededed;
    --grey: #888888;
    --tourq: #00faff;
    --acid: #00ff5a;
    --scrollbar: 6px;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
}

*::-webkit-scrollbar-track {
    background-color: var(--dark);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--white);
    border: 0;
    border-radius: 3px;
}

*::-webkit-scrollbar {
    width: var(--scrollbar);
    background-color: transparent;
}

.h {
    cursor: pointer;
}

.t03s {
    transition: 0.3s ease-in-out;
}

html, body {
    overflow: hidden;
}

html.rtl {
    direction: rtl;
    text-align: right;
}

body {
    background: var(--black);
    margin: 0;
    font-family: "Roboto", system-ui;
    font-weight: 400;
    height: 100dvh;
    overflow-x: hidden;
}

holders {
    display: none;
}

.snapper {
    /*scroll-snap-type: y mandatory;*/
    scroll-behavior: smooth;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
}

.fs {
    display: block;
    width: 100dvw;
    height: 100dvh;
    padding-right: var(--scrollbar);
    overflow: hidden;
}

.snap {
    overflow-x: hidden;
    /*scroll-snap-align: start;*/
}

.rtl .fs {
    padding-right: 0;
    padding-left: var(--scrollbar);
}

uf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    width: 100dvw;
}

uf-banner {
    position: relative;
    z-index: 1;
}

uf-ticketer,
uf-about {
    position: relative;
    padding-top: 80px;
    z-index: 1;
}

uf-about {
    height: auto;
    min-height: 100dvh;
    padding-bottom: 80px;
}

uf-joiner#uf-join,
uf-eventer {
    position: relative;
    z-index: 1;
}

footer {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    width: 100dvw;
    color: var(--white);
    padding: 32px 0;
}

.footer-support {
    margin-bottom: 24px;
}

.footer-support a {
    text-decoration: underline;
    font-weight: 600;
    color: var(--white);
}

.footer-copyright {
    font-size: 12px;
    line-height: 1.5;
}

.parallax {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.1;
    background-image: url('../img/bg.png');
    background-position-x: center;
    background-attachment: fixed;
    background-size: contain;
    background-repeat: repeat;
}

#banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    width: 100dvw;
}

#banner img {
    display: block;
    height: 100%;
    width: fit-content;
    object-fit: cover;
    object-position: center;
}


@media (max-width: 767px) {
    :root {
        --scrollbar: 0;
    }
}
