/* pouze pro stránku s mapou */



body {
  overflow: hidden;
}


/* velikost mapy */
.map {
  min-height: 100%;
}

/* pozadí inventáře */
.inventory-background {
  background-color: #eeefef;
  border-left: 1px solid #d2d2d2;
  border-top: 0px solid #d2d2d2;
}


/* obsah inventáře */
.inventory-content {
    max-height: calc(100% - 80px - 60px);
    overflow-y: auto;
    padding: 5px 0px;


}

/* obsah mapy */
.map-content {
    min-height: calc(100% - 80px - 60px);
    overflow-y: hidden;
}

/* obsah těla */
.body-content {
    max-height: calc(100% - 80px - 60px);
    overflow-y: hidden;
    
    
    /*margin-top: 60px;*/
}



/* navigace 
header {
    width: 100%;
    height: 60px;
    background: #0a5091;
    position: fixed;
    top: 0;
    border-bottom: 1px solid #063a6b;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
}*/

.blue-color {
    background-color: #0a5091 !important;
}


/* patička s tlačítkem */
footer {
    width: 100%;
    /*height: 80px;*/
    background: #fdd12f;
    /*position: fixed;*/
    bottom: 0;
    text-align: center; 
    border-top: 1px solid #c9a623;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 1rem;
    /*z-index: 9999;*/
    
}


/* tlačítko hledat */
.search-box,.close-icon,.search-wrapper {
  position: relative;
}

.search-box {
  width: 100%;
  border: 0px solid #ccc;
  outline: 0;
  padding-top: 12px;
}
.search-box:focus {
  border: 0px solid #bebede;
  outline: none;
}




.close-icon {
  /*
  position: absolute;
  margin-right: 11px;
  margin-top: -10px
  padding: 5px;
  right: 0;
  display: inline-block;
  vertical-align: left;
  outline: 0;
  */
  background-color: #0a5091;
  color: white;
  width: 46px;
  height: 46px;
  border:1px solid transparent;
  cursor: pointer;
  font-size: 20px;
}


/* formát značek v mapě */
.cluster div {
    position: absolute;
    border-radius: 0% !important;
    background-color: #eef0ef !important;
    border: 1px solid #000 !important;
    color: black !important;
    background-clip: padding-box;
    text-align: center;
    font-weight: 700;
    font-size: 17px;
}

.cluster div img {
  display: none !important;
}


.map-img {
  height:60px !important;
  margin: 2px;
  margin-right: 6px;
  float: left;
}

.map-text {
  padding-top: 6px;
  padding-left: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: 'Roboto';

}

.map-text-likes {
  padding-top: 10px;
  padding-left: 6px;
  font-weight: 500;
  font-size: 0.7rem;
  font-family: 'Roboto';
}


.map-card {
  padding: 6px;
  cursor: pointer;
}

.triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  margin-left:20px;
  margin-top:6px;
  border-color: #eef0ef transparent transparent transparent;
}

.triangle-border {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 11px;
  margin-top:6px;
  margin-left:19px;
  border-color: #000 transparent transparent transparent;
}



