﻿

#restaurant {
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.SelectorLogo {
    max-width: 200px;
    max-height: 120px;
    margin-bottom: 40px;
}

.selector {
    color: #FFF;
} 

.unit {
    color: #303030;
    text-transform: none;
}

.unit-card {
    padding: 16px;
    text-align: left;
    border-bottom:1px solid #808080;
}
.unit-card:hover {
    /*Add style*/
}

.unit-title {
    color:var(--bg_dark);
    font-weight: 600;
    font-size: 18px;
}

.unit-location {
    font-weight: 500;
    font-size: 13px;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    padding: 150px 0px;
}

.headers {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

#content {
    position:relative;
    background: none;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index:1;
}

.units-container {
    max-width: 350px;
    padding: unset!important;
}

.option-title {
    font-weight: 500;
    margin: unset;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-size:42px;
    margin-bottom:20px;
}

.option-subheader {
    font-size:22px;
}

.geo-icon {
    position: absolute;
    right: 40px;
    height: 45px;
    width: 30px;
    fill: var(--bg_dark);
}

.scroll-y {
    overflow-y: auto;
    max-height: 320px;
}

@media only screen and (max-width: 768px) {
    /*.option-title {
        font-size: 24px;
    }

    .unit-title {
        font-size: 14px;
    }*/

    .unit-location {
        font-size: 12px;
    }
}

@media only screen and (max-width: 1080px) {
    .main {
        padding: 80px 0px;
    }
    .headers {
        width: 80%;
    }
    #content {
        width:80%;
    }
    .units-container {
        max-width:unset;
        width:100%;
        margin-left:auto;
        margin-right:auto;
    }
}

/*@media only screen and (max-width: 450px) {
    .option-title {
        font-size: 6vw;
    }

    .option-subheader {
        font-size: 4.5vw;
    }
}
@media only screen and (min-width: 450px) and (max-width:750px){
    .option-title {
        font-size: 4vw;
    }

    .option-subheader {
        font-size: 3.5vw;
    }
}*/

@media only screen and (min-width: 1080px) {
    .scroll-y {
        max-height: 400px !important;
    }
}


/* Collapsible picker */

.collapsible {
    background-color: #fff;
    color: var(--bg_dark);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    border:none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
    position:relative;
    z-index:9;
    background-color: #fff;
    border: none;
}

/* Style the collapsible content. Note: hidden by default */
.units-content {
    margin-top:-15px;
    border-bottom-right-radius:15px;
    border-bottom-left-radius:15px;
    display: none;
    background-color: #fff;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: var(--bg_dark);
    float: right;
    margin-left: 5px;
    border: none;
}

.active:after {
    content: '\2796'; /* Unicode character for "minus" sign (-) */
    border: none;
    color: var(--bg_dark);
}

button:focus {
    outline:none;
    border:none;
}

/* == Scrollbar == */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--bg_dark);
    border-radius:10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--bg_light);
}