@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Lilita One', cursive;
  /* font-family: 'Scheherazade', sans-serif; */
  /* outline: 1px solid red; */
  /* font-weight: 800; */
}

body {
  font-size: 18px;
  /* height: 100vh; */
  text-align: center;
  overflow: hidden;
  color: #000;
  background-color: #fff;
  /* Hide scrollbars */
  /* display: flex; */
  /* flex-direction: column; */
}

html,
body {
  width: auto !important;
  /* overflow: hidden !important; */
  -ms-overflow-style: none; /* IE și Edge */
  scrollbar-width: none; /* Firefox */
}

.html::-webkit-scrollbar {
  display: none;
}

html {
  font-family: sans-serif;
  -ms-scroll-snap-type: mandatory;
  scroll-snap-type: mandatory;
  -ms-scroll-snap-points-y: repeat(100vh);
  scroll-snap-points-y: repeat(100vh);
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent; /* make scrollbar transparent */
}



/* background rgb mode */

.rgb {
  /* position: absolute;
    top: 0;
    left: 0; */
  width: 100%;
  /* height: 100vh; */
  /* background: linear-gradient(90deg, #3f51b5, #00bcd4); */
  /* background: linear-gradient(90deg, rgba(63, 81, 181, 0.5), rgba(0, 188, 212, 0.5)); */
  /* background: linear-gradient(-45deg, #d2001a, #7462ff, #f48e21, #23d5ab); */
  background: linear-gradient(
    -45deg,
    rgb(210, 0, 26, 0.3),
    rgb(116, 98, 255, 0.4),
    rgb(244, 142, 33, 0.5),
    rgb(35, 213, 171, 0.6)
  );
  background-size: 300% 300%;
  /* opacity: 0.3; */
  /* animation: animateGradient 200s linear infinite; */
  animation: colorBg 15s ease-in-out infinite;
}

@keyframes animateGradient {
  0% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(360deg);
  }

  100% {
    filter: hue-rotate(0deg);
  }
}

@keyframes colorBg {
  0% {
    background-position: 0% 50%;
    /* filter: hue-rotate(0deg); */
  }

  50% {
    background-position: 100% 50%;
    /* filter: hue-rotate(360deg); */
  }

  100% {
    background-position: 0% 50%;
    /* filter: hue-rotate(0deg); */
  }
}

/*end background rgb mode */
section.section-test {
  display: none;
}
.wrapper {
  display: flex;
  /* height: 100vh; */
  flex-flow: row wrap;
  /* background-color: tomato; */
  align-content: space-between;
}

.wrapper > * {
  flex: 1 100%;
}

.toggleDark {
  cursor: pointer;
}

.light-theme {
  color: black;
  transition: 1s;
  /* background-color: white; */
}

.dark-theme {
  width: 100%;
  transition: 1s;
  background-color: black;
  color: white;
}

.dark-theme .flex-header {
  border-bottom: 1px solid white;
}

.dark-theme .content span {
  color: white;
}

.dark-theme form button {
  color: white;
}
.dark-theme .todo-item {
  color: white;
}
.dark-theme .clock {
  color: white;
  border: 4px solid white;
}

label {
  display: none;
}

/* start header */

.flex-header {
  padding: 1rem;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%),
    0 1px 5px 0 rgb(0 0 0 / 20%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* height: 5vh; */
}

.luce {
  flex: 0;
  order: 1;
}

.flex-header h4 {
  flex: 1 1 30%;
  order: 2;
  font-weight: normal;
  position: relative;
}

#text {
  cursor: pointer;
}

.luceChange {
  display: flex;
  align-items: center;
}

.luce i {
  margin-left: 5px;
  font-style: italic;
  font-size: 0.7rem;
}

span.toggle-fullscreen {
  font-size: 1rem;
  font-style: italic;
  align-items: center;
}

.music {
  display: flex;
  margin: 20px auto 10px;
  order: 4;
  border-radius: 6px;
  border: 1px solid lightgrey;
  align-items: center;
}

.slider_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.volume_slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  width: 6rem;
  background: #fd0b5c;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
}

.volume_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid #fd0b5c;
  cursor: grab;
  border-radius: 100%;
}

i.volume-down,
i.volume-up {
  padding: 0 5px;
}

.playpause-track,
.next-track {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.playpause-track:hover,
.next-track:hover {
  opacity: 1;
}

i,
i.play-circle,
i.pause-circle,
i.step-forward,
i.step-backward {
  cursor: pointer;
}

.loader {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .stroke {
  background: #f1f1f1;
  height: 126%;
  width: 4px;
  border-radius: 50px;
  margin: 0 3px;
  animation: animate 1.4s linear infinite;
}

@keyframes animate {
  50% {
    height: 20%;
    background: #fd0b5c;
  }

  100% {
    background: #fd0b5c;
    height: 100%;
  }
}

.stroke:nth-child(1) {
  animation-delay: 0s;
}

.stroke:nth-child(2) {
  animation-delay: 0.3s;
}

.stroke:nth-child(3) {
  animation-delay: 0.6s;
}

.stroke:nth-child(4) {
  animation-delay: 0.9s;
}

.stroke:nth-child(5) {
  animation-delay: 0.6s;
}

.stroke:nth-child(6) {
  animation-delay: 0.3s;
}

.stroke:nth-child(7) {
  animation-delay: 0s;
}

/* end music play */
.buttons-user {
  display: flex;
  align-items: center;

  cursor: pointer;
  flex: 0;
  order: 3;
}

.buttons-user span {
  padding: 0 5px;
}

.installApp a {
  color: #091921;
}

#tooltip {
  position: relative;
  cursor: pointer;
}

#tooltiptext {
  position: absolute;
  left: 50%;
  top: 33;
  transform: translateX(-50%);
  font-family: sans-serif;
  font-size: 0.8rem;
  background-color: #000;
  color: #fff;
  white-space: nowrap;
  padding: 10px;
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#tooltiptext::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -90%;
  transform: translateX(-50%);
  border: 18px solid;
  border-color: #0000 #0000 #000 #0000;
}

#tooltip:hover #tooltiptext {
  top: 45px;
  visibility: visible;
  opacity: 1;
}

.installApp {
  order: 5;
  flex: inherit;
  margin: 10px auto;
}

/* end header */

/* main zone */

.highlighter {
  animation: fadeoutBg 4s;
  /***Transition delay 4s fadeout is class***/
  -moz-animation: fadeoutBg 4s;
  /* Firefox */
  -webkit-animation: fadeoutBg 4s;
  /* Safari and Chrome */
  -o-animation: fadeoutBg 4s;
  /* Opera */
  border-radius: 3px;
  transition: all 2s;
}

@keyframes fadeoutBg {
  from {
    color: rgb(96, 131, 228);

    zoom: 2;
  }

  /** from color **/
  to {
    color: black;

    zoom: 1;
  }

  /** to color **/
}

@-moz-keyframes fadeoutBg {
  /* Firefox */
  from {
    color: rgb(96, 131, 228);

    zoom: 2;
  }

  /** from color **/
  to {
    color: black;
    zoom: 1;
  }

  /** to color **/
}

@-webkit-keyframes fadeoutBg {
  /* Safari and Chrome */
  from {
    color: rgb(96, 131, 228);

    zoom: 2;
  }

  /** from color **/
  to {
    color: black;
    zoom: 1;
  }

  /** to color **/
}

@-o-keyframes fadeoutBg {
  /* Opera */
  from {
    color: rgb(96, 131, 228);

    zoom: 2;
  }

  /** from color **/
  to {
    color: black;
    zoom: 1;
  }

  /** to color **/
}

.flex-weather {
  padding: 1.5rem 0;
  /* flex: 1 1 7rem; */
  /* background-color: lightgreen; */
  border-bottom: 1px solid gray;
}

.content {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding-bottom: 10px;
}

.content span {
  padding: 0 10px;
  color: #000;
}

.content button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.content button:hover {
  color: gray;
}

.content input {
  border: 1px solid #d5d5d5;
  width: 80%;
  height: 40px;
  text-transform: capitalize;
  font-size: 1.5rem;
  padding: 0 10px;
  background-color: transparent;
  border-radius: 6px;
}

#output {
  line-height: 2rem;
}

#output h2 {
  font-weight: normal;
}

#output span {
  font-size: 1.3rem;
}

.bottle {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottle-img {
  text-align: center;
  position: relative;
  margin: 0 15px;
}

.bottle-img span {
  position: absolute;
  top: 44px;
  color: rgb(96, 131, 228);
  left: 8px;
}

.bottle-img p {
  line-height: 0.3;
}

.time {
  padding: 5px;
  font-size: 2.5rem;
}

/* .datetime {
    text-align: center;
    margin-bottom: 10px;

} */

.datetime h1,
.datetime h2 {
  margin: 5px;
}

h2#dayname::after,
h2#daynum::after {
  content: ',';
}

.date {
  display: flex;
  justify-content: center;
}

.date h2,
.citate h2 {
  font-weight: normal;
  font-size: 1.5rem;
}

/* clock analogic */
.clock {
  /* width: 450px;
    height: 450px;

    margin: auto; */
  width: 300px;
  height: 300px;
  margin: 20px auto;

  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/assets/img/clock.png);
  background-size: cover;
  border: 4px solid #091921;
  border-radius: 50%;
  box-shadow: 0 -15px 15px rgba(255, 255, 255, 0.05),
    inset 0 -15px 15px rgba(255, 255, 255, 0.05), 0 15px 15px rgba(0, 0, 0, 0.3),
    inset 0 15px 15px rgba(0, 0, 0, 0.3);

  /* box-shadow:  0 -15px 15px rgb(255 255 255 / 15%), inset 0 -15px 15px rgb(255 255 255 / 65%), 0px 0px 100px rgb(0 0 0 / 26%), inset 0 15px 15px rgb(0 0 0 / 30%) */
}

.clock:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  z-index: 10000;
}

.clock .hour,
.clock .min,
.clock .sec {
  position: absolute;
}

.clock .hour .hr {
  width: 160px;
  height: 215px;
}

.clock .min .mn {
  width: 190px;
  height: 240px;
}

.clock .sec .sc {
  width: 230px;
  height: 260px;
}

.hr,
.mn,
.sc {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  /* position: absolute; */
  border-radius: 50%;
}

.hr::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 110px;
  background-color: #fd0b5c;
  z-index: 10;
  border-radius: 6px 6px 0 0;
}

.mn::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 125px;
  background-color: #fff;
  z-index: 11;
  border-radius: 6px 6px 0 0;
}

.sc::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 155px;
  background-color: rgb(96, 131, 228);
  z-index: 12;
  border-radius: 6px 6px 0 0;
}

.light-theme .mn::before,
.light-theme .clock:before,
.null .mn::before,
.null .clock:before {
  background-color: #091921;
}

/* end clock analogic */

.flex-todo {
  /* background-color: lightsalmon; */
  padding: 1.5rem 1.5rem 1.5rem 0;
  /* flex: 1 1 7rem; */
  /* border: 1px solid gray; */
}

form {
  min-height: 15vh;
  /* display: flex;
    justify-content: center;
    align-items: center; */
}

form input,
form button {
  padding: 0 10px;
  border: none;
  outline: none;
  border: none;
}

.wrap-input {
  display: flex;
  justify-content: center;
}

.todo-input {
  text-transform: capitalize;
  height: 40px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  font-size: 1.5rem;
  background-color: transparent;
  /* font-weight: bold; */
  width: 100%;
}
.todo-button {
  color: #000;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border: none;
}
.todo-button:hover {
  color: gray;
}

form button {
  color: #000;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

form button span:hover {
  color: gray;
  /* background-color: gray; */
}

/* todo container */

.todo {
  margin: 0.5rem;
  width: 100%;
  /* background-color: white; */
  color: black;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  border-radius: 3px;
  padding-left: 1.2rem;
  border-bottom: 1px solid #e4e4e4;
}

.todo li {
  flex: 1;
  text-align: left;
  color: #000;
}

.trash-btn span {
  color: #fd0b5c;
  font-size: 2rem;
}

.trash-btn,
.complete-btn {
  background-color: transparent;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 1rem;
}

.complete-btn span {
  color: rgb(96, 131, 228);
  font-size: 2rem;
}

.todo-item {
  padding: 0rem 0.5rem;
  text-transform: capitalize;
}

/* .todo-item::marker, */
.completed {
  color: #fd0b5c;
}

.trash-btn span,
.complete-btn span {
  pointer-events: none;
}

.completed {
  text-decoration: line-through;
  opacity: 0.5;
}

.fall {
  transform: translateY(8rem) rotateZ(20deg);
  opacity: 0;
}

select {
  /* -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; */
  outline: none;
  color: #000;
  border: 1px solid #000;
  /* border: none; */
  cursor: pointer;
  background-color: transparent;
  /* font-size: 1rem; */
  padding: 3px;
}

.buttons-user > * {
  margin: 0 5px;
}

.dark-theme select {
  color: white;
}

.dark-theme .bottle img {
  filter: invert();
}

.dark-theme .content input::placeholder,
.dark-theme .todo-input::placeholder {
  color: white;
  opacity: 1; /* Firefox */
}

.dark-theme .content input:-ms-input-placeholder,
.dark-theme .todo-input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: white;
  font-weight: 100;
}

.dark-theme .content input::-ms-input-placeholder,
.dark-theme .todo-input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: white;
  font-weight: 100;
}

.dark-theme select option {
  color: black;
}

.select {
  margin: 1rem 0;

  float: right;
}

/* 
.select::after {
    content: '\25BC';
    position: absolute;

    top: 0;
    right: 0;
    font-size: 1rem;
    padding: 5px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select:hover::after {
    background-color: white;
    color: gray;
} */

/* footer */

.flex-footer {
  /* padding: 2rem 0; */
  height: 20vh;
  /* padding-top: 4rem; */
  /* padding-bottom: 2rem; */
  position: relative;
  /* flex: 1; */
}

/* #changeText {
    opacity: 1;
    transition: opacity 3s;
} */

.like {
  order: 5;
  /* position: absolute;
    bottom: 15px;
        margin: 1rem 0;
    right: 15px; */
  height: 5vh;
  display: flex;
  justify-content: flex-end;
  /* margin-bottom: 20px; */
  padding: 0 1rem;
}
.like a {
  display: flex;
  flex: 1;
  text-decoration: none;
}

.aw-pulsate {
  animation: pulsate 3s ease-in-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate 3s ease-in-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0.3;
  /* color: #ffffff */
}

@keyframes pulsate {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

@-webkit-keyframes pulsate {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

.donate {
  font-size: 0.7rem;
  margin-right: 10px;
}

.donate a {
  display: block;
  color: rgb(45 87 205);
}

#digital-clock {
  height: 100vh;
  background-color: #000000;
  margin: 0;
  margin: 0;
  display: flex;
  order: 6;
}
.wrapper-clock {
  margin: auto;
  padding: 20px;
}

.second-clock {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: 0;
}

.number {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 5%;
  grid-row-gap: 0;
}

.digit {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.digit__svg {
  width: 100%;
  height: auto;
  stroke: #e88565;
  stroke-width: 1px;
  fill: none;
  display: block;
  animation: pulse 100s linear infinite;
}

@keyframes pulse {
  0% {
    stroke: rgb(70, 70, 245);
  }
  10% {
    stroke: rgb(242, 69, 69);
  }
  20% {
    stroke: rgb(227, 177, 70);
  }
  30% {
    stroke: rgb(153, 223, 82);
  }
  40% {
    stroke: rgb(85, 208, 144);
  }
  50% {
    stroke: rgb(70, 194, 192);
  }
  60% {
    stroke: rgb(83, 96, 199);
  }
  70% {
    stroke: rgb(194, 88, 230);
  }
  80% {
    stroke: rgb(162, 63, 126);
  }
  90% {
    stroke: rgb(206, 37, 37);
  }
  100% {
    stroke: rgb(9, 73, 213);
  }
}
/* // end digital-clock */

.d-flex {
  display: flex;
}

.j-center {
  justify-content: center;
}

.a-items {
  align-items: center;
}

html {
  /* font-size: 62.5%; */
}

/* nav {
        flex-direction: column-reverse;
    } */
.flex-clock {
  padding: 1.5rem 0;
  border-bottom: 1px solid gray;
}

.toggle-fullscreen {
  display: none;
}

.wrap-input {
  width: 90%;
  margin: auto;
}

.todo-input {
  width: 100%;
}

/* .citate {
    padding: 1rem;
} */

/* start blockquote */

.blockquote-titlu {
  font-style: italic;
  font-size: 1.6rem;
  text-align: left;
}

.blockquote-name {
  text-align: right;
  margin-top: 1rem;
}

.blockquote-name::before {
  content: '\2014\0020';
}

.blockquote p {
  opacity: 1;
  transition: opacity 3s;
  /* font-family: cursive;
    font-weight: bold; */
  /* font-size: 2rem; */
}

.blockquote-titlu::before {
  content: '\201c';
  font-size: 60px;
  display: block;
  margin-bottom: -15px;
}

.hide {
  opacity: 0 !important;
}

select#language {
  text-transform: uppercase;
}

/* 
#language::after {
    content: '\25BC';
    position: absolute;

    top: 0;
    right: 0;
    font-size: 1rem;
    padding: 5px;
    pointer-events: none;
    transition: all 0.3s ease;
} */

/* end  blockquote */

body {
  overflow: initial;
}

.blockquote {
  width: 100%;
  padding: 15px;
}

.flex-footer {
  height: auto;
}

.blockquote-titlu {
  font-size: 1.5rem;
}

.blockquote-titlu::before {
  font-size: 2.5rem;
}

@media all and (min-width: 640px) {

  .clock .sec .sc {
    height: 265px;
  }

  .luce i {
    font-size: 1rem;
  }

  .blockquote {
    width: 550px;
    margin: auto;
    padding: 0;
  }

  .installApp {
    order: 5;
    flex: initial;
    margin: 0;
  }

  body {
    font-size: 1rem;
  }

  .toggle-fullscreen {
    display: flex;
  }

  .flex-header {
    flex-wrap: nowrap;
  }

  .music {
    margin: 0;
    order: 3;
  }

  .buttons-user {
    order: 4;
  }

  .flex-clock {
    flex: 1 1 50%;
    order: 2;
    /* background-color: #fd0b5c; */
  }

  .flex-weather {
    flex: 1 1 50%;
    order: 1;
  }

  .flex-todo {
    flex: 1;
    order: 2;
    padding: 1rem;
  }

  .flex-footer {
    order: 4;
    /* padding: 1.5rem; */
  }
}

@media all and (min-width: 800px) {
  
  .clock .sec .sc {
    height: 315px;
  }
  .clock .min .mn {
    height: 300px;
  }
  .clock .hour .hr {
    height: 250px;
  }

  .hr::before {
    height: 130px;
  }
  .mn::before {
    height: 150px;
  }
  .sc::before {
    height: 180px;
  }

  .clock {
    width: 380px;
    height: 380px;
  }
}

@media all and (min-width: 1024px) {
  section.section-test {
    display: block;
  }
  section {
    height: 100vh;
    scroll-snap-align: start;
  
    position: relative;
  }
  .wrapper {
    height: 100vh;
  }
  .clock {
    width: 360px;
    height: 360px;
  }

  .flex-header {
    height: 5vh;
  }

  .luce {
    flex: 1;
  }

  .flex-weather,
  .flex-clock,
  .flex-todo {
    flex: 1;
    padding: 1rem;
    border: none;
    height: 70vh;
  }

  .content input,
  .todo-input,
  .date h2 {
    font-size: 1.4rem;
  }
}

@media (min-height: 667px) and (min-width: 1024px) {
  .flex-clock {
    height: 550px;
  }

  body {
    overflow: auto;
    /* overflow-y: h; */
    /* overscroll-behavior-y: none; */
  }
}

@media all and (min-width: 1200px) {

    .clock .sec .sc {
        height: 365px;
      }
      .clock .min .mn {
        height: 335px;
      }
      .clock .hour .hr {
        height: 280px;
      }
    
      .hr::before {
        height: 140px;
      }
      .mn::before {
        height: 165px;
      }
      .sc::before {
        height: 210px;
      }
    


  .flex-clock {
    flex: 2;
  }

  .flex-header h4 {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    width: 80px;
  }

  .clock {
    width: 400px;
    height: 400px;
  }

  .citate {
    width: 50%;
    margin: auto;
    min-height: 15vh;
  }

  .citate h2 {
    font-size: 2rem;
  }
}
