﻿html {
    height: 100%;
}

body {
    height: 200%;
    padding-bottom: 76px;
}

a.disabled {
    pointer-events:none;
}

#search-bkg {
    background-size: cover;
    background-position: center center;
}

#search-container {
    max-width: 60em;
    height: 10%;
    top: 40%
}

.input-radio-group {
    align-items:center;
    justify-content: center;
}
.input-radio-label {
    color: #FFF;
    font-weight: bold;
}

.input-group {
    border-radius: 25rem;
    box-shadow: 0 0 40px 20px rgb(0, 0, 0, 0.5);
}
.tooltip-inner {
    word-wrap: break-word;
    text-align: left;
}

@media screen and (max-width: 600px) {
    #search-container {
        margin: 0 !important;
        width: 100% !important;
        padding-left: 2.5% !important;
        padding-right: 2.5% !important;
    }

    #county-info-card {
        top: 15em;
        max-height: 60%;
    }
}

#county-info {
    min-height: 50% !important;
    /*background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), 80%, rgba(0, 0, 0, 0.75)), url('/images/lakeCounty.jpeg');*/
    background-size: cover;
    background-position: center center;
    min-height: 50%;
}

#county-info-card {
    top: 13%;
    max-height: 85%;
}

.county-info-img {
    width: 100%;
    object-fit: cover;
}


@media screen and (max-width: 800px) {
    #county-info-card {
        top: 15em;
        max-height: 70%;
    }
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    #county-info-card {
        top: 10%;
        max-height: 100%;
    }

    #county-card-holder {
        padding-top: 25%;
        padding-bottom: 25%;
    }
}

    .scroll-arrows {
        position: absolute;
        bottom: 1em;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }

    .individual-arrow {
        fill: #FFF;
        transition: 2s;
    }

    #cnty-btn-scroll {
        width: 75px;
        height: 85px;
    }


        #cnty-btn-scroll:hover > .arrow-bottom {
            fill: #FFF;
            transition: .2s ease-out;
            transform: translateY(-18px);
        }

        #cnty-btn-scroll:hover > .arrow-top {
            fill: #FFF;
            transition: .2s ease-out;
            transform: translateY(18px);
        }

#snackbar {
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: left;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 24%;
    right: 26%;
    top: 8%;
}
/* FOR THE SMALLEST OF PHONES */

@media only screen and (max-width: 320px) {
    #snackbar {
        visibility: hidden;
        font-size: 9px;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: left;
        border-radius: 1px;
        padding: 1px;
        position: fixed;
        z-index: 1;
        left: 1%;
        right: 1%;
        top: 20%;
    }
}
/* For Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {
    #snackbar {
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: left;
        border-radius: 1px;
        padding: 1px;
        position: fixed;
        z-index: 1;
        left: 1%;
        right: 1%;
        top: 20%;
    }
}
/* For Small devices (portrait tablets, and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    #snackbar {
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: left;
        border-radius: 1px;
        padding: 1px;
        position: fixed;
        z-index: 1;
        left: 1%;
        right: 1%;
        top: 15%;
    }
}
/* For Medium Devices (landscape tables, 768px and up) */

@media only screen and (min-width: 768px) {
    #snackbar {
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: left;
        border-radius: 1px;
        padding: 1px;
        position: fixed;
        z-index: 1;
        left: 1%;
        right: 1%;
        top: 10%;
    }
}
/* For Large Devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    #snackbar {
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        text-align: left;
        border-radius: 2px;
        padding: 16px;
        position: fixed;
        z-index: 1;
        left: 24%;
        right: 26%;
        top: 8%;
    }
}

#snackbar.show {
    visibility: visible;
}

#snackbar a {
    color: #fff;
    text-decoration: none;
}

    #snackbar a:hover {
        color: #fff;
        text-decoration: underline;
    }