html {
  font-family: 'Roboto', sans-serif;
}

/* switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 17px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 13px;
  width: 13px;
  top: 2px;
  left: 3px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50%;
}

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

.checked {
  box-shadow: 0 0 1px #2196f3;
  /* background-color: #2196f3; */
}

.checked:before {
  -webkit-transform: translateX(11px);
  -ms-transform: translateX(11px);
  transform: translateX(11px);
}
/* end switch toggle */

/* loader */
.loader {
  color: #ffffff;
  font-size: 90px;
  text-indent: -9999em;
  overflow: hidden;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin: 72px auto;
  position: relative;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
  animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}
@-webkit-keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@keyframes load6 {
  0% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  5%,
  95% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
  10%,
  59% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em,
      -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em,
      -0.297em -0.775em 0 -0.477em;
  }
  20% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
      -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
      -0.749em -0.34em 0 -0.477em;
  }
  38% {
    box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
      -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
      -0.82em -0.09em 0 -0.477em;
  }
  100% {
    box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
      0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
  }
}
@-webkit-keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes round {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* end loader */

/* tooltip */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
/* end tooltip */

/* spinner */
.loading {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
/* end spinner */

/* marker cluster */
.custom-clustericon {
  background: var(--cluster-color);
  color: #000;
  border-radius: 100%;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.custom-clustericon::before,
.custom-clustericon::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;

  height: 100%;

  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: var(--cluster-color);
  opacity: 0.2;
  border-radius: 100%;
}

.custom-clustericon::before {
  padding: 7px;
}

.custom-clustericon::after {
  padding: 14px;
}

.custom-clustericon-1 {
  --cluster-color: #57fa79;
}

.custom-clustericon-2 {
  --cluster-color: #57fa79;
}

.custom-clustericon-3 {
  --cluster-color: #57fa79;
}

/* fix default styling for markdown */

.markdown a {
  text-decoration: underline;
}

.markdown a:link {
  color: #265301;
}

.markdown a:visited {
  color: #437a16;
}

.markdown a:focus {
  border-bottom: 1px solid;
  background: #bae498;
}

.markdown a:hover {
  border-bottom: 1px solid;
  background: #cdfeaa;
}

.markdown a:active {
  background: #265301;
  color: #cdfeaa;
}

.markdown ul {
  list-style-type: square;
  list-style-position: inside;
}

.markdown ol {
  list-style: decimal;
  list-style-position: inside;
}

.markdown h1 {
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.markdown h2 {
  display: block;
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.markdown h3 {
  display: block;
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.markdown h4 {
  display: block;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.markdown h5 {
  display: block;
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.markdown h6 {
  display: block;
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}

/* .gradient-gray-900-green-400 {
  background: rgb(26, 32, 44);
  background: linear-gradient(
    90deg,
    rgba(26, 32, 44, 1) 0%,
    rgba(36, 55, 57, 1) 20%,
    rgba(42, 69, 65, 1) 44%,
    rgba(52, 92, 78, 1) 59%,
    rgba(104, 211, 145, 1) 100%
  );
} */

.rot-0 {
  transform: rotate(0deg);
}
.rot-90 {
  transform: rotate(90deg);
}
.rot-180 {
  transform: rotate(180deg);
}
.rot-270 {
  transform: rotate(270deg);
}

.w-128 {
  width: 32rem;
}

.max-w-12 {
  max-width: 3rem;
}
.max-w-16 {
  max-height: 4rem;
}
.max-w-20 {
  max-width: 5rem;
}
.max-w-24 {
  max-width: 6rem;
}
.max-w-32 {
  max-width: 8rem;
}
.max-w-40 {
  max-width: 10rem;
}
.max-w-48 {
  max-width: 12rem;
}
.max-w-56 {
  max-width: 14rem;
}
.max-w-64 {
  max-width: 16rem;
}
.max-w-72 {
  max-width: 18rem;
}
.max-w-80 {
  max-width: 20rem;
}
.max-w-100 {
  max-width: 25rem;
}
.max-w-120 {
  max-width: 30rem;
}
.max-w-180 {
  max-width: 45rem;
}
.max-w-240 {
  max-width: 60rem;
}
.max-h-12 {
  max-height: 3rem;
}
.max-h-16 {
  max-height: 4rem;
}
.max-h-20 {
  max-height: 5rem;
}
.max-h-24 {
  max-height: 6rem;
}
.max-h-32 {
  max-height: 8rem;
}
.max-h-40 {
  max-height: 10rem;
}
.max-h-48 {
  max-height: 12rem;
}
.max-h-56 {
  max-height: 14rem;
}
.max-h-64 {
  max-height: 16rem;
}

.min-h-80 {
  min-height: 20rem;
}

.min-w-48 {
  min-width: 12rem;
}

.min-w-80 {
  min-width: 20rem;
}

.max-w-screen {
  max-width: 100vw;
}

.max-h-screen-50 {
  max-height: 50vh;
}

.max-h-screen-80 {
  max-height: 80vh;
}

.gradient-gray-900-green-400 {
  background: rgb(56, 178, 172);
  background: linear-gradient(
    90deg,
    rgba(56, 178, 172, 1) 0%,
    rgba(72, 187, 120, 1) 100%
  );
}

.gradient-gray-900-green-400-hover:hover {
  background: rgb(26, 32, 44);
  background: linear-gradient(
    90deg,
    rgba(26, 32, 44, 1) 0%,
    rgba(36, 55, 57, 1) 20%,
    rgba(42, 69, 65, 1) 44%,
    rgba(52, 92, 78, 1) 59%,
    rgba(104, 211, 145, 1) 100%
  );
}

.gradient-gray-800-green-400 {
  background: rgb(45, 55, 72);
  background: linear-gradient(
    90deg,
    rgba(45, 55, 72, 1) 20%,
    rgba(42, 69, 65, 1) 44%,
    rgba(52, 92, 78, 1) 59%,
    rgba(104, 211, 145, 1) 100%
  );
}

.border-box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.h-screen-25 {
  height: 25vh;
}

.h-screen-50 {
  height: 50vh;
}

.opacity-85 {
  opacity: 0.85;
}

.opacity-75 {
  opacity: 0.75;
}

/* green .bg-[#99FF99] */
.bg-\5B \23 99FF99\5D  {
  background-color: #99FF99;
}

/* aqua .bg-[#99FFFF] */
.bg-\5B \23 99FFFF\5D  {
  background-color: #99FFFF;
}

/* blue .bg-[#9999FF] */
.bg-\5B \23 9999FF\5D  {
  background-color: #9999FF;
}

/* purple .bg-[#FF99FF] */
.bg-\5B \23 FF99FF\5D  {
  background-color: #FF99FF;
}

/* red .bg-[#FF9999] */
.bg-\5B \23 FF9999\5D  {
  background-color: #FF9999;
}

/* yellow .bg-[#FFFF99] */
.bg-\5B \23 FFFF99\5D  {
  background-color: #FFFF99;
}
