html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #000;
    font-family: 'Ubuntu', sans-serif;
}

a:link, a:visited {
    color: inherit;
}

.desc-container {
    max-width: 500px;
    max-height: 250px;
    min-width: 500px;
    min-height: 150px;
    background: #fff;
    color: #000;
    border-radius: 3px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.content {
    padding: 20px 20px 20px 170px;
}

.image {
    position: absolute;
    left: 0;
    width: 150px;
    height: 100%;
    background-size: cover;
    background-color: #ccc;
}

.image::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url("../images/enlarge-image.png");
    background-size: contain;
    right: 5px;
    bottom: 5px;
}

.image a {
    position: absolute;
    width: 100%;
    height: 100%;
}

.title {
    font-size: 24px;
    font-weight: bold;
}

.panoramaSwitcher {
    position: fixed;
    width: 20%;
    top:15px;
    left:15px;
    max-width: 230px;
}

.room {
    width: 30%;
    display:inline-block;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}
.room img {
    width: 100%;
    filter: saturate(0);
}

.room:hover img,
.room.selected img {
    filter: saturate(1);
}

.otherEquipment{
    color: #fff;
    margin-top: 10px;
}

/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
    padding: 0;
}

/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}

/* padding for main container */
.mfp-no-margins .mfp-container {
    padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}
