.room-container {
    position: relative;
    margin: 1em;
}
.accommodation .rooms img {
    width: 100%;
    height: 500px;
    display: block;
}
.accommodation .room-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    width: 100%;
    height: 50px;
    transition: .5s ease;
}
.room-container:hover .overlay {
    height: 100%;
}
/*
.room-container .text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}*/
.room-container h2, .room-container .links {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 40%);
    -ms-transform: translate(-50%, 40%);
    transform: translate(-50%, 40%);
    text-align: center;
    
}

.room-container .links {
    border-top: 1px solid #757575;
    border-bottom: 1px solid #757575;
}
.room-container .overlay .more {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translate(-50%, 10%);
    -ms-transform: translate(-50%, 10%);
    transform: translate(-50%, 10%);
}

.circle-icon {
    background: whitesmoke;
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
    text-align: center;
    padding-top: 0.35em;
}

.routes .landmark-element {
    display:flex;
    flex-direction: column;
    padding: 1em;
}

.routes .landmark-element h2 {
    border-bottom: 2px solid grey;
    padding-bottom: 0.2em;
    cursor: pointer;
    margin-top:auto;
}
.routes .landmark-element h2:hover {
    border-bottom: 2px solid #ac8b51;
}

.routes .modal img {
    max-height: 100%;
    max-width: 100%;
}
