﻿/*Full Screen*/
@media screen and (min-width: 310px) and (max-width: 430px) {
    .event-series-logo-container {
        width: 35%;
        padding: 1rem 0 1rem 5%;
    }
}

/*Tablet*/
@media screen and (min-width: 431px) and (max-width: 726px) {
    .event-series-logo-container {
        min-width: 131px;
        width: 22%;
        padding: 1rem 0 1rem 5%;
    }
}

/*Mobile*/
@media screen and (max-width: 310px) {
    .event-series-logo-container {
        width: 35%;
        padding: 1rem 0 1rem 1rem;
    }
}

body {
    margin: 0;
}

.font {
    font-family: 'Birdseye';
}

#sports-accordion-container {
    overflow-y: auto;
    height: 315px;
}

#sports-accordion {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: .1rem;
    background-color: white;
}

.sports-accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #003057;
    height: 3.7rem;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.sports-accordion-header:hover {
    cursor: pointer;
}

.sports-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.event-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: .75rem;
}

.event-series-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
}

.event-series-logo {
    max-width: 100%;
    max-height: 100%;
}

.event-row-details {
    display: flex;
    flex-direction: column;
    width: 65%;
    text-align: center;
    padding: .75rem .5rem 0 1rem;
}

.open {
    max-height: 10000px;
}
