body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    background-color: #fff !important;
}

/* *,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
} */

html {
    margin: 0;
    overflow-y: scroll;
    overflow-x: scroll;
}

nav a {
    margin: 15px 25px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
}

nav a:hover,
nav a:focus {
    outline: none;
}

a {
    margin: 0px;
    border: 0px;
    text-decoration: none;
    color: black;
}

small {
    font-size: 80%;
}

.isHidden {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    display: none !important;
}

.hidden {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
  supported by Chrome and Opera */
}

.disabled {
    background: gray !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 30%;
}

/* Text Styles ============================================================== */

h1 {
    font-family: "nexa_boldregular";
    color: black;
    font-size: 20px;
    margin: 10px;
    letter-spacing: 4px;
}

h2 {
    font-family: "Open Sans";
    color: black;
    font-size: 20px;
}

h5 {
    font-family: "DM Mono", monospace;
    color: black;
    font-size: 14px;
    margin: 5px 0px;
}

.text-small {
    font-size: 12px;
}

label {
    font-family: "DM Mono", monospace;
    font-weight: 500;
    text-transform: uppercase;
    color: #1654a1;
    margin: 5px 0px;
}

.nav-item {
    font-size: 12px;
    color: black;
    min-width: max-content;
}

.not-found {
    font-size: 50px;
    font-weight: bold;
    color: red;
}

.label-left {
    font-size: 14px;
    position: relative;
    top: 22px;
    left: 10px;
}

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

.text-right {
    text-align: right;
}

.check-in-tile {
    color: black;
    /* background: #1654a1; */
    text-align: center;
    margin-bottom: 6px;
    padding: 10px;
    border-top: black thin solid;
}

.redMessage {
    font-size: 12px;
    color: red;
}

.text-link:hover {
    color: #1654a1;
    cursor: pointer;
}

/* COLORS =================================================================== */

.red {
    color: #c0272d;
}

.red-button {
    background: #ed2835;
}

.red-button:hover {
    background: #ce1a26;
}

/* SPACING ================================================================= */

/* margin vertical */
.mv-1 {
    margin: 1rem 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin: 1rem 0 0 0;
}

.mt-2 {
    margin-top: 2rem;
}

.ml-1 {
    margin-left: 1rem;
}

.pd-l-1 {
    padding-left: 5px;
}

.pd-h-1 {
    padding: 0px 5px;
}

.m-0 {
    margin: 0px;
}

.w-100 {
    width: 100%;
}

/* FORM COMPONENTS ========================================================= */

.form-container {
    width: 400px;
}

input {
    font-size: 100%;
    font-family: inherit;
    height: 45px;
    padding: 6px 0 0 8px;
    width: 100%;
    box-sizing: border-box;
}

select {
    height: 45px;
    width: 100%;
    font-size: 100%;
    font-family: inherit;
    box-sizing: border-box;

    /* max-width: 365px; */
}

@media only screen and (max-width: 400px) {
    select,
    input > .date-picker {
        height: 45px;
        max-width: 300px;
    }

    textarea {
        max-width: 300px;
    }

    .create-form {
        align-items: center;
    }
}

.modal {
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f2f2f2;
    justify-content: center;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 3;
}

.form-in-width {
    max-width: 365px;
    width: 80vw;
}

/* FLEX STYLES ============================================================== */

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-center {
    justify-content: center;
    align-items: center;
}

.flex-end {
    justify-content: center;
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between !important;
}

/* EMAIL ==================================================================== */

/* Buttons ================================================================== */
button {
    margin: 1rem 0;
    min-width: 160px;
    height: 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    color: white;
    background: #4285f4;
    font-size: 100%;
}

.btn-gray {
    background: #dbdbdb;
}

.btn-gray:hover {
    background: #c6c6c6;
}

button:hover {
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    background: #377def;
}

.auth-button {
    margin: 1rem 0;
    min-width: 160px;
    height: 40px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    color: black;
}

#google-auth-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    margin: 1rem 0;
    border-radius: 5px;
    background: #4285f4;
    color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.close-button {
    border: thin white solid;
    padding: 2px 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* CONTAINERS =============================================================== */

.broadcast-container {
    width: 100vw;
    background: #3468ac;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-around;
    font-size: 14px;
}

.subscription-banner-container {
    width: 100vw;
    background: #ffc107;
    color: #000;
    padding: 12px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.subscription-banner-content {
    max-width: 1200px;
    text-align: center;
    padding: 0 20px;
}

.app-container {
    min-height: calc(100vh - 229px);
}

.game-tile {
    color: black;
    width: 75%;
    padding: 20px;
    background: #f7f7f7;
    cursor: pointer;
    margin-bottom: 1rem;
    border: 1px black solid;
    /* border-radius: 10px; */
}

.game-tile:hover {
    box-shadow: 3px 3px 10px gray;
}

.game-message {
    width: 100%;
    cursor: pointer;
    margin-top: 5px;
    background: white;
}

.game-field {
    width: 100%;
    padding: 5px;
}

.sub-field {
    color: white;
    background: #1654a1;
    font-weight: bold;
    margin: 0;
    transition: 0.4;
}

.display-width {
    width: 84vw;
    max-width: 1200px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 84vw;
    border-bottom: solid black 3px;
}

.footer-container {
    width: 90vw;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: solid black 2px;
    margin-top: 30px;
}

/* ELEMENTS ================================================================= */

.hl {
    width: 100%;
    background: black;
    height: 1px;
}

.flag-blue {
    background: #1654a1;
    color: white;
}

.copy {
    font-size: 12px;
    width: 100%;
    margin: 1rem 0;
    text-align: center;
    color: black;
}

/* Page General Layout ========================================================== */

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    background-color: #fff;
}

#four04 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Forms ==================================================================== */

.input-container-login {
    max-width: 400px;
}

/* Images & Logos & Specials =========================================================== */

#logo {
    margin-top: 3rem;
    margin-left: 2rem;
    max-width: 400px;
}

#header-logo {
    max-height: 65px;
    margin: 2rem 1rem 0 0;
    cursor: pointer;
}

#email-tag-logo {
    max-height: 40px;
}

#googleIcon {
    max-width: 37px;
    padding: 1px;
    background: white;
    margin-right: 10px;
}

.player-row {
    width: 80%;
    border-bottom: thin solid black;
    border-left: thin solid black;
    border-right: thin solid black;
}

@media only screen and (max-width: 400px) {
    .player-row {
        font-size: 12px;
    }
}

.player-col {
    padding: 10px 10px 10px 0;
    width: 300px;
}

.col-1,
.col-2,
.col-3 {
    margin: 0 20px;
}

.ham-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

@media only screen and (max-width: 400px) {
    .ham-container {
        margin-top: -65px;
    }
}

#ham {
    display: none;
    z-index: 9000;
}

.ham-inner {
    background: white;
    width: 0;
    height: 100vh;
    position: absolute;
    left: 100%;
    display: none;
    z-index: 200;
}

.ham-inner.active {
    left: 0%;
    width: 100vw;
    transition: 0.3s ease all;
    display: block;
}

.nav-item-ham {
    font-size: 32px;
    margin: 0 auto;
    padding: 6px 0;
}

@media only screen and (max-width: 400px) {
    #ham {
        display: block;
    }
}

/* NAV BREAK ================================================================ */
/* ========================================================================== */
@media only screen and (max-width: 1310px) {
    .header-nav-item {
        font-family: "Helvetica Neue", Helvetica, sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 16px;
        margin-right: 0.5rem;
        margin-bottom: 0.8rem;
    }
}

@media only screen and (max-width: 400px) {
    .nav-item {
        display: none;
    }
}

/* IPHONE =================================================================== */
/* ========================================================================== */
@media only screen and (max-width: 930px) {
    /* LANDER HEADER ===========================================================  */

    .header-container {
        flex-direction: column;
    }

    .nav-item {
        margin: 10px;
        text-align: center;
    }

    .input-container-login {
        margin: 1rem;
    }

    #header-logo {
        max-height: 50px;
        margin: 2rem 0 1rem 0;
    }

    .mobilehide {
        display: none;
    }

    .mdw {
        width: 85vw;
    }

    .game-tile {
        font-size: 12px;
    }

    .mobile-column {
        flex-direction: column !important;
    }

    .game-message {
        text-align: center;
    }

    .broadcast-container {
        padding: 0px;
        flex-direction: column;
        align-items: center;
    }

    .close-button {
        margin: 10px 0;
    }

    .subscription-banner-container {
        padding: 10px 5px;
        font-size: 12px;
    }

    .subscription-banner-content {
        padding: 0 10px;
    }

    /* CONTACT =================================================================  */

    /* ABOUT ===================================================================  */

    /* SCHOLARSHIPS ============================================================  */

    /* FOOTER ==================================================================  */
}
