/* Dark mode toggle */
.container {
  display: none;
  width: 100%;
  height: 60px;
  background: var(--color-secondary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.container h1 {
  color: var(--font-color);
  font-family: sans-serif;
}
.container button {
  color: var(--font-color);
  background: var(--color-primary);
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
}

/* The switch - the box around the slider */
.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.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 0px 15px #2020203d;
  background: white url("../images/night.png");
  background-repeat: no-repeat;
  background-position: center;
}

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

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

input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  background: white url("../images/sunny.png");
  background-repeat: no-repeat;
  background-position: center;
}

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

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

.container_adjust {
  position: absolute;
  margin: 0;
  left: 10px;
  width: 80px;
  height: 40px;
  top: 10px;
}

.dark_info_hide {
  display: none;
}

#dark_info {
  margin: 0px 0px 5px 0px;
}

.section-headings a {
  position: absolute;
  left: 0px;
  top: -220px;
}

/* close icon */
.fa.fa-close {
  background-image: url("../images/close_black_24dp.svg");
  width: 24px;
  height: 24px;
  /* filter: invert(14%) sepia(32%) saturate(0%) hue-rotate(233deg) brightness(91%)
    contrast(88%); */
}

#toggle_label{
  font-size: 0.1px;
}

@media screen and (max-width: 480px) {
  .container {
    display: flex;
  }
}
