@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700);
@import url(font-awesome.css);
@-ms-viewport { width: device-width; }
/* -------------------------------- 
global
-------------------------------- */
* { padding: 0; margin: 0; }
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html { height: 100%; -webkit-font-smoothing: antialiased;  -moz-osx-font-smoothing: grayscale;}
@media only screen and (min-device-width: 800px) { html { overflow: hidden; } }
body { height: 100%; overflow: hidden; background-color: #000; font-size: 100%; font-family: 'Lato', Arial, sans-serif;}

a { color: #666; text-decoration: none; outline: 0;}

.overflow-hidden { overflow: hidden; }

/* -------------------------------- 
container
-------------------------------- */
div#container { 
    height: 100vh;     
    width: 100%; 
    margin: 0; 
}


/* -------------------------------- 
Main components 
-------------------------------- */

#main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  height: 100vh;
  width: 100%; 
  position: relative;  
  z-index: 2;  
  background: #ccc;
}

div#tourDIV {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* -------------------------------- 
offcanvas
-------------------------------- */
.logo {
    display: block;
    margin: 0 auto;  
    margin-top: 15px;  
    margin-bottom: 15px;  
    width: 169px;
    height: 79px;
    background-image: url(../img/logo.png);
    background-size: cover;
}

/* buttons offcanvas in content --------------------- */
.toggle-button {
  position: absolute;
  left: 0;
  top: 0;
  height: 48px;
  width: 48px;  
  padding: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background: rgba(255,255,255,0.7);
  color: rgba(0,0,0,0.7);
  z-index: 99;
  font-size: 24px;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0px 0px 5px #555;
}

.toggle-button.toggle-search{
  top: 80px;
}

.toggle-button.toggle-menu{
  top: 140px;
}


/* offcanvas content --------------------- */

.offcanvas-content {
    position: fixed;  
    left: -80vw;
    top: 0;
    padding: 0;
    margin: 0;
    height: 100vh;  
    z-index: 999;
    width: 80vw; 
    overflow: hidden;
    box-shadow: 0px 0px 5px #555;
    transition: all 0.5s ease;
}
.offcanvas-content-overflow {
  /*  height: 65vh;
    margin-bottom: 50px;*/
    height: calc(100vh - 250px);
    overflow-y: auto;
}

.offcanvas-content.offcanvas-content-open {
    left: 0px;
}


/* offcanvas nav  --------------------- */

.offcanvas-nav {
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;  
  margin: 0;
  padding: 5px;  
  background: rgba(0,0,0,0.05);  
  color: #666
}

.offcanvas-nav .toggle-close {
  float: right;
  cursor: pointer;  
}

.offcanvas-nav .toggle-search{
  float: left;
  cursor: pointer;  
}

.offcanvas-nav .toggle-menu{
  float: left;
  cursor: pointer;  
}

/* menu panos --------------------- */

div#panoramasDIV {
    margin: 0;
    padding: 60px 0 0 0;    
    background-color: white;
    color: #666
} 

.offcanvas-content .ul-navigation {
  margin: 0;
  list-style: none;
}

.offcanvas-content .ul-navigation a {
font-size: 1.5em;
text-decoration: none;
}
.offcanvas-content .ul-navigation a:focus{
color: #a4846d;
}

.offcanvas-content .ul-navigation li{
  border-top: 1px solid #ddd;
}


.offcanvas-content .ul-navigation li:hover{
    background: #eee;
}

.offcanvas-content .sub-menu {
  margin: 0;
  padding: 0  ;
  display: none;

}

.offcanvas-content .sub-menu li{
    background: #FCF6F5;
  border-top: 1px solid #ddd;
  
}

.offcanvas-content a {
  display: block;
  line-height: 4em;
  padding: 0 16px 0 32px;
  color: #888;
}

.offcanvas-content a.current { 
  color: darkred;
}
.no-touch .offcanvas-content a:hover {
 
}


/* style menu items which have a submenu  */
.offcanvas-content .item-has-children > a {
  position: relative;
  text-transform: uppercase;
  font-weight: 600;  
  /* this is the right arrow to show that the item has a submenu  */
}
.offcanvas-content .item-has-children > a::after {
  font-family: "FontAwesome";
  content: "\f054";
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1em;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.offcanvas-content .item-has-children > a.submenu-open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -o-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  
}


/* -------------------------------- 
search components 
-------------------------------- */

div#searchDiv {
    margin: 0;
    padding: 60px 10px;    
    background-color: white;      
}
#mainForm {
    margin-bottom: 20px;
}
#resultList, #resultDiv {
        padding-top: 20px;
}
#mainForm.hasScrolled {
        position: fixed;
        top: 0px;
        left: 0px;
        padding: 20px;
        background-color: white;
        max-width: 300px;
        z-index: 99;
}
#mainForm #fixedResultsHeader {
        display: none;
}
#mainForm.hasScrolled #fixedResultsHeader {
        display: block;
        padding-top: 20px;
}
.list-group-item {
        border: none;
        border-top:1px solid #eee;
        padding: 10px 10px;
        overflow: hidden;
        text-overflow: ellipsis;
}
.list-group-item:first-child {
        border-radius: 0px;
}
.list-item-thumb {
        width: 100%;
}
/*fix box sizing*/
div.kolorBox,
ul.kolorMenu li.kolorMenuItem>p {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    -ms-box-sizing: content-box;
    -o-box-sizing: content-box;
}

/* #Media Queries
================================================== */

/* Bigger than full-hd 1920 (devices and browsers) */
@media only screen and (min-width: 1920px) {

    .offcanvas-content { width: 300px; }
    
}

/* Smaller than full-hd 1920 (devices and browsers) */
@media only screen and (max-width: 1919px) {

    .offcanvas-content { width: 300px; }
    
}

/* Mediun 1280 to full-hd 1920 (devices and browsers) */
@media only screen and (min-width: 1280px) and (max-width: 1919px) {

    
}

/* Smaller than medium 1280 (devices and browsers) */
@media only screen and (max-width: 1279px) {

    .offcanvas-content { width: 300px; }
    
}

/* Standard 960 to medium 1280 (devices and browsers) */
@media only screen and (min-width: 960px) and (max-width: 1279px) {

    
}

/* Smaller than standard 960 (devices and browsers) */
@media only screen and (max-width: 959px) {

    .offcanvas-content { width: 300px; }
    
}

/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
 
    
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
   
    .offcanvas-content { width: 250px; }

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {

    
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {

    
}

.logo {cursor:pointer }