/* @import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root{
    --bg-black-900: #f2f2fc;
    --bg-black-100: #fdf9ff;
    --bg-black-50: #e8dfec;
    --text-black-900: #302e4d;
    --text-black-700: #504e70;

} */
.style_switcher {
  position: fixed;
  right: 0%;
  top: 20%;
  padding: 15px;
  width: 200px;
  border: 2px solid var(--bg-black-50);
  background-color: var(--bg-black-100);
  /* background-color: brown; */
  z-index: 101;
  border-radius: 5px;
  transition: all 0.3s ease;
  transform: translateX(100%);
}

.style_switcher.open {
  transform: translateX(-25px);
}

.style_switcher .s_icon {
  position: absolute;
  right: 100%;

  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;

  background-color: var(--bg-black-100);
  /* background-color: brown; */
  color: var(--text-black-900);
  /* color: rebeccapurple; */

  margin-right: 1rem;

  border: 1px solid var(--bg-black-50);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.style_switcher .s_icon i {
  line-height: 40px;
}

.style_switcher .style_switcher_toggler {
  top: 0;
}

.style_switcher .day_night {
  top: 55px;
}

.style_switcher h4,
.style_switcher p {
  margin: 0 0 10px;
  color: var(--text-black-700);
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
}

.style_switcher .colors {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.style_switcher .colors span {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid var(--bg-black-50);

  transition: all 0.2s ease-in-out;
}

.style_switcher .colors span:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.style_switcher .colors .color_1 {
  background: #dfa70a;
}

.style_switcher .colors .color_2 {
  background: #fa5b0f;
}

.style_switcher .colors .color_3 {
  background: #37b182;
}

.style_switcher .colors .color_4 {
  background: #1854b4;
}

.style_switcher .colors .color_5 {
  background: red;
}
