body {
    background-color: black;
}

#main {
    margin-bottom: 100px;
}

.top-nav {
    margin-right: 1rem;
}

.nav-spacer {
    width: 30px;
}

.disclaimer {
    margin-top: 2%;
    margin-bottom: 2%;
    text-align: center;
    color: white;
}

.filters {
    text-align: center;
    margin-bottom: 2%;
}

.dropdown {
    display: inline;
}

.stream-list {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    grid-gap: 1rem;
    padding: 1rem;
}

.col-md-4 {
    min-height: 100%;
    max-height: 100%;
}

.visual {
    background-image: url('/img/placeholder.png');
    background-size: auto;
    background-repeat: no-repeat;
    background-position: center;
    height: 70%;
    min-height: 80px;
}

.card-img {
    height: 70%;
}

.btn-date {
    color: #343a40;
    border: none;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
}

.btn-date:focus {
    outline: none;
    box-shadow: none;
}

#btn-user {
    border: none;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
}

#welcome {
    border: none;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    padding-top: .375rem;
    padding-bottom: .375rem;
    padding-right: .75rem;
    font-size: 1rem;
    border-radius: .25rem;
}

.free {
    height: 30%;
    width: 100%;
    display: table;
    background-color: darkgreen;
    color: white;
    border-bottom-left-radius: 0.25rem;
}

.free p {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.price {
    height: 30%;
    width: 100%;
    display: table;
    background-color: darkorange;
    color: black;
    border-bottom-left-radius: 0.25rem;
}

.price p {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
    background-color: grey;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 600px) {
    .stream-list { grid-template-columns: repeat(2, 1fr); }
    }

@media (min-width: 900px) {
    .stream-list { grid-template-columns: repeat(3, 1fr); }
    }