@font-face {
    font-family: futura;
    src: url(/futurabc.ttf);
    font-display: swap;
}

* {
    font-family: futura, Arial, sans-serif;
    letter-spacing: 1px;
}

select[disabled] {
    opacity: 0.5;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
}

footer div {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 5px;
    background: white;
    border-radius: 10px;
}

footer vertical {
    display: inline-block;
    width: 0;
    border-right: 1px solid #FFCB27;
    height: 80%;
    margin: 0 5px;
}

footer img {
    height: 40px;
    margin: 7px;
}

#finishers_table, #climbers_table{
    height: 400px;
    overflow: auto;
    margin-bottom: 50px;
}

#finishers_head, #climbers_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

table {
    border-collapse: separate;
    border-spacing: 0 5px;
    text-align: center;
    width: 100%;
    font-size: 15pt;
    color: white;
    position: relative;
}

table tbody tr:first-child {
    background-color: grey;
}

table thead tr {
    background-color: #F9B727;
}

table tbody tr {
    background-color: rgba(0, 0, 0, 0.7);
    margin-bottom: 3px;
}

th {
    background-color: #ea1f23;
    position: sticky;
    top: 0;
    cursor: pointer;
}

th, td {
    white-space: nowrap;
}

table tbody td {
    color: white;
    padding: 2px 5px;
}

button {
    cursor: pointer;
}

#main_logo {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

#main {
    margin: 0 auto;
    max-width: 1000px;
}

#events, #etapa, #edition {
    display: flex;
    justify-content: space-evenly;
}

#events button{
    appearance: none;
    --webkit-appearance: none;
    background: black;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 20pt;
    color: white;
    letter-spacing: 2px;
    width: 150px;
}

#events .active{
    color: orange;
    border-color: orange;
}

#etapa {
    margin: 40px 0;
}

select {
    color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border-radius: 0;
    text-align: center;
    background-image: url(/img/selectArrow.svg);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 23px;
    background-color: black;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 20pt;
    letter-spacing: 2px;
    width: 220px;
}

@media only screen and (max-width: 900px) {
    footer div {
        display: flex;
        align-items: center;
        padding: 5px;
        background: white;
        border-radius: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    footer vertical {
        display: none;
    }

    table {
        white-space: nowrap;
    }

    select {
        color: white;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
        appearance: none;
        border-radius: 0;
        text-align: center;
        background-image: url(/img/selectArrow.svg);
        background-size: 20px;
        background-repeat: no-repeat;
        background-position-x: calc(100% - 10px);
        background-position-y: 23px;
        background-color: black;
        border: 2px solid white;
        padding: 10px 20px;
        font-size: 20pt;
        letter-spacing: 2px;
        width: 150px;
    }

    #finishers_head, #climbers_head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        flex-direction: row;
    }
}