@font-face {
    font-family: 'KLM-font';
    src: url('NoaLTPro-Light.otf');
}

/**
 * General Styles
 */

html {
    -webkit-text-size-adjust: 100%;
    font-family: 'KLM-font';
}

body {
    margin: 0;
    background: #212121;
}

img {
    display: block;
    width: 100%;
}

p {
    margin: 0;
    padding: 0;
}

.stage {
    position: relative;
    width: 300px;
    height: 600px;
    background: #00a1de;
    overflow: hidden;
    
    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
           -o-user-select: none;
              user-select: none;
    
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.border {
    position: absolute;
    background: #fff;
    z-index: 10;
}

.border-right {
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
}
.border-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
}
.border-left {
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}


/**
 * Banner Flat Styles
 */

h1 {
    color: #1d9eda;
    font-weight: 100;
    font-size: 36px;
    text-align: center;
    line-height: 1.25em;
    padding: 0;
    margin: 0;
}

p {
    color: #1d9eda;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    padding: 15px 5px;
    
    z-index: 9;
}

.footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 130px;
    
    z-index: 8;
}

.clouds-bgr {
    position: absolute;
    left: 0;
    bottom: 0;
    
    z-index: 0;
}

.btn-CTA {
    position: absolute;
    top: 500px;
    left: 20px;
    
    font-family: 'KLM-font';
    font-size: 16px;
    background-image: linear-gradient(180deg, #e37222 0, #dd430e);
    background-image: -webkit-linear-gradient(90deg, #e37222, #dd430e);
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 7px 18px;
    overflow: hidden;
    cursor: pointer;
    
    z-index: 11; 
}

.btn-CTA::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 50%;
    background: #fff;
    top: 0;
    left: 0;
    opacity: .2;
}

/**
 * Banner 3D Styles
 */

#webgl {
    position: absolute;
    top: 170px;
    width: 300px;
    height: 320px;
    overflow: hidden;
    
    z-index: 1;
}

canvas {
    display: block;
}


/**
 * Dynamic Content Styles
 */

.marker {
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url(../img/marker.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
    cursor: pointer;
}

.popup {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    
    z-index: 10;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: rgba(255, 255, 255, .5);*/
    
    z-index: 1;
}

.popup-box {
    position: absolute;
    width: 254px;
    left: 50%;
    top: 50%;
    margin-left: -127px;
    margin-top: -120px;
    background-color: rgba(255, 255, 255, .8);
    border-radius: 5px;
    padding: 10px;
    
    z-index: 2;
    
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

.popup-image {  
    width: 100%;
    height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.popup-text {
    width: 100%;
    padding-top: 5px;
}

.popup-text::after {
    content: "";
    display: table;
    clear: both;
}

.popup-text-left {
    float: left;
    width: 58%;
}

.popup-text-right {
    float: left;
    width: 42%;
}

.popup-country {
}

.popup-city {
    font-size: 22px;
}

.popup-price-text {
    text-align: right;
}

.popup-price-amount {
    font-size: 22px;
    text-align: right;
}

.popup-price-amount sup {
    font-size: 12px;
}

/**
 * Active Styles
 */

.clouds-bgr,
#webgl,
.popup-box {
    transition: all .3s ease-out;
}

.popup-box {
    opacity: 0;
    transform: scale(.85);
}

.popup-active .popup-box {
    opacity: 1;
    transform: scale(1);
}

.popup-active .clouds-bgr {
    z-index: 1;
    
    transform: scale(1.3);
    
}

.popup-active #webgl {
    z-index: 0;
    
    transform: scale(.85);
}

/**
 * Preloader
 */

/*#preloader {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
    box-sizing: border-box;
}
#preloader img {
    position: absolute;
    display: block;
    width: 50px;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -35px;
}*/