* {
    font-family: 'Open Sans', sans-serif;
    font-weight: lighter;
}

html,
body {
    background: -webkit-gradient(linear, left top, right bottom, from(#c4e3e5), to(#d2e9eb)) fixed;
    height: 100%;
    margin: 0;
}

#logo {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 50px;
    margin-left: 50px;
}

.white {
    color: white;
}

.cegos_logo {
    padding: 25px;
    max-width: 60px;
}

.header {
    display: inline-flex;
}

.bold {
    font-weight: bold !important;
}

.pt15 {
    padding-top: 20px;
}

.xlarge {
    font-size: x-large;
}

/* Hide CEGOS logo if on mobile */
@media only screen and (max-width: 1250px) {
    #logo {
        display: none;
    }
}

@font-face {
    font-family: 'meatloaf_solidregular';
    src: url('../assets/meatloaf_solid-webfont.woff2') format('woff2'),
        url('../assets/meatloaf_solid-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Modal CSS */
.modal {
    display: none;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(71, 78, 93, 0.7);
    padding-top: 50px;
}

.container>p {
    font-size: 1.1rem;
}

hr {
    border: 1px solid #f1f1f1;
    margin-bottom: 25px;
}

.close {
    position: absolute;
    right: 35px;
    top: 15px;
    font-size: 40px;
    font-weight: bold;
    color: #f1f1f1;
}

.close:hover,
.close:focus {
    color: #f44336;
    cursor: pointer;
}

.clearfix {
    float: right;
    width: 100%;
    margin-bottom: 2vh;
    margin-top: 5vh;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: 50%;
    border-radius: 10px;
}

.cancelbtn {
    font-family: "meatloaf_solidregular";
    font-size: 2rem;
    background-color: #404040;
    color: white;
    width: 50%;
    height: 5.5vh;
    border: 0px;
    border-radius: 7px;
    cursor: pointer;
}

.container-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-item {
    margin-top: 20px;
    text-align: center;
    font-size: 1.5em;
}

.purple {
    color: #645aa0 !important;
    font-size: 25px;
}

.yellow {
    color: #e3a335 !important;
    font-size: x-large;
}

.player_square {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    color: white;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
    margin-bottom: 10px;
    margin-left: 0px;
    box-shadow:
        inset 0 0 50px rgba(50, 218, 240, 0.25),
        /* inner color */
        inset 20px 0 80px rgb(50, 218, 240, 0.25),
        /* inner left short */
        inset -20px 0 80px rgb(50, 218, 240, 0.25),
        /* inner right short */
        inset 20px 0 300px rgb(50, 218, 240, 0.25),
        /* inner left broad */
        inset -20px 0 300px rgba(50, 218, 240, 0.25),
        /* inner right broad */
        0 0 50px rgb(50, 218, 240),
        /* outer color */
        -10px 0 80px rgb(50, 218, 240),
        /* outer left */
        10px 0 80px rgb(50, 218, 240);
    /* outer right */
}

.team_section {
    display: flex;
    flex-wrap: wrap;
}

/* END */