﻿/* Full Screen */
@media screen and (min-width: 727px) {
    #event-search-container {
        max-height: 403px;
        flex-direction: row;
        overflow-y: auto;
    }

    #search-content {
        width: 23%;
        height: auto;
    }

    .event-search-filters {
        flex-direction: column;
        align-items: center;
    }

    .dropdown-content-top {
        max-height: 250px;
        top: 1%;
        left: 105%;
    }

    .dropdown-content-mid {
        max-height: 180px;
        top: 1%;
        left: 105%;
    }

    .dropdown-content-bottom {
        max-height: 250px;
        bottom: 1%;
        left: 105%;
    }

    #search-results-content {
        width: 77%;
    }
}

/* Tablet */
@media screen and (min-width: 311px) and (max-width: 727px) {

    #event-search-container {
        height: 590px;
        flex-direction: column;
    }

    .event-search-filters {
        flex-wrap: wrap;
        justify-content: center;
    }

    .event-search-dropdown {
        position: relative;
        display: flex;
        align-self: flex-end;
    }

    .dropdown-content-top {
        max-height: 300px;
        top: 100%;
    }

    .dropdown-content-mid {
        max-height: 300px;
        top: 100%;
    }

    .dropdown-content-bottom {
        max-height: 300px;
        top: 100%;
    }

    #search-results-content {
        width: 100%;
    }

    #find-events-btn-container {
        display: flex;
        align-self: flex-end;
    }
}


/* Phone */
@media screen and (max-width: 310px) {

    #event-search-container {
        height:850px;
        flex-direction: column;
    }

    #search-content {
        max-height: 371px;
        overflow-y: auto
    }

    .event-search-filters {
        flex-direction: column;
        align-items: center;
    }

    .dropdown-content-top {
        max-height: 230px;
        top: 100%;
    }

    .dropdown-content-mid {
        max-height: 160px;
        top: 100%;
    }

    .dropdown-content-bottom {
        max-height: 240px;
        bottom: 100%;
    }

    #search-results-content {
        width: 100%;
    }
}

body {
    margin: 0;
}

#event-search-container {
    display: flex;
    gap: 1rem;
    background: none;
}

#eventSearchForm {
    margin: 0;
}

#search-content {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    height: fit-content;
}

#keyword-search {
    padding: .7rem;
    border: 0;
    width: 100%;
    background-image: url('/Content/img/icon-search-gray.png');
    background-repeat: no-repeat;
    background-position: right .5rem center;
    padding-left: .75rem;
}

#keyword-search::placeholder {
    color: #aba9a9;
}

#event-search-date-range {
    display: flex;
    justify-content: center;
    margin: .5rem;
}

.event-search-filters {
    display: flex;
    gap: .35rem;
}

.event-search-dropdown {
    position: relative;
}

.event-search-dropdown-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #BA0C2F;
    color: white;
    padding: .30rem;
    border: none;
    cursor: pointer;
    width: 8.5rem;
    border-radius: 5px;
    font-size: large;
    font-family: 'Birdseye';
}

.event-search-dropdown-content {
    display: none;
    background-color: #f7f7f7;
    min-width: 160px;
    position: absolute;
    overflow-y: auto;
    z-index: 1;
}

.event-search-dropdown-content a {
    text-align: center;
    padding: .75rem;
    text-decoration: none;
    color: inherit;
    font-family: 'Birdseye';
    font-size: large;
    font-weight: 100;
}

#find-events-btn {
    background-color: #003057;
}

.show {
    display: flex;
    flex-direction: column;
}
