/* Positioning */
/* Box Model */
/* Typography */
/* Visuals */
/* Visiblity */
/* Transitions & Animations */
/* Miscellaneous */
/* Media Queries */
/* Base Styles */
/* Main Styles */
/* Unscripted Logo */
/* Registration Form */
/* Form Fields */
/* Hover */
/* Focus */

/* Fonts */

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/proton_studios_main_fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('/static/fonts/proton_studios_main_fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/static/fonts/proton_studios_main_fonts/Merriweather_24pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DMSans';
    src: url('/static/fonts/proton_studios_main_fonts/DMSans-Regular.woff2') format('woff2');
}

/* ----------------------------------------------------- */

:root {
    /* Base Body Header */
    --base_body_header_height: 16vh;
}

html {
    /* Positioning */
    scrollbar-width: none;
    scroll-behavior: smooth;
    /* Box Model */
    height: 100%;
}

div:not(.aurora_horizons__main__search, .aurora_horizons__main__search__panel, .aurora_horizons__main__search__panel__options, .aurora_horizons__main__search__panel__options__passengers) {
    /* Visiblity */
    overflow: hidden;
}

.base_body {
    /* Box Model */
    width: 100%;
    height: 100%;
    background-image: url('/static/static_images/backgrounds/nano_technology_background.png');
    margin: 0rem;
}

.base_body__header {
    /* Positioning */
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    /* Box Model */
    width: 100%;
    height: var(--base_body_header_height);
    /* Transitions & Animations */
    transition: background-color 0.3s ease;
}

.base_body__header__logo  {
    /* Box Model */
    width: 15vh;
    height: 15vh;
    /* Miscellaneous */
    cursor: pointer;
}

.base_body__header__logo a {
    /* Box Model */
    width: 100%;
    height: 100%;
}

.base_body__header__logo img {
    /* Box Model */
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Tablet (portrait/landscape) styles */
@media (min-width: 768px) and (max-width: 1367px) {
    .base_body__header__logo  {
        /* Box Model */
        width: 15vh;
        height: 15vh;
        /* Miscellaneous */
        cursor: pointer;
    }

    .base_body__header__logo a {
        /* Box Model */
        width: 100%;
        height: 100%;
    }

    .base_body__header__logo img {
        /* Box Model */
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Desktop styles */
@media (min-width: 1441px) {
    .base_body__header__logo  {
        /* Box Model */
        width: 6.5%;
        height: auto;
        /* Miscellaneous */
        cursor: pointer;
    }

    .base_body__header__logo a {
        /* Box Model */
        width: 100%;
        height: 100%;
    }

    .base_body__header__logo img {
        /* Box Model */
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Large Desktop Styles */
@media (min-width: 1600px) {
    .base_body__header__logo  {
        /* Box Model */
        width: 6.5%;
        height: auto;
        /* Miscellaneous */
        cursor: pointer;
    }

    .base_body__header__logo a {
        /* Box Model */
        width: 100%;
        height: 100%;
    }

    .base_body__header__logo img {
        /* Box Model */
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.base_body__header__navigation {
    /* Positioning */
    display: flex;
    flex-direction: row;
    /* Box Model */
    /* Typography */
    font-family: 'Roboto';
    font-size: 14px;
}

.base_body__header__navigation a {
    /* Positioning */
    /* Box Model */
    margin: 0.40rem;
    /* Typography */
    color: #b4b4b4;
    text-decoration: none;
    /* Transitions & Animations */
    transition: color 0.3s ease;
}

/* Tablet (portrait/landscape) styles */
@media (min-width: 768px) and (max-width: 1367px) {
    .base_body__header__navigation  {
        /* Box Model */
        margin: 2rem;
    }

    .base_body__header__navigation a  {
        /* Box Model */
        margin: 1rem;
    }
}

/* Desktop styles */
@media (min-width: 1441px) {
    .base_body__header__navigation  {
        /* Box Model */
        margin: 2rem;
    }

    .base_body__header__navigation a  {
        /* Box Model */
        margin: 1rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1600px) {
    .base_body__header__navigation  {
        /* Box Model */
        margin: 2rem;
    }

    .base_body__header__navigation a  {
        /* Box Model */
        margin: 1rem;
    }
}

.base_body__header__navigation a:hover {
    /* Typography */
    color: #313131;
    /* Miscellaneous */
    cursor: pointer;
}

.base_body__main {
    /* Box Model */
    padding-top: var(--base_body_header_height);
}

.base_body__footer {
    /* Positioning */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* Box Model */
    min-height: 25%;
    background-color: #ffffff;
    border-top: 1px solid #dddddd;
}

.base_body__footer a {
    /* Positioning */
    /* Typography */
    font-family: 'Roboto';
    color: #b4b4b4;
}

/* ----------------------------------------------------- */