/* --- Show & NoShow --- */

.desktop-only {
    display: block;
}

.no-desktop {
    display: none;
}

/* --- Container --- */

.container {
    z-index: 1;
    margin: 0 auto;
    width: 95%;
    max-width: 1300px;
}


body::before {
    position: absolute;
    z-index: -1;
    background-color: #009440;
    width: 100%;
    height: 200px;
    display: block;
    content: ' ';
}

/* --- Structure --- */


.top {
    height: 100px;
    display: block;
    background-color: #007633;
    margin-bottom: 30px;
}

.top p{
    color: white;
    font-size: 11px;
    margin-top: 75px;
}
.top a {
    color: white;
    text-decoration: none;
}

.top .links {
    float: right;
}

.left {
    width: calc(30% - 20px);
    float: left;
    height: calc(100vh - 130px - 25px);
}

.right {
    width: calc(70% - 10px);
    height: calc(100vh - 130px - 25px);
    float: right;
    overflow-y: auto;
}

.searchBody {
    max-height: calc(100vh - 130px - 60px - 5px);
    overflow-y: auto;
}

.roomSearch .searchBody {
    height: calc(100vh - 130px - 175px - 20px - 20px - 5px - 40px - 55px - 70px);
}

.map {
    height: calc(100vh - 130px - 25px);
    width: 100%;
    background-color: white;
}

.card {
    background-color: #fafafa;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.searchHead {
    height: 40px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.roomSearch {
    margin-top: 20px;
}

.roomSearch .searchHead {
    background-color: #f2f2f2;
    position: relative;
    padding: 15px;
    height: 55px;
}

/* --- LMU Logo --- */

#logo {
    display: inline-block;
    height: 70px;
    width: calc(30% - 20px);
    background-image: url(./../../img/logo-desktop.png);
    background-repeat: no-repeat;
    margin: 15px 0;
    position: relative;
}

#logo h1 {
    font-family: "Verdana", sans-serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.6px;
    color: white;
    margin: 0;
    position: absolute;
    bottom: 1px;
    left: 4px;
}

#logo .box {
    border: solid 1px white;
    height: 68px;
    width: calc(100% - 156px);
    float: right;
    position: relative;
}


/* --- Scrollbar --- */

.searchBody::-webkit-scrollbar-track {}

.searchBody::-webkit-scrollbar {
    width: 6px;
}

.searchBody::-webkit-scrollbar-thumb {
    background-color: #ccc;
}
