@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap");
/*body {
    background-color: aqua;
}*/
.categorial-buttons {
  margin-top: 10px;
}

.button-category {
  margin: 1em;
  padding: 1em;
  transition: 0.3s all ease;
  border: none;
  background: none;
}
.button-category:focus {
  outline: none;
}

.button-category span {
  display: flex;
  justify-content: center;
  margin: 1em;
}

.button-category:hover {
  cursor: pointer;
  opacity: 0.6;
}

.button-active {
  color: #7fcd91;
}
.button-active path,
.button-active line,
.button-active polyline {
  stroke: #7fcd91;
}

.button-activated {
  opacity: 0.3;
}
.button-activated:hover {
  cursor: not-allowed;
  opacity: 0.3;
}

/* entire container, keeps perspective */
.flip-container {
  margin-top: 20px;
  perspective: 1000px;
}

.flip-container,
.front,
.back {
  width: 1000px;
  height: 450px;
}

/* flip speed goes here */
.flipper {
  position: relative;
  transition: 0.6s;
  transform-style: preserve-3d;
}

/* hide back of pane during swap */
.front,
.back {
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
}

/* front pane, placed above back */
.front {
  z-index: 2;
  /* for firefox 31 */
  transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
  transform: rotateY(-180deg);
}

.vertical.flip-container {
  position: relative;
}

.vertical .back {
  transform: rotateX(180deg);
}

.vertical.flip-container .flipper {
  transform-origin: 100% 225px;
  /* half of height */
}

.flip-container.flip .flipper {
  transform: rotateX(-180deg);
}

.map svg {
  height: 350px;
  margin-top: 50px;
}

.macro {
  visibility: hidden;
  transition: 0.3s all ease;
  opacity: 0;
  font-size: 12px;
}

.showMacro {
  visibility: visible;
  opacity: 0.7;
}

.macroSquare {
  visibility: visible;
  transition: 1s all ease;
}

.options--macro,
.options--value {
  position: fixed;
  z-index: 1;
  top: 5px;
  left: 5px;
}

.options--value {
  top: 40px;
}

.pulse .switch {
  animation: pulse 2s;
  border-radius: 34px;
}
.pulse .slider.round {
  border-color: #7fcd91;
}
.pulse .slider.round:before {
  background: #7fcd91;
}

.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(127, 205, 144, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(127, 205, 144, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(127, 205, 144, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(127, 205, 144, 0.4);
    box-shadow: 0 0 0 0 rgba(127, 205, 144, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(127, 205, 144, 0);
    box-shadow: 0 0 0 20px rgba(127, 205, 144, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(127, 205, 144, 0);
    box-shadow: 0 0 0 0 rgba(127, 205, 144, 0);
  }
}
rect.meso:hover {
  cursor: pointer;
  transition: 0.3s all ease;
  fill: #ffc362;
}

.tooltip {
  position: absolute;
  z-index: 10;
  visibility: hidden;
  font-size: 14px;
}

#path button {
  cursor: pointer;
  transition: 0.3s all ease;
}

#path button:hover {
  color: #7fcd91;
}

.map-legend {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: -100px;
}

.map-legend__indication {
  display: flex;
  justify-content: space-between;
  width: 150px;
  margin-top: -5px;
}

.map-legend__sub {
  margin-top: -7px;
  margin-bottom: 8px;
  opacity: 0.7;
  font-size: 15px;
}

.map-legend__gradient {
  width: 150px;
  height: 10px;
  background: #7fcd90;
  background: linear-gradient(90deg, rgba(127, 205, 144, 0) 0%, rgba(127, 205, 144, 0.5) 50%, #7fcd90 100%);
}

h3 {
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 600;
}

.treemap rect.rect {
  cursor: pointer;
  transition: 0.3s all ease;
}

.treemap svg {
  width: 1000px;
  height: 0px;
  transition: 0.8s all cubic-bezier(0.65, 0.05, 0.36, 1);
  background: rgba(127, 205, 144, 0.69);
}

.treemap--active svg {
  height: 450px;
}

.treemap--loading {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 1000px;
  height: 450px;
  -webkit-animation: AnimationName 10s ease infinite;
  -moz-animation: AnimationName 10s ease infinite;
  animation: AnimationName 10s ease infinite;
  background: linear-gradient(270deg, #80e0a0, #e7e5e5, #99d6b2, #e7e5e5);
  background-size: 800% 800%;
}
.treemap--loading h3 {
  margin-bottom: 0px;
  opacity: 0.8;
}
.treemap--loading p {
  opacity: 0.6;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 91%;
  }
  50% {
    background-position: 100% 10%;
  }
  100% {
    background-position: 0% 91%;
  }
}
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 91%;
  }
  50% {
    background-position: 100% 10%;
  }
  100% {
    background-position: 0% 91%;
  }
}
@keyframes AnimationName {
  0% {
    background-position: 0% 91%;
  }
  50% {
    background-position: 100% 10%;
  }
  100% {
    background-position: 0% 91%;
  }
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  bottom: 1px;
  left: 2px;
  width: 14px;
  height: 14px;
  content: "";
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: white;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 996px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.vis-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 996px;
}

.options--map {
  display: flex;
  align-items: center;
}

.logo {
  height: 25px;
}

.share {
  border: none;
  background: none;
}

.slider:before {
  background: #494949;
}

input:checked + .slider {
  background: none;
}

.slider.round {
  border: #494949 2px solid;
}

.showmap-label {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
}

#showMap {
  margin-right: 25px;
}

#zoom {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  cursor: pointer;
  transition: 0.3s all ease;
  border: 2px solid #494949;
  border-radius: 7px;
  background: none;
}
#zoom span {
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 600;
}
#zoom svg {
  width: 21px;
  height: 20px;
}
#zoom svg line,
#zoom svg path {
  transition: 0.3s all ease;
}
#zoom:focus {
  outline: none;
}
#zoom:hover {
  color: #fff;
  background: #494949;
}
#zoom:hover line,
#zoom:hover path {
  stroke: #fff;
}

.btn {
  height: 34px;
  margin-left: 5px;
  padding: 5px 8px;
  cursor: pointer;
  transition: 0.3s all ease;
  transition: 0.3s all ease;
  text-transform: uppercase;
  border: 2px solid #494949;
  border-radius: 7px;
  background: none;
  font-weight: 600;
}
.btn:focus {
  outline: none;
}
.btn.btn-active, .btn:hover {
  color: #fff;
  background: #494949;
}

.options--map {
  position: relative;
}

#showMacro {
  position: absolute;
  right: 0;
  visibility: hidden;
  opacity: 0;
}

.share {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: 0.3s all ease;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.share img {
  height: 25px;
  margin-right: 5px;
}
.share:focus {
  outline: none;
}
.share:hover {
  color: #7fcd91;
}

#path {
  display: flex;
  align-items: center;
}
#path button {
  padding-right: 10px;
  padding-left: 3px;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
}
#path img {
  height: 20px;
}

.map svg {
  width: 1000px;
  height: 450px;
}

body {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.map-bg {
  position: fixed;
  z-index: -1;
  top: -20px;
  right: 70px;
  left: 0;
  width: 960px;
  margin: 0 auto;
  transition: 0.6s all ease;
  opacity: 0.3;
}

.map-bg--pos2 {
  top: -170px;
  right: 70px;
  left: -20px;
  width: 960px;
}

.categorial-buttons {
  transition: 0.6s all ease;
}

.isFlipped #showMacro {
  visibility: visible;
  opacity: 1;
}
.isFlipped .categorial-buttons,
.isFlipped #zoom {
  visibility: hidden;
  opacity: 0;
}
.isFlipped .map-bg {
  opacity: 1;
}

/*# sourceMappingURL=/src.e31bb0bc.css.map */