@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@700&family=Roboto+Slab:wght@700&family=Space+Mono:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #1e213f;
  color: #d7e0ff;
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 700;
  width: 100vw;
  overflow: hidden;
}

header {
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: 100vh;
  gap: 4rem;
  place-items: center;
  overflow: hidden;
}

.timers {
  border-radius: 50px;
  background-color: #161932;
  padding: 5px;
  z-index: 1;
}

ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.timer__btn {
  background-color: inherit;
  border: none;
  border-radius: 50px;
  height: 48px;
  width: 120px;
  text-align: center;
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  outline: none;
}

.timer__btn:hover {
  color: white;
}

.timer__btn-active {
  color: #1e213f;
  background-color: #f87070;
}

.timer__btn-active:hover {
  color: #1e213f;
}

h1 {
  font-size: 100px;
  line-height: 120px;
  letter-spacing: -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

h2 {
  font-size: 28px;
  line-height: 34px;
}

h3 {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 15px;
  text-transform: uppercase;
  position: absolute;
  top: 70%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

h3:hover {
  color: white;
}

h4 {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #161932;
}

.clock {
  text-align: center;
  position: relative;
  border-radius: 50%;
  -webkit-box-shadow: 50px 50px 100px 0px #121530;
          box-shadow: 50px 50px 100px 0px #121530;
  margin-top: 1rem;
}

.clock__container {
  border-radius: 50%;
  -webkit-box-shadow: -50px -50px 100px 0px #272c5a;
          box-shadow: -50px -50px 100px 0px #272c5a;
}

svg {
  stroke-width: 3px;
  stroke: #f87070;
  fill: #161932;
  -webkit-transform: rotate(-90deg) rotatex(180deg);
          transform: rotate(-90deg) rotatex(180deg);
}

.anim {
  -webkit-animation-name: stroke-anim;
          animation-name: stroke-anim;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes stroke-anim {
  0% {
    stroke-dasharray: 285, 285;
  }
  100% {
    stroke-dasharray: 0, 285;
  }
}

@keyframes stroke-anim {
  0% {
    stroke-dasharray: 285, 285;
  }
  100% {
    stroke-dasharray: 0, 285;
  }
}

img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.logo {
  width: auto;
  height: auto;
  cursor: auto;
}

.modal {
  top: 50%;
  left: 50%;
  background-color: #fff;
  width: 540px;
  height: 490px;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 10;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 25px;
}

.modal-hideout {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
          transform: translate(-50%, -50%) scale(1.5);
  -webkit-transition: none;
  transition: none;
}

.modal__fonts, .modal__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1rem;
}

.modal__fonts label, .modal__colors label {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 16px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.modal__fonts {
  border-bottom: 2px solid #e3e1e1;
}

.modal__fonts input:checked + label {
  background-color: #161932;
  color: white;
}

.modal__fonts label {
  background-color: #e3e1e1;
  color: #1e213f;
  position: relative;
}

.modal__fonts label:after {
  content: "Aa";
  font: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 15px;
  line-height: 15px;
}

.modal__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__colors label {
  position: relative;
}

.modal__colors input:checked + label:after, .modal__colors input:checked + label:before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50%;
  left: 50%;
}

.modal__colors input:checked + label:after {
  height: 3px;
  width: 9px;
  top: 57%;
  left: 40%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.modal__colors input:checked + label:before {
  height: 3px;
  width: 15px;
  left: 60%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.modal__timers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 2px solid #e3e1e1;
}

.modal__timers label {
  font-size: 12px;
  line-height: 12px;
  color: #1e213f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.modal__timers label input {
  margin-top: 5px;
  width: 140px;
  height: 48px;
  border-radius: 10px;
  background-color: #eff1fa;
  border: none;
  color: #161932;
  font-size: 14px;
  line-height: 14px;
  font-family: "Kumbh Sans", sans-serif;
  padding-left: 1rem;
  outline: none;
}

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 0;
}

.close {
  height: 14px;
  width: 14px;
}

.head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2rem;
  border-bottom: 2px solid #e3e1e1;
}

.head h2 {
  color: #161932;
}

form {
  padding: 2rem;
  font-family: "Kumbh Sans", sans-serif;
}

.red {
  background-color: #f87070;
}

.blue {
  background-color: #70f3f8;
}

.purple {
  background-color: #d881f8;
}

.Kumbh {
  font-family: "Kumbh Sans", sans-serif;
}

.Mono {
  font-family: "Mono Space", sans-serif;
}

.Roboto {
  font-family: "Roboto Slab", sans-serif;
}

input[type="radio"] {
  display: none;
}

input[type="button"] {
  width: 120px;
  height: 48px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-align: center;
  background-color: #f87070;
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: inherit;
  color: white;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

input[type="button"]:hover {
  background-color: #f19191;
}

input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-add,
.btn-subs {
  position: absolute;
  width: 15px;
  height: 10px;
  background-repeat: no-repeat;
  opacity: 0.25;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btn-add:hover,
.btn-subs:hover {
  opacity: 1;
}

.btn-add {
  right: 15%;
  top: 40%;
  background-image: url("./assets/icon-arrow-up.svg");
}

.btn-subs {
  right: 15%;
  top: 70%;
  background-image: url("./assets/icon-arrow-down.svg");
}

@media (max-width: 560px) {
  .modal {
    height: 570px;
    width: 300px;
  }
  .modal__timers .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal__timers label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .btn-add,
  .btn-subs {
    right: 8%;
  }
  .btn-add {
    top: 35%;
  }
  .btn-subs {
    top: 65%;
  }
  .modal__fonts,
  .modal__colors {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 420px) {
  .timer__btn {
    width: 100px;
    font-size: 12px;
    line-height: 15px;
  }
  .time {
    font-size: 80px;
    line-height: 105px;
  }
  h3 {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 13px;
  }
  .timers {
    padding: 0;
  }
}

@media (max-width: 420px) {
  svg {
    width: 250px;
    height: 250px;
  }
}

@media (max-height: 690px) {
  header {
    gap: 1rem;
  }
}
/*# sourceMappingURL=style.css.map */