
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }

 #ui {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    pointer-events: none;
    transition: all .5s;
 }

 #ui.hide {
    top: 50%;
 }

 #menu {
    position: absolute;
    bottom: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
 }

 #menu-wrapper {
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    cursor: pointer;
    color: white;
 }

 #menu-wrapper>div {
    padding: 0 5px;
 }

 #menu-wrapper img {
    width: 50px;
 }

 #menu-wrapper span {
    display: block;
    white-space: nowrap;
    font-size: 12px;
 }

 #thumbs {
    width: 100%;
    left: 0;
    bottom: 100px;
    position: absolute;
    background-color: transparent;
    padding: 10px;
    background-color: rgba(0, 175, 180,0.6);
    transition: all .3s;
 }

 #thumbs.hide {
    bottom: -500px;
 }

 #thumbs .swiper-slide {
    width: 140px;
    pointer-events: all;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    border: 5px solid transparent;
    transition: all .4s;
    box-sizing: border-box;
 }

 #thumbs .current-thumb {
    border: 5px solid white;
    transition: all .4s;
 }

 #thumbs .swiper-slide img {
    width: 100%;
 }

 #thumbs .swiper-slide p {
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: white;
 }


 #mp0 {
    position: fixed;
    left: 10px;
    top: 10px;
    pointer-events: all;
    transform-origin: left top;
    cursor: pointer;
 }

 #mp0 img {
    width: 220px;
    height: auto;
 }

 #map0-point-wrapper {
    transform: translate(0%, 0%) scale(1);
 }

 #radar {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px;
    transform: translate(-50%, -50%) scale(0.5);
    border-radius: 50%;
    overflow: hidden;
    background-color: #21E1F2;
    box-shadow: 0 0 5px 5px white;
    transition: all .3s;
 }

 #mp0 .map-point {
    visibility: hidden;
 }

 #ui.hide #topmenu {
    display: none;
 }

 #topmenu {
    position: fixed;
    right: 10px;
    top: 30px;
    user-select: none;
    pointer-events: all;
    cursor: pointer;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 5em;
    transform-origin: right top;
    transform: scale(0.7);
 }

 #topmenu img {
    width: 100%;
    height: 100%;
 }

 #ui.hide #hotspots {
    right: -120%
 }

 #hotspots {
    position: fixed;
    right: -600px;
    top: 10px;
    width: 300px;
    height: auto;
    max-height: calc(100% - 20px);
    background-color: rgba(0, 175, 180,0.6);
    color: white;
    text-align: center;
    pointer-events: all;
    display: flex;
    flex-direction: column;
    transition: all .5s;
    border-radius: 10px;
    z-index: 999;
    padding: 5px 5px 5px 5px;
    box-sizing: border-box;
 }

 #hotspots.show {
    right: 10px;

 }

 #hotspots [close] {
    border-bottom: 1px solid #F8E1C0;
    font-size: 24px;
    padding: 5px;
    user-select: none;
    cursor: pointer;
 }

 #hotspots [list] {
    flex-grow: 1;
    overflow: hidden;
    padding: 10px;
    position: relative;
 }

 #hotspots [list] li {
    list-style: none;
    line-height: 26px;
    font-size: 16px;
    padding-top: 5px;
    transition: all .5s;
    cursor: pointer;
 }

 #hotspots [list] .swiper-scrollbar-drag {
    background-color: #e5cdb1;
    width: 2px;
    margin-left: 3px;
    border-radius: 5px;
 }

 #hotspots [list] li:hover {
    background-color: rgba(229, 205, 177, 0.2);
 }

 @media screen and (max-width: 740px) {
    /* #mp0 {
       transform: rotate(90deg) translateY(-100%);
    } */

    #hotspots {
       right: -120%;
       border-radius: 0;
       padding: 5px 5px 20px 5px;
    }

    #hotspots.show {
       width: 100%;
       height: 100%;
       top: 0;
       right: 0;
    }
 }

 #_stat {
    color: white;
    padding: 5px;
 }
