/*
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

body {
  background-color: #333;
  color: #fff;
}

.main {
  margin: 0 auto;
  padding: 8rem 0;
}

.main__header {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 4rem;
}

.map {
  width: 80rem;
  height: 60rem;
  background-color: #333;
  grid-column: 2 / 3;
}

.main__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 1.6rem;
}

[class*='copyrights-pane'] {
  display: none !important;
}

.main__info {
  border: 1px solid #fff;
  border-right: none;
  padding: 1.6rem;
  min-width: 100%;
}

.info__container li a:link,
:visited {
  color: #fff;
}

.info__container li a:hover,
:active {
  color: #fff;
}

.info__caption {
  font-size: 2.4rem;
  font-weight: bold;
}

.parameter__caption {
  font-size: 2rem;
  font-weight: bold;
}

.info__container li a {
  font-size: 1.8rem;
}

.switch-container {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-bottom: 1.4rem;
}

.switch-container:last-child {
  margin-bottom: 0;
}

.switch-container span {
  font-size: 1.8rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.radius-header {
  display: block;
}

#input-radius {
  border: 1px solid #858585;
}

.radius-btn {
  border: 1px solid #858585;
}

.main__secondary-info {
  border: 1px solid #fff;
  border-left: none;
  padding: 1.6rem;
  min-width: 100%;
}

.secondary-info__obj {
  cursor: pointer;
  color: #fff;
  font-size: 1.8rem;
}

.btns-container {
  display: flex;
  justify-content: center;
}
