/****************************  ****************************/

.rooms-list {
    margin-top: 50px;
}

.rooms-list .item {
    width: 50%;
    margin-bottom: 50px;
}

.rooms-list .item .box {
    max-width: 736px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.rooms-list .item .box:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d8ebff+0,94c7f7+100 */
    background: #d8ebff;
    /* Old browsers */
    background: -moz-linear-gradient(left, #d8ebff 0%, #94c7f7 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, #d8ebff 0%, #94c7f7 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, #d8ebff 0%, #94c7f7 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d8ebff', endColorstr='#94c7f7', GradientType=1);
    /* IE6-9 */
}

.rooms-list .item .box:hover:after {
    width: 100%;
    -webkit-transition: all 350ms linear;
    -moz-transition: all 350ms linear;
    -o-transition: all 350ms linear;
    transition: all 350ms linear;
}

.rooms-list .pic {
    position: relative;
}

.rooms-list .name a {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    position: relative;
    padding-right: 15px;
    z-index: 2;
    display: block;
}

.rooms-list .box:hover .name a {
    color: #0166ac;
    -webkit-transition: all 350ms linear;
    -moz-transition: all 350ms linear;
    -o-transition: all 350ms linear;
    transition: all 350ms linear;
}

.rooms-list .pic a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
}

.rooms-list .box:hover .pic a:before {
    background: rgba(255, 255, 255, .3);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.rooms-list .price-box {
    display: inline-block;
}

.rooms-list .price-box li {
    margin: 0 10px;
}

.gallery {
    max-width: 100%;
}

.stage {
    float: left;
    width: 60%;
}

.thumbnails {
    float: right;
    width: 35%;
    margin-left: 5%;
    border: 4px double #ddd;
    padding: 30px 15px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.thumbnails .small-pic li {
    width: 50%;
    padding: 5px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.thumbnails .small-pic a {
    position: relative;
}

.thumbnails .small-pic a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.6);
}

.thumbnails .small-pic a:hover:before,
.thumbnails .small-pic .active a:before {
    background: rgba(255, 255, 255, 0);
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.gallery.no-gallery .thumbnails {
    float: none;
    margin: 0 auto;
    padding: 15px;
}

.gallery.no-gallery .price-box {
    margin-top: 0;
}

.rooms-header {
    margin-top: 60px;
}

.rooms-header .price-box {
    margin-top: 30px;
    color: #000;
}

.rooms-header .price-box li {
    width: 33.33%;
    text-align: center;
    margin-bottom: 10px;
}

.rooms-header .price-box li + li {
    border-left: 1px dotted #bdbdbd;
}

.rooms-header .price-box li:nth-child(4) {
    border-left: none;
}

.rooms-header .price-box li:nth-child(4),
.rooms-header .price-box li:nth-child(5),
.rooms-header .price-box li:nth-child(6) {
    padding-top: 10px;
}

.rooms-header .price-box .title {
    display: block;
}

.rooms-header .price-box span {
    background: #FFE006;
    color: #000;
    padding: 5px 10px;
    margin-top: 10px;
    display: block;
}

@media screen and (max-width: 1260px) {
    .rooms-header .price-box li {
        width: 50%;
    }
    .rooms-header .price-box li:nth-child(4) {
        border-left: 1px dotted #b9b9b9;
    }
    .rooms-header .price-box li:nth-child(3),
    .rooms-header .price-box li:nth-child(5) {
        border-left: none;
    }
    .rooms-header .price-box li:nth-child(3) {
        padding-top: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .rooms-list .item {
        width: 100%;
    }
    .stage,
    .thumbnails {
        float: none;
        width: 100%;
    }
    .thumbnails {
        margin: 30px 0 0;
    }
    .thumbnails .small-pic li {
        width: 16.66%;
    }
    .rooms-header .price-box li {
        width: 33.33%;
    }
    .rooms-header .price-box li:nth-child(3),
    .rooms-header .price-box li:nth-child(5) {
        border-left: 1px dotted #b9b9b9;
    }
    .rooms-header .price-box li:nth-child(4) {
        border-left: none;
    }
    .rooms-header .price-box li:nth-child(3) {
        padding-top: 0;
    }
}

@media screen and (max-width: 600px) {
    .thumbnails .small-pic li {
        width: 33.33%;
    }
}

@media screen and (max-width: 400px) {
    .rooms-header .price-box li {
        width: 100%;
    }
    .rooms-header .price-box li + li {
        border: none;
        margin-left: inherit;
        margin-top: 10px;
    }
    .rooms-header .price-box li:nth-child(n) {
        border: none;
        padding-top: 0;
    }
}
