﻿.hide{
    display: none!important;
}

.searchBar {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#searchQueryInput {
    width: 100%;
    height: 2.8rem;
    background: #f5f5f5;
    outline: none;
    border: none;
    border-radius: 1.625rem;
    padding: 0 3.5rem 0 1.5rem;
    font-size: 1rem;
}

#searchQuerySubmit {
    width: 3.5rem;
    height: 2.8rem;
    margin-left: -3.5rem;
    background: none;
    border: none;
    outline: none;
}

#searchQuerySubmit:hover {
    cursor: pointer;
}

.scrolling-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
}

.scrolling-card {
    display: inline-block;
    margin: 10px;
}

.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}
/*.footer {
    position: fixed;
    padding: 10px 10px 0px 10px;
    bottom: 0;
    width: 100%;
    background: grey;
}*/

.page-container {
    position: relative;
    min-height: 100vh;
}

.content-wrap {
    padding-bottom: 160px; /* Footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {
    .footer {
        height: 160px;
    }
}

/* Media Query for low resolution  Tablets, Ipads */
@media (min-width: 481px) and (max-width: 767px) {
    .footer {
        height: 160px;
    }
}

/* Media Query for Tablets Ipads portrait mode */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        height: 90px;
    }
}

/* Media Query for Laptops and Desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer {
        height: 90px;
    }
}

/* Media Query for Large screens */
@media (min-width: 1281px) {
    .footer {
        height: 90px;
    }
}

