﻿@charset "utf-8";

.line {
    height:1px;
    background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,0255,255,0));
    left:0;
    right:0;
    margin:auto;
    width:calc(100% - 100px);
}

.slideshow {
    text-align: center;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    width: 100%;
}

.slideshow .display {
    display: inline-block;
    width: 60%;
    font-size: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: black;
}

.slideshow .display > .wrapper {
    cursor: pointer;
    /*position: absolute;
    white-space: nowrap;
    top:0;*/
}

.slideshow .display > .wrapper > div {
    position: absolute;
    /*display: inline-block;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width:100%;
}

.slideshow .display img {
    display: block;
    width: 100%;
    visibility: hidden;
}

.slideshow .display .navBtn {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    z-index: 3;
    position: absolute;
    width: 20px;
    height: 50px;
    line-height: 50px;
    top:0;
    bottom:0;
    margin: auto;
}

.slideshow .display .prev {
    left: 1%;
}

.slideshow .display .next {
    right: 1%;
}

.slideshow .indicator {
    width: 100%;
    text-align: center;
    line-height: 40px;
}

.slideshow .indicator > div {
    vertical-align: middle;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform-origin: 16px 17px;
}

.slideshow .indicator > div.current {
    animation: rotate 0.4s linear infinite;
}

@keyframes rotate {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

.stages {
    background-image: url("img/bg-seamless_01.jpg");
    background-repeat: repeat-y;
    background-position: center top;
}

.stage {
    font-family: Montserrat-Regular, Arial, sans-serif;
    font-size: 24px;
}

.stage.A .roomDetails {
    text-align: center;
    margin: auto;
    padding: 4vw 4vw;
}

.stage.A .roomDescription {
    vertical-align: middle;
    text-align: left;
    line-height: 1.6;
    width: 54%;
    display: inline-block;
}

.stage.A .btnsArea {
    background-color: #0A1E14;
    width: 30%;
    min-width: 290px;
    vertical-align: middle;
    display:inline-block;
    border-style: solid;
    border-width: 1px;
    border-color: #464646;
    margin-left: 2vw;
}

.stage.A .roomBtn {
    background-color: #566956;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 5px;
    margin: 20px 10px;
}

.stage.A a {
    text-decoration: none;
    color: white;
}

.stage.B {
    padding-bottom: 30px;
}

.equipContent {
    text-align: left;
    padding-bottom: 30px;
    padding-left: 5vw;
}

.equipment {
    display: inline-block;
    width: 30%;
    min-width: 302px;
    height: auto;
    text-align: left;
    padding-top: 30px;
}

.equipment > img {
    vertical-align: top;
    display: inline-block;
    padding-right: 15px;
}

.equipment > div {
    width: 85%;
    vertical-align: top;
    display: inline-block;
}

.backtorooms {
    text-align: center;
    height: 80px;
}

.backtorooms > a {
    color: white;
    text-decoration: none;
}

.backtorooms > a:hover {
    text-decoration: underline;
    font-size: 25px;
}

@media only screen and (max-width: 1024px) {
    .slideshow .display {
        width: 90%;
    }

@media only screen and (max-width: 800px) {
    
    .stage {
        font-size: 18px;
    }
    
    .stage.A .roomDescription {
        width: 90%;
        padding-bottom: 10px;
    }

    .stage.A .btnsArea {
        margin-left: 0;
    }

    .backtorooms > a:hover {
    font-size: 19px;
}
}

@media only screen and (orientation: landscape) {
    .slideshow .display {
        width: 55%;
    }
}