@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;500;600&display=swap');
@import "reset.css?v=1.9";
@import "variables.css?v=1.9";
@import "typography.css?v=1.9";
@import "header.css?v=1.9";
@import "upcoming-fleets.css?v=1.9";
@import "footer.css?v=1.9";
@import "hero-home.css?v1.9";
@import "hosts.css?v1.9";
@import "single-host.css?v=1.9";
@import "single-fleet.css?v=1.9";
@import "calendar.css?v1.9";
@import "capsuleer.css?v1.9";
@import "about.css?v1.9";
@import "roam-report.css?v1.9";

html {
    font-size: 62.5%;
}

body {
    color: var(--text-default);
    font-family: 'Oxanium', sans-serif;
    background: var(--main-bg);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    margin: auto;
}

.section-stripe:before {
    background: linear-gradient(90deg, rgba(152, 65, 255, 0) 0%, var(--purple) 50%, rgba(152, 65, 255, 0) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 0.4rem;
    left: 0;
    bottom: 0;
    z-index: 10;
}

.about-us-bg {
    background: var(--main-bg) url("../img/about-bg.jpg") center;
}

.fanfest-bg {
    background: url("../img/fanfest-header.jpg") center;
}

.header-bg {
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    animation: pulse-header 24s infinite;
}

.hero h1, .hero h3 {
    text-shadow: 0 0 0.5rem black;
    line-height: 1;
}

.hero-generic {
    display: flex;
    min-height: 20rem;
    padding: 2rem 1.6rem;
    overflow: hidden;
    background: url("../img/stripe.png");
    box-sizing: border-box;
}

.not-found-bg {
    background: url("../img/404.jpg") center;
    background-size: cover;
}

.hero-fullscreen {
    flex: 1;
}

.hero h3 {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    text-transform: uppercase;
    color: var(--text-darker);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.eve-time {
    text-align: center;
    margin: 6.4rem 0 1.2rem 0;
    font-size: 1.9rem;
    font-weight: 600;
    color: white;
}

.loader {
    display: flex;
    justify-content: center;
}

.sk-chase {
    width: 4rem;
    height: 4rem;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: white;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%, 0% {
        transform: scale(1.0);
    }
}

@media screen and (max-width: 767px) {
    .hide-xs {
        display: none;
    }

    .table-wrapper{
        overflow-x: scroll;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hide-md {
        display: none;
    }
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .hide-l {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .container {
        width: 72rem;
        padding: 0;
    }

    .eve-time {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        width: 92rem;
    }

    .br-tablet br {
        display: block;
    }

    .hero-generic {
        min-height: 30rem;
    }
}

@media screen and (min-width: 1280px) {
    .container {
        width: 108rem
    }

    .hero-generic {
        min-height: 40rem;
    }

    .hero h3 {
        margin-bottom: 2rem;
    }
}
