* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.4
}

b, strong {
    font-weight: 400;
}

#map {
    height: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.nav-trigger {
    position: fixed;
    right: 15px;
    top: 10px;
    z-index: 30;
    cursor: pointer;
    width: 20px;
    height: 25px;
}

.nav-trigger span, .nav-trigger span:before, .nav-trigger span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 3px;
  width: 20px;
  background: #CB3838;
  position: absolute;
  top: 10px;
  display: block;
  content: '';
}

.nav-trigger span:before {
  top: -8px;
}

.nav-trigger span:after {
  bottom: -8px; 
}

.nav-trigger span, .nav-trigger span:before, .nav-trigger span:after {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}

.nav-trigger.nav-trigger-active span {
  background-color: transparent;
}
.nav-trigger.nav-trigger-active span:before, .nav-trigger.nav-trigger-active span:after {
  top: 0;
}

.nav-trigger.nav-trigger-active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-trigger.nav-trigger-active span:after {
   -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.rightBox {
    position: fixed;
    right: 10px;
    top: 45px;
    bottom: 0;
    height: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 350px;
    transition: all 0.2s ease-in;
}

.nav-menu-close {
  transition: all 0.2s ease-in;
  right: -350px;
}

.textBox {
    background: rgba(255,255,255,0.8);
    padding: 20px;
}

.topText {
    border-radius: 10px 10px 0 0;
}

#pointInfo {
    border-radius: 0 0 10px 10px;
}

#linksList ul {
    padding: 0;
}

#linksList li {
    list-style-type: none;
}

#linksList a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
}

#linksList a svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

#linksList a:hover, #linksList .selected-menu {
    color: #CB3838;
    transition: all 0.1s ease-in;
}

#linksList a:hover svg {
    fill: #CB3838;
}

#slide {
}

input[type=range]{
    -webkit-appearance: none;
    position: fixed;
    bottom: 15px;
    width: 40%;
    left: 30%;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 4px;
    background: #777;
    border: none;
    border-radius: 3px;
    box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.1);
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #CB3838;
    box-shadow: 2px 2px 4px 1px rgba(0,0,0,0.25);
    margin-top: -8px;
    cursor: pointer;
}

input[type=range]:focus {
    outline: none;
}

.rightBox::-webkit-scrollbar, .scrollbarDiv::-webkit-scrollbar {
    width: 9px;
    height: 16px;
}
 
.rightBox::-webkit-scrollbar-track, .scrollbarDiv::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background: white;
}
 
.rightBox::-webkit-scrollbar-thumb, .scrollbarDiv::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background: rgba(203,56,56,0.9);
}

.rightBox::-webkit-scrollbar-thumb, .scrollbarDiv::-webkit-scrollbar-thumb {
    border-radius: 10px;
}

.leaflet-popup-content p {
    max-height: 200px;
    overflow: auto;
}