@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
  --background: black;
  --line: black;
  --text: #b7b7b7;
  --holder: #101010;
  --theme_container_border: rgba(146, 146, 146, 0.481);
  --theme-secondary: white;
  --theme_shadow: black;
  --partner-ad-background: #414141;
  /* --leaderboard-background: rgba(150, 150, 150, 0.181);
  --leaderboard-background-main: rgba(255, 248, 248, 0.600); */

  /* LOFI */
  --lofi_container_border: rgba(255, 255, 255, 0.038);

  /* SLIDER */
  --slider_background: #353535;
}

[data-theme="light"] {
  --background: #f3f3f3;
  --text: #000000;
  --line: #e6e6e6;
  --holder: #e6e6e6;
  --theme_container_border: rgba(0, 0, 0, 0.305);
  --theme-secondary: rgb(80, 77, 88);
  --theme_shadow: rgba(0, 0, 0, 0);
  --partner-ad-background: white;
  /* --leaderboard-background-main: rgba(0, 0, 0, 0.700); */

  /* LOFI */
  --lofi_container_border: rgba(146, 146, 146, 0.300);

  /* SLIDER */
  --slider_background: #bcbcbc;
}

.preview p:hover {
  background-color: rgba(179, 179, 179, 0.308);
  border-radius: .5rem;
}

html,
body {
  background-color: var(--background);
  margin: 0;
  padding: 0;
  height: 100%;

  font-family: "Bebas Neue", Arial;
  cursor: default;
}

.hide {
  display: none !important;
}

.hidden {
  display: flex !important;
}

.hidden_theme {
  display: grid !important;
}


svg {
  fill: var(--holder);
  filter: contrast(60%);
  transition: all 0.2s ease;
}

svg:hover {
  fill: var(--text);
}

.ui-tooltip {
  font-size: 12px !important;
  padding: 4px 8px !important;
  background-color: var(--text) !important;
  color: var(--holder) !important;
  border: none !important;
  border-radius: 4px !important;
  filter: brightness(.8) !important;
  box-shadow: none !important;
}


input[type=range] {
  -webkit-appearance: none;
  height: 10px;
  width: 6rem;
  background: var(--slider_background);
  border-radius: 5px;
  outline: none;
  -webkit-transition: opacity .2s;
  transition: all .2s ease-in-out;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--text);
  border-radius: 25%;
  cursor: pointer !important;
}



.switch {
  --inactive-bg: var(--slider_background);
  /* --inactive-bg: #cfd8dc; */
  --active-bg: #00e676;
  --size: 1.1rem;

  appearance: none;
  width: calc(var(--size) * 2);
  height: var(--size);
  display: inline-block;
  /* border-radius: calc(var(--size) / 2); */
  border-radius: .4rem;
  cursor: pointer;
  background-color: var(--inactive-bg);
  background-image: radial-gradient(circle calc(var(--size) / 2.1),
      var(--text) 70%,
      #0000 0),
    radial-gradient(circle calc(var(--size) / 1.5), #0003 0%, #0000 100%);
  background-repeat: no-repeat;
  background-position: calc(var(--size) / -2.25) 0;
  transition: background 0.2s ease-out;
}

.switch:checked {
  background-color: var(--slider_background);
  background-position: calc(var(--size) / 2) 0;
}

.plan_toggle_div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 10px 0 -10px 0;
}

.plan_toggle_div>p {
  font-size: clamp(.9rem, 1vw, 1.3vw);
  color: var(--text);
  font-weight: bold;
}




/* AD CONTAINER PARTNER */
.ad_container_partner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 10;
  width: 96%;
  margin: .5rem auto 0 auto;

  background-color: var(--holder);
  border-radius: .6rem;

  font-family: sans-serif;
  font-weight: normal;
}

.ad_container_partner>a {
  text-decoration: none;
}

.ad_container_partner>a>.ad {
  font-size: clamp(.8rem, .6vw, 1vw);
  color: var(--text);
  margin: -1.3rem -.5rem 0 0;
  opacity: .3;
  border: 1px solid var(--text);
  padding: .1rem;
  border-radius: .2rem;
}

.ad_container_partner>.ad_details {
  background-color: var(--text);
  border-radius: .5rem;
  filter: contrast(200%);
  padding: .5rem 1rem;
  transition: all .5s ease-in-out;

  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: .7rem;
}

.ad_container_partner>.ad_details>h3 {
  font-size: clamp(.9rem, 1vw, 1.2vw);
  color: var(--holder);
  margin: 0;
}

.ad_container_partner>.ad_details>p {
  font-size: clamp(.75rem, .7vw, 1vw);
  color: var(--holder);
  filter: contrast(.2%);
  margin: 0 0 -.1rem .5rem;
}

.ad_container_partner>.ad_cta {
  background-color: var(--text);
  border-radius: .5rem;
  filter: contrast(200%);
  padding: 0rem 1rem;
  color: var(--holder);
  transition: all .2s ease-in-out;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.ad_cta>svg,
.ad_details>svg {
  width: 2rem;
  /* filter: contrast(100%); */
}

.ad_cta>p {
  margin: 1.1rem 0;
  font-size: clamp(.8rem, .7vw, 1vw);
}

.ad_cta:hover {
  background-color: var(--text);
  opacity: .6;
  color: var(--holder);
  cursor: pointer;
}

.ad_cta:hover>svg {
  transform: translateX(.6rem);
  fill: var(--holder);
}

.ad_container_partner>#close_partner_ad {
  filter: opacity(0.55);
}

.ad_container_partner>#close_partner_ad {
  width: .8rem;
  height: .8rem;
  fill: var(--text);
}

.ad_container_partner>#close_partner_ad:hover {
  cursor: pointer;
  fill: var(--text);
  filter: opacity(0.8);
}




/* LOFI MUSIC PLAYER */
#lofi_container {
  position: absolute;
  z-index: 20;
  bottom: 3rem;
  right: 8rem;
  cursor: grabbing !important;
  background-color: var(--lofi_container_border);
  width: fit-content;
  height: fit-content;
  padding: 10px;
  border-radius: 2rem;
  backdrop-filter: blur(50px);
  box-shadow: 0px 0px 50px 10px rgba(0, 0, 0, 0.259);
  display: flex;
  flex-direction: column;
  gap: 10px;

  transform: scale(1) translateY(0);
  transition: all 0.3s cubic-bezier(0.645, 0.05, 0.45, .99);
  transition-behavior: allow-discrete;
  opacity: 1;

  @starting-style {
    opacity: 0;
    transform: scale(.93) translateY(20px);
  }
}

#lofi_container #lofi_player {
  border-radius: 1.5rem;
}

#lofi_container #lofi_close_button {
  margin: 10px 10px 0 0;
  cursor: pointer !important;
}

#lofi_container>svg {
  margin: 10px;
  text-align: right;
  filter: contrast(100%);
  cursor: pointer;
}

#lofi_container a {
  font-size: clamp(.6rem, .7rem, 1rem) !important;
  font-family: sans-serif;
  color: var(--text);
  text-decoration: none;
  transition: all .1s ease-in-out;
  cursor: pointer;
}

#lofi_container a:hover {
  text-decoration: underline;
}

#lofi_container>.lofi_container_buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 10px 10px 0px 20px;
}

#lofi_container>.lofi_container_buttons>.lofi_video_like_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#lofi_container>.lofi_container_buttons>.lofi_video_like_container>svg {
  filter: contrast(10%);
  cursor: pointer;
}

#lofi_container>.lofi_container_buttons>.lofi_video_like_container>svg:hover {
  filter: contrast(75%);
  fill: red;
}

#lofi_container>.lofi_container_buttons>.lofi_video_like_container>svg:active {
  filter: contrast(30%);
  fill: red;
}

#lofi_container p {
  margin: 0;
  font-size: clamp(.7rem, .8rem, 1rem) !important;
  font-weight: normal;
  color: var(--holder);
  filter: contrast(10%);
}



/* AD CONTAINER ----------------------------------------------------- */
.ad_container {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 10;
  width: 100%;
  padding: 1rem 0rem;

  /* background-color: #e6e6e6; */
  background-color: var(--holder);
  border-bottom: .2px solid rgb(45, 45, 45);

  text-align: center;
  font-family: sans-serif;
  font-weight: normal;
  -webkit-box-shadow: 0px 17px 117px -12px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 0px 17px 117px -12px rgba(0, 0, 0, 0.733);
  box-shadow: 0px 17px 117px -12px rgba(0, 0, 0, 0.533);

  transition: all .5s ease-in-out;
}

.ad_container>p {
  font-size: clamp(1rem, 1vw, 2vw);
  /* font-size: clamp(.7rem, .9vw, 1.2vw); */
  /* color: rgb(54, 54, 54); */
  color: var(--text);
  transition: all 0.1s ease-in-out;
  margin: 0 20px;
}

.ad_container>a {
  transition: all .1s ease-in-out;
  color: #3279dc;
  border-radius: .4rem;
  margin-left: 1.2rem;
}

.ad_container>a:hover {
  color: #398bff;
  text-decoration: underline;
}

.ad_container>link_button {
  color: #ffffff;
  text-decoration: none;
  transition: all .1s ease-in-out;
  padding: .4rem 1rem;
  background-color: #3287ff;
  border-radius: .4rem;
  margin-left: 1.2rem;
}

.ad_container>link_button:hover {
  background-color: #398bff;
  text-decoration: underline;
}

.ad_container>p>a {
  color: #ffffff;
  text-decoration: none;
  transition: all .1s ease-in-out;
  padding: .4rem 1rem;
  background-color: #3287ff;
  border-radius: .4rem;
  margin-left: 1.2rem;
  transition: all 0.1s ease-in-out;
}

.ad_container>p>a:hover {
  background-color: #398bff;
  text-decoration: underline;
}

.ad_container>svg {
  width: 15px;
  height: 15px;
  fill: var(--text);
  margin: 0 1rem;
}

.ad_container>svg:hover {
  cursor: pointer;
  fill: var(--text);
}


.ad_container>.partner_ad_highlight {
  background-color: var(--partner-ad-background);
  color: var(--text);
  border-radius: .5rem;
  padding: 0rem .5rem 0 1rem;
  transition: all .5s ease-in-out;
  /* filter: contrast(50%); */

  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 1rem;
  font-size: clamp(.8rem, 1.1vw, 1.5vw);
  margin: 0rem 1rem;
  text-align: left;
}

.ad_container>.partner_ad_highlight>svg {
  width: 1.5rem;
  height: 1.5rem;
  filter: contrast(200%) !important;
  fill: var(--text);
}

.ad_container>.partner_ad_highlight>svg:hover {
  transform: scale(1.1);
}

.ad_container>.partner_ad_highlight>p {
  filter: contrast(200%) !important;
}

.ad_container>.partner_ad_highlight>a {
  color: #ffffff;
  text-decoration: none;
  transition: all .1s ease-in-out;
  padding: .4rem 1rem;
  background-color: #3287ff;
  border-radius: .4rem;
  margin-left: .5rem;
}

.ad_container>.partner_ad_highlight>a:hover {
  background-color: #398bff;
  text-decoration: underline;
}




/* POLL */
.poll {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: .7em;
}

.poll>button {
  padding: .4em .8em;
  border: none;
  background-color: var(--background);
  color: var(--text);
  font-size: clamp(.8rem, .8vw, 1.5vw);
  border-radius: 1em;
  text-align: left;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.poll>#yes_button {
  border: 1px solid #ffffffdb;
  text-align: left;
}

.poll>#yes_button:hover {
  /* background-color: #42f068; */
  background-color: #ffffff;
  border-color: #ffffff;
  color: black;
}

.poll>#yes_button:focus {
  color: #000000;
  border-color: #ffffff;
  background-color: #ffffff;
  cursor: not-allowed;
}

.poll>#no_button {
  border: 1px solid #ffffffdb;
  text-align: right;
}

.poll>#no_button:hover {
  /* background-color: #ff5353; */
  background-color: rgb(255, 255, 255);
  border: 1px solid #ffffff;
  color: black;

  /* animation: jiggleAnimation .2s infinite; */
}

.poll>#no_button:focus {
  color: #000000;
  border-color: #ffffff;
  background-color: #ffffff;
  cursor: not-allowed;
}

.ad_container>#close_ads {
  filter: opacity(0.3);
}

@keyframes widthAnimation {
  0% {
    width: 60px;
  }

  100% {
    width: 150px;
  }
}

@keyframes jiggleAnimation {
  0% {
    transform: rotateZ(3deg);
  }

  50% {
    transform: rotateZ(-3deg);
  }

  100% {
    transform: rotateZ(0);
  }
}

/* POLL */
/* AD CONTAINER ----------------------------------------------------- */





.line {
  width: 100%;
  height: 8px;
  background-color: var(--holder);
  position: absolute;
  top: 50%;
  z-index: 2;
}

.container {
  height: 100%;
  display: flex;
  flex-direction: row;
  padding: 0 1% 0 1%;
  transition: all .2s ease-out;
}

.holder {
  position: relative;

  width: 100%;
  /* height: 80%; */

  margin: auto 1%;

  justify-content: center;
  align-items: center;
  background-color: var(--holder);
  /* background-color: #626262; */

  border-radius: 50px;
}

.holder h1 {
  color: var(--text);

  /* font-size: 480px; */
  font-size: clamp(30vw, 40vw, 50vw);

  margin: auto;
  text-align: center;
  font-weight: 100;
  transition: all 0.5s;
}

.holder h2 {
  position: absolute;
  top: 75%;
  /* top: 0%; */

  color: var(--text);

  /* font-size: 50px; */
  font-size: clamp(3vw, 4vw, 5vw);

  font-family: Arial;
  font-weight: bold;

  margin-left: 7%;
  text-align: left;
}

.social {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  bottom: 0;
  right: 0%;
  margin: 0 20px 10px 0;
}

/* CHANGED FOR TESTING ---------------------------------------------------------------- */
.social>svg,
.social>a>svg {
  width: 2.5vw;
  height: 2.5vw;
  margin-left: .5em;
}

.social>a {
  height: 2.5vw
}

/* CHANGED FOR TESTING ---------------------------------------------------------------- */






/* MENU */
.menu1 {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  margin: .8rem 1.2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: .7rem;

  cursor: pointer !important;
}

.menu2 {
  display: none;
  flex-direction: column;
  /* justify-content: center; */
  align-items: flex-end !important;
  gap: .5rem;
  position: fixed;
  z-index: 10;
  bottom: 6%;
  right: 0;
  margin: .8rem 1.5rem;
  animation: fadeIn 0.2s ease-in-out;
}

.menu1>svg {
  width: 1.7rem;
  height: 1.7rem;
  transition: all 0.2s ease-in-out;

  padding: 10px;
}

.menu2 svg {
  width: 1.4rem;
  height: 1.4rem;


  transition: all 0.2s ease-in-out;

  padding: .5rem;
  /* background-color: #65656c; */
  border-radius: .5rem;

  fill: var(--text);
}

.menu2 svg:hover {
  background-color: #c0c0c03e;
}

.menu2>#pro_subscription {
  display: none;
  width: 4.5vw;
  height: 4.2vw;
  filter: contrast(100%);
}

.menu2>#pro_plus_subscription {
  display: none;
  width: 4.5vw;
  height: 3.5vw;
  filter: contrast(100%);
}

.menu2>a>#upgrade {
  width: 6.5vw;
  height: 2.5vw;
  transition: all 0.2s ease-in-out;
  filter: contrast(100%);
}

#pro_subscription:hover,
#pro_plus_subscription:hover,
#upgrade:hover {
  background-color: transparent !important;
}

/* MENU2 */



/* THEMES CONTAINER */
.themes_container {
  display: none;
  /* display: grid; */
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  /* flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center; */
  gap: 1.5vw;
  padding: 1vw .5vw;
  border-radius: 1.5vw;
  background-color: var(--background);
  border: 1px solid var(--theme_container_border);

  position: fixed;
  bottom: 4.5%;
  right: 8%;
  width: 20%;
  margin: 20px 20px;

  z-index: 500;
  animation: fadeIn 0.2s ease-in-out;
  box-shadow: var(--theme_shadow) 0px -20px 100px 0px;
}

.themes_container>svg {
  width: 2vw;
  height: 2vw;
  transition: all .3s ease-in-out;

  box-shadow: rgba(99, 99, 99, 0.25) 0px 2px 8px 0px;
  border-radius: 50%;
  filter: contrast(100%);
}

.themes_container>svg:hover {
  cursor: pointer;
  transform: rotate(180deg);
}


/* FEATURE SHOWCASE CONTAINER */
.feature_title {
  font-size: clamp(.85rem, 2.2vw, 2.5vw);
  margin: 0;
}

.info {
  display: flex;
  gap: 10 0vw;
  margin: 3vw 0;
}

.features>h2,
.analytics>h2 {
  font-size: clamp(.8rem, 1.5vw, 2vw);
}

.features_popup {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background-color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  margin: 0 auto;
  border-radius: 3vw;
  font-family: sans-serif;
  font-weight: 100 !important;
  padding: 5vw 5vw;

  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.377);
  z-index: 100;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 1vw;
  margin: 2vw 0;
  width: 20vw;
}

.feature>svg {
  fill: black;
}

.feature>h3 {
  margin: 0;
  opacity: 0.6;
  font-weight: 300;
  font-size: clamp(.7rem, 1.4vw, 2vw);
}

.feature>svg {
  width: clamp(.7rem, 2.5vw, 3vw);
}

.available>h3 {
  color: var(--primary);
  margin: 0;
  opacity: 1;
  font-weight: normal;
}

.cookies_warning {
  background-color: #ffe3e3;
  color: #FF2929;
  padding: 1vw 2vw;
  text-align: center;
  width: fit-content;
  border: 1px solid #FF2929;
  border-radius: 10px;
}

.cookies_warning>p {
  font-size: clamp(.5rem, 1.2vw, 1.5vw);
  font-weight: 300;
  margin: 0;
}

#feature_toggle,
#feature_toggle1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 15px;
  cursor: pointer;
}

.upgrade_button_basic {
  color: black;
  padding: .4em 2em;
  border-radius: clamp(15px, 1.5vw, 2vw);
  border: 1px solid var(--text);
  background-color: rgb(255, 231, 106);
  font-family: "Helvetica Neue";
  font-size: clamp(.9rem, 1vw, 1.5vw);
  position: absolute;
  top: 0;
  right: 0;
  margin: 1em;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
  transition: all .2s ease-out;
  box-shadow: rgb(255, 231, 106, .425) 0px 10px 25px 0;
}

.upgrade_button_pro {
  color: white;
  padding: .4em 2em;
  border-radius: clamp(15px, 1.5vw, 2vw);
  border: 1px solid black;
  background-color: rgb(127, 106, 255);
  font-family: "Helvetica Neue";
  font-size: clamp(.9rem, 1vw, 1.5vw);
  position: absolute;
  top: 0;
  right: 0;
  margin: 1em;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  gap: 10px;
  transition: all .2s ease-out;
  box-shadow: rgba(126, 106, 255, 0.425) 0px 10px 25px 0;
}

.upgrade_button:hover {
  transform: scale(1.08);
  border-radius: 40px;
}

.upgrade_button>.demo_buy_arrow {
  width: 16px !important;
  height: 16px !important;
  filter: contrast(100%) !important;
}


.support_creator {
  position: fixed;
  top: 0;
  right: 0;
  margin: 15px 15px;
  cursor: pointer;
  z-index: 20;
}

.support_creator>.heart>a>svg {
  transition: all 0.1s ease-in-out;
  filter: contrast(100%);
  border-radius: 50px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px 0px;
  margin-top: .3rem;
}

.support_creator>.heart>a>svg:hover {
  transform: scale(1.08);
  box-shadow: rgba(255, 24, 24, .6) 0px 2px 25px 0px;
}

.heart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  flex-direction: row;
}

.support_tagline {
  font-size: clamp(.7rem, 1vw, 1.5vw);
  font-family: "Helvetica Neue";
  font-weight: 400;
  color: black;
  margin: 0;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  gap: .5rem;

  background-color: white;
  padding: .5rem 1rem;

  border-radius: .6rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 10px 0px;
}

.support_tagline>p {
  margin: 0;
}





@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.plus-minus {
  --svg: var(--holder);
  --secondary: #4d4d4d;
  filter: contrast(85%);

  --duration: .5s;

  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 240px;
  border-radius: 50%;

  width: 1.4rem;
  height: 1.4rem;
  margin-top: .5rem;

  /* border: 4px solid var(--svg); */
  background-size: 300% 300%;
  transition: transform 0.3s;
  transform: scale(var(--scale, 1)) translateZ(0);
  -webkit-animation: var(--name, unchecked) var(--duration) ease forwards;
  animation: var(--name, unchecked) var(--duration) ease forwards;
}

.plus-minus:before,
.plus-minus:after {
  content: "";
  position: absolute;
  width: 16px;
  height: var(--height, 15px);
  left: 6px;
  top: var(--top, 6px);
  -webkit-animation: var(--name-icon-b, var(--name-icon, unchecked-icon)) var(--duration) ease forwards;
  animation: var(--name-icon-b, var(--name-icon, unchecked-icon)) var(--duration) ease forwards;
}

.plus-minus:before {
  -webkit-clip-path: polygon(0 6px, 6px 6px, 6px 0, 10px 0, 10px 6px, 16px 6px, 16px 10px, 10px 10px, 10px 16px, 6px 16px, 6px 10px, 0 10px);
  clip-path: polygon(0 6px, 6px 6px, 6px 0, 10px 0, 10px 6px, 16px 6px, 16px 10px, 10px 10px, 10px 16px, 6px 16px, 6px 10px, 0 10px);
}

.plus-minus:after {
  --height: 4px;
  --top: 12px;
  --background: var(--secondary);
  --name-icon-b: var(--name-icon-a, checked-icon);
}

.plus-minus:active {
  --scale: .95;
}

.plus-minus:checked {
  --name: checked;
  --name-icon-b: checked-icon;
  --name-icon-a: unchecked-icon;
}

.plus-minus:hover {
  --svg: rgba(115, 115, 115, 0.722);
  --secondary: #3e3e3e;
}

@-webkit-keyframes checked-icon {
  from {
    transform: translateZ(12px);
  }

  to {
    transform: translateX(16px) rotateY(90deg) translateZ(12px);
  }
}

@keyframes checked-icon {
  from {
    transform: translateZ(12px);
  }

  to {
    transform: translateX(16px) rotateY(90deg) translateZ(12px);
  }
}

@-webkit-keyframes unchecked-icon {
  from {
    transform: translateX(-16px) rotateY(-90deg) translateZ(12px);
  }

  to {
    transform: translateZ(12px);
  }
}

@keyframes unchecked-icon {
  from {
    transform: translateX(-16px) rotateY(-90deg) translateZ(12px);
  }

  to {
    transform: translateZ(12px);
  }
}

@-webkit-keyframes checked {
  from {
    background-image: radial-gradient(ellipse at center, var(--svg) 0%, var(--svg) 25%, var(--secondary) 25.1%, var(--secondary) 100%);
    background-position: 100% 50%;
  }

  to {
    background-image: radial-gradient(ellipse at center, var(--svg) 0%, var(--svg) 25%, var(--secondary) 25.1%, var(--secondary) 100%);
    background-position: 50% 50%;
  }
}

@keyframes checked {
  from {
    background-image: radial-gradient(ellipse at center, var(--svg) 0%, var(--svg) 25%, var(--secondary) 25.1%, var(--secondary) 100%);
    background-position: 100% 50%;
  }

  to {
    background-image: radial-gradient(ellipse at center, var(--svg) 0%, var(--svg) 25%, var(--secondary) 25.1%, var(--secondary) 100%);
    background-position: 50% 50%;
  }
}

@-webkit-keyframes unchecked {
  from {
    background-image: radial-gradient(ellipse at center, var(--secondary) 0%, var(--secondary) 25%, var(--svg) 25.1%, var(--svg) 100%);
    background-position: 100% 50%;
  }

  to {
    background-image: radial-gradient(ellipse at center, var(--secondary) 0%, var(--secondary) 25%, var(--svg) 25.1%, var(--svg) 100%);
    background-position: 50% 50%;
  }
}

@keyframes unchecked {
  from {
    background-image: radial-gradient(ellipse at center, var(--secondary) 0%, var(--secondary) 25%, var(--svg) 25.1%, var(--svg) 100%);
    background-position: 100% 50%;
  }

  to {
    background-image: radial-gradient(ellipse at center, var(--secondary) 0%, var(--secondary) 25%, var(--svg) 25.1%, var(--svg) 100%);
    background-position: 50% 50%;
  }
}


@media screen and (max-height: 600px) {
  .menu2 {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: right;
    align-items: center !important;
    /* transform: scale(0.9); */
    background-color: var(--holder);
    border: 1px solid var(--text);
    padding: 0rem .5rem;
    border-radius: .5rem;
    margin: 1.5rem 1.5rem;
  }

  .plan_toggle_div {
    margin: 0;
  }

  .menu2 svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .menu2>#pro_subscription {
    display: none;
    width: 3.5vw;
    height: 3.2vw;
    filter: contrast(100%);
  }

  .menu2>#pro_plus_subscription {
    display: none;
    width: 3vw;
    height: 2.5vw;
    filter: contrast(100%);
  }

  .menu2>a>#upgrade {
    width: 4.5vw;
    height: 2vw;
    transition: all 0.2s ease-in-out;
    filter: contrast(100%);
  }

  input[type=range] {
    height: 10px;
    width: 5rem;
  }

  input[type=range]::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
  }

}



@media only screen and (max-width: 1200px) {
  .line {
    height: 5px;
  }

  .holder {
    border-radius: 20px;
    margin: auto 5px;
  }

  .full {
    display: block;
  }

  /* MENU & THEME CONTAINER */
  .menu2 {
    bottom: 5%;
    margin: .8rem .9rem;
  }

  .menu2>svg,
  .menu1>svg {
    transition: all 0.2s ease-in-out;
  }

  .menu2>#pro_subscription {
    display: none;
    width: 10.5vw;
    height: 10.2vw;
  }

  .menu2>#pro_plus_subscription {
    display: none;
    width: 15.5vw;
    height: 14.5vw;
  }

  .menu2>a>#upgrade {
    width: 20.5vw;
    height: 7.5vw;
    transition: all 0.2s ease-in-out;
  }



  /* features */
  .info {
    gap: 2vw;
  }

  .features_popup {
    padding: 7vw 7vw;
    width: 65%;
  }

  .feature {
    gap: 3vw;
    width: fit-content;
  }

  .cookies_warning {
    padding: 2vw 3vw;
  }

  #feature_toggle {
    top: 2%;
    right: 5%;
    width: 12px;
  }

  .analytics {
    display: none;
  }

  .support_tagline {
    padding: 0rem 1rem;
  }

  #support_toggle {
    width: 10px;
  }

  .heart_icon {
    width: 10vw;
    height: 10vw;
  }

  /* #lofi_container {
    display: none !important;
  }

  #lofi_button {
    display: none !important;
  } */

  @media only screen and (orientation: portrait) {

    /* FOR MAKING CLOCK IN COLUMN FORMAT */
    .container {
      flex-direction: column;
      display: flex;
      gap: 2rem;
      width: 55%;
      margin: 0 auto;
      align-items: center;
      justify-content: center;
    }

    .holder {
      margin: 0 !important;
    }

    .menu1>svg {
      padding: 0px;
    }

    /* FOR MAKING CLOCK IN COLUMN FORMAT */
  }

  @media only screen and (orientation: landscape) {
    .themes_container {
      grid-template-columns: repeat(3, 1fr);

      width: 20%;
      bottom: 5%;
      right: 10%;
      gap: 2vw;
      padding: 2vw;
    }

    .container {
      transform: scale(.9);
      gap: 1rem;
    }

    .plan_toggle_div {
      margin: 0;
    }

    .plus-minus {
      width: 1.7rem;
      height: 1.7rem;
    }

    /* MENU & THEME CONTAINER */
    .menu1 {
      margin: .5rem;
      gap: 0rem;
    }

    .menu1>svg {
      padding: 10px;
    }

    .menu2 {
      bottom: 12%;
      margin-right: 1rem;
    }

    .menu2>#pro_subscription {
      display: none;
      width: 3.5rem;
      height: 3rem;
    }

    .menu2>#pro_plus_subscription {
      display: none;
      width: 6.5vw;
      height: 5.5vw;
    }

    .menu2>a>#upgrade {
      width: 10.5vw;
      height: 5vw;
      transition: all 0.2s ease-in-out;
    }

    .heart_icon {
      width: 5vw;
      height: 5vw;
    }
  }
}

/* TABLETS */
@media only screen and (max-width: 900px) {
  #lofi_container {
    display: none !important;
  }

  #lofi_button {
    display: none !important;
  }


  .themes_container {
    grid-template-columns: repeat(3, 1fr);

    width: 30%;
    bottom: 5%;
    right: 14%;
    gap: 3vw;
    padding: 3vw;
    border-radius: 3vw;
  }

  .themes_container>svg {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 100%;
  }


  .menu2 {
    bottom: 5.5%;
  }

  @media screen and (orientation: landscape) {
    .container {
      transform: scale(.7);
    }

    .menu2 {
      bottom: 15%;
      margin-right: 1rem;
    }

    .themes_container {
      grid-template-columns: repeat(3, 1fr);

      width: 30%;
      bottom: 5%;
      right: 18%;
      gap: 2vw;
      padding: 2vw;
    }
  }
}


/* MOBILE */
@media screen and (max-width: 600px) {
  .themes_container {
    grid-template-columns: repeat(3, 1fr);
    width: 50%;
    bottom: 5%;
    right: 25%;
    gap: 4vw;
    padding: 3vw;
    border-radius: 3vw;
  }

  .themes_container>svg {
    width: 5.5vw;
    height: 5.5vw;
    border-radius: 100%;
  }

  .menu2 {
    bottom: 5.5%;
  }

  @media screen and (orientation: landscape) {

    .menu1>svg {
      width: 1.2rem;
      height: 1.2rem;
    }

    .plus-minus {
      height: 1rem;
      width: 1rem;
    }

    .themes_container {
      grid-template-columns: repeat(3, 1fr);

      width: 20%;
      bottom: 5%;
      right: 10%;
      gap: 2vw;
      padding: 2vw;
    }
  }
}