.footer {
  z-index: 9;
  position: relative;
  background-color: rgba(var(--background-secondary), 0.5);
  color: rgba(var(--text-primary), var(--text-opacity));
}

.footer h6 {
  text-transform: uppercase !important;
  font-weight: 600 !important;
  margin-bottom: 6px;
}

.footer p {
  margin-bottom: 8px;
}

/**
* Change theme
*/

.container-footer-theme {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tabs-footer-theme {
  display: flex;
  font-size: 0.8rem;
  background-color: rgba(
    var(--background-secondary),
    var(--background-opacity)
  );
  padding: 13px;
  border-radius: 100px;
  position: relative;
  box-shadow: 2px 6px 21px rgba(0, 0, 0, 0.2);
}

.tab-footer-theme {
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  z-index: 2;
}

input[id="radio-footer-theme-1"]:checked ~ .glider-footer-theme {
  transform: translateX(0);
  transition: 0.25s ease-out;
}

input[id="radio-footer-theme-2"]:checked ~ .glider-footer-theme {
  transform: translateX(128%);
  transition: 0.25s ease-out;
}

input[id="radio-footer-theme-3"]:checked ~ .glider-footer-theme {
  transform: translateX(200%);
  transition: 0.25s ease-out;
}

input[id="radio-footer-theme-4"]:checked ~ .glider-footer-theme {
  transform: translateX(300%);
  transition: 0.25s ease-out;
}

input[id="radio-footer-theme-5"]:checked ~ .glider-footer-theme {
  transform: translateX(400%);
  transition: 0.25s ease-out;
}

input[id="radio-footer-theme-6"]:checked ~ .glider-footer-theme {
  transform: translateX(500%);
  transition: 0.25s ease-out;
}

input[class="radio-footer"] {
  display: none;
}

.glider-footer-theme {
  position: absolute;
  top: 7px;
  left: 19px;
  display: flex;
  height: 41px;
  width: 43px;
  background-color: rgba(
    var(--background-quaternary),
    var(--background-opacity)
  );
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}
