* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  background-color: #fafaf0; }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px); }
  80% {
    transform: translateX(12px); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes flickerSizing {
  0% {
    opacity: 0.5;
    transform: scale(0.9); }
  50% {
    opacity: 0.7;
    transform: scale(0.95); }
  100% {
    opacity: 0.5;
    transform: scale(0.9); } }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #444; }

.leaflet-popup-content h4 {
  text-align: center;
  margin: 0;
  font-size: 1.5rem;
  color: #1a8e9a;
  font-weight: 400; }

.accordion-header {
  position: relative;
  padding-left: 45px;
  text-align: center; }

.accordion-body label {
  cursor: pointer;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  transition: background-color 0.3s ease-in-out; }
  .accordion-body label:hover {
    background-color: #6eda71; }

.accordion-body input[type="radio"] {
  margin: 0.5rem 1rem 0 0; }
  .accordion-body input[type="radio"]:checked {
    background-color: white;
    font-size: 2rem; }

.legend-icon {
  position: absolute;
  left: 7px;
  top: calc(50% - 15px);
  width: 30px;
  z-index: 2; }

.accordion-button {
  padding-left: 45px;
  z-index: 1; }

#selected-point {
  display: none;
  position: fixed;
  bottom: 0px;
  right: 0px;
  width: 300px;
  min-height: 80px;
  z-index: 2; }

#selected-name {
  display: block; }

#selected-londd {
  display: inline-block;
  width: 48%; }

#selected-latdd {
  display: inline-block;
  width: 48%; }

#side_panel {
  display: none;
  height: 100vh;
  width: 100vw;
  background-color: #fafaf0;
  padding: 5rem 10%;
  position: absolute;
  z-index: 1010; }

#categories-panoramas,
#categories-geosites,
#categories-partners {
  display: none; }

.panorama-popup .leaflet-popup-content-wrapper {
  background-color: #1b919d;
  color: white;
  position: relative; }

.panorama-popup .open-vtour {
  position: absolute;
  opacity: .3;
  top: 3rem;
  left: 6rem;
  pointer-events: none;
  animation: flickerSizing 1s infinite; }

.panorama-popup h4 {
  color: white;
  font-size: 1.4rem; }

#map-container {
  width: 100%; }

#mapdiv {
  height: 100vh;
  width: 100%;
  background-color: #1b919d; }

#footer {
  height: 75px;
  background-color: darkgrey; }

#PanoramasZoomButtons {
  overflow: scroll; }

.attraction {
  margin: 2px 0px;
  white-space: normal;
  height: auto;
  display: block;
  background-color: #1a8e9a;
  padding: 3px 3px;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42857143;
  border: 0px solid transparent;
  border-radius: 0px; }

.leaflet-popup-content hr {
  margin: 1px 0 3px 0; }

.map-categories__title {
  font-size: 2.1rem;
  padding: 1rem 2rem;
  text-align: center; }

.map-categories__icon {
  width: 2.5rem;
  height: auto;
  margin: 0 1.3rem; }

@media only screen and (max-width: 720px) {
  .leaflet-control-layers {
    display: none; } }

/********************************************* components - navigation *********************************************************************************/
.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: white;
  width: 7rem;
  height: 7rem;
  position: fixed;
  top: 1rem;
  left: 6rem;
  border-radius: 50%;
  z-index: 1002;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer; }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 1.5rem;
  left: 6.5rem;
  background-image: radial-gradient(#fafaf0, #6eda71);
  z-index: 1000;
  transition: transform 0.6s cubic-bezier(0.9, 0, 0.84, 0); }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  opacity: 0;
  width: 0;
  transition: all 0.6s cubic-bezier(0.9, 0, 0.84, 0); }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  width: 35rem;
  text-align: center;
  display: inline-block;
  font-size: 2rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #0c5861;
  text-decoration: none;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, white 50%);
  background-size: 200%;
  transition: all 0.4s ease-in-out;
  box-shadow: 1rem 0rem 20rem rgba(36, 36, 36, 0.3); }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #242424;
  transform: translateX(1rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(120); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #242424;
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -0.8rem; }
  .navigation__icon::after {
    top: 0.8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(45deg);
  top: 0; }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(135deg);
  top: 0; }

.close-side-panel {
  position: absolute;
  right: 50px;
  top: 12px;
  padding: 10px 20px 10px 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 1rem 0rem 5rem rgba(0, 0, 0, 0.3);
  cursor: pointer; }
  .close-side-panel__text {
    position: relative;
    text-decoration: none;
    color: #242424;
    font-size: 1.8rem;
    transition: all 0.3s ease-in-out;
    cursor: pointer; }
    .close-side-panel__text:before {
      position: absolute;
      top: -5px;
      left: -20px;
      content: "X";
      color: red; }
  .close-side-panel:hover {
    background-color: #242424; }
  .close-side-panel:hover .close-side-panel__text {
    color: white; }

.form-control {
  padding: 1rem 2rem;
  font-size: 1.8rem;
  overflow-x: auto;
  position: relative; }
  .form-control::after {
    position: absolute;
    right: 15px;
    top: 45%;
    z-index: 999;
    content: "";
    width: 1.1rem;
    height: 0.7rem;
    background-color: white;
    clip-path: polygon(0% 20%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0% 80%); }

    