.theme-light {
  --color-primary: #EA4335;
  --color-secondary: #fbfbfe;
  --color-accent: #4285F4;
  --font-color: #000000;
  --font-card1: #ffffff;
  --font-card2: #ffffff;
  --base-color1:#da4d39;
  --base-color2:#1166e8;
  --base-color3:#009c58;
  --base-color4:#dd4814;
  --base-color5:#7D26CD;
  --base-color6:#627870;
  --base-color7:rgb(160, 0, 112);
  --base-color8:#f82790;
  --base-color9:gray;
  --loading-font:#0365f7;
  --board-code: #464545;
  --home-color: #c200ff;
}
.theme-dark {
  --color-primary: #ea4435af;
  --color-secondary: #2a2c2ddc;
  --color-accent: #4286f4af;
  --font-color: #ffffff;
  --font-card1: #000000af;
  --font-card2: #0000009f;
  --base-color1:#da4c3977;
  --base-color2:#1166e877;
  --base-color3:#009c5877;
  --base-color4:#dd481477;
  --base-color5:#7D26CD77;
  --base-color6:#62787077;
  --base-color7:rgba(160, 0, 112, 0.411);
  --base-color8:#f8279077;
  --base-color9:rgba(128, 128, 128, 0.418);
  --loading-font:#0365f777;
  --board-code: #46454577;
  --home-color: #c200ff77;
}
.container-switcher {
  float: left;
  display:flex; 
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1200px)
{
  .container-switcher
	{
		height: 8%;
	}
}

.container-switcher 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('https://i.ibb.co/7JfqXxB/sunny.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('https://i.ibb.co/FxzBYR9/night.png'); 
  background-repeat: no-repeat;
  background-position: center;
}

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

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