:root {
  --accent-color: #f87272;
  --font: Kumbh Sans;
}

* {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

@media only screen and (min-width: 87.5em) {
  html {
    font-size: 65%;
  }
}

@media only screen and (max-width: 56.25em) {
  html {
    font-size: 58%;
  }
}

@media only screen and (max-width: 37.5em) {
  html {
    font-size: 57%;
  }
}

@media only screen and (max-width: 31.25em) {
  html {
    font-size: 52%;
  }
}

body {
  font-family: var(--font);
  color: #d6dfff;
  background-color: #1e213e;
  font-size: 1.4rem;
  height: 100vh;
}

button {
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  display: block;
}

label {
  display: inline-block;
}

input {
  outline: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
  color: #1e213e;
}

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

input[type="number"] {
  -moz-appearance: textfield;
}

h1 {
  font-size: 10rem;
  line-height: 1.2em;
  letter-spacing: -5px;
  margin-right: 5px;
}

h2 {
  font-size: 2.8rem;
  line-height: 1.21em;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.18em;
  letter-spacing: 0.9em;
  margin-right: -0.9em;
  text-transform: uppercase;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.23em;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.body-1 {
  font-size: 1.4rem;
  line-height: 1.28em;
}

.body-2 {
  font-size: 1.2rem;
  line-height: 1.16em;
}

.container {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 100vh;
}

.header {
  text-align: center;
}

.header h4 {
  margin-top: 1.7rem;
}

.header h4 + h4 > span {
  color: var(--accent-color);
}

.options {
  background-color: #161932;
  border-radius: 10rem;
  padding: 2.4rem 0.8rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.options .option {
  display: inline-block;
  width: 11.9rem;
  position: relative;
  z-index: 2;
}

.options .option__input {
  display: none;
}

.options .option__label {
  cursor: pointer;
}

.options .option__input:checked + label {
  color: #1e213e;
}

.options .option__background {
  width: 11.9rem;
  height: 4.5rem;
  background-color: var(--accent-color);
  border-radius: 10rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.25s cubic-bezier(0, -0.51, 0, 1.25);
  transition: all 0.25s cubic-bezier(0, -0.51, 0, 1.25);
}

.timer {
  background-color: #161932;
  width: 35.5rem;
  height: 35.5rem;
  border-radius: 100rem;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.timer__progress {
  width: 100%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.timer__progress--ring {
  width: 95%;
  height: 95%;
}

.timer__progress--path {
  stroke: var(--accent-color);
}

.timer__control {
  margin-top: 1.9rem;
  cursor: pointer;
  position: relative;
  text-align: center;
}

.timer__control .reset {
  margin-top: 1.5rem;
  margin-bottom: -1.9rem;
  opacity: 0;
  -webkit-transform: translateY(200%);
          transform: translateY(200%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.timer__control .reset.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.timer::before {
  content: "";
  width: 110%;
  height: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: inherit;
  background: linear-gradient(315deg, #2e325a 0%, #0e112a 100%);
  z-index: -1;
}

@media only screen and (min-width: 87.5em) {
  .timer {
    width: 38rem;
    height: 38rem;
  }
}

.settings-btn svg {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.settings-btn button:hover svg {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}

.settings-btn button:hover svg > path {
  opacity: 1;
}

.settings-container {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: rgba(9, 11, 26, 0.5);
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 99;
  visibility: hidden;
}

.settings-container.active {
  visibility: visible;
}

.settings-container.active .settings {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.settings {
  background-color: white;
  color: #161932;
  width: 54rem;
  border-radius: 25px;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 50% 130%;
          transform-origin: 50% 130%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.settings__header {
  padding: 3.4rem 4rem 3.1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(22, 25, 50, 0.1);
}

.settings__header .close-btn:hover {
  cursor: pointer;
}

.settings__body {
  padding: 0 4rem;
}

.settings__footer {
  padding: 0 4rem;
}

.settings__footer .body-2 {
  margin-top: 1rem;
}

.settings__footer button {
  font-size: 1.6rem;
  background-color: var(--accent-color);
  padding: 1.6rem 4.7rem;
  border-radius: 10rem;
  color: #1e213e;
  margin: 0 auto;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.settings__footer button:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

@media only screen and (max-width: 37.5em) {
  .settings {
    width: 95vw;
  }
}

@media only screen and (max-width: 31.25em) {
  .settings {
    width: 80vw;
    text-align: center;
  }
}

.form__row {
  padding: 2.4rem 0;
}

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}

.form label {
  font-size: 1.2rem;
  color: rgba(30, 33, 62, 0.4);
}

.form__row:first-child h4 {
  margin-bottom: 2.2rem;
}

.form__row:first-child label {
  margin-bottom: 0.8rem;
}

.form__row:first-child input {
  width: 14rem;
  padding: 1.5rem 1.6rem;
  border-radius: 10px;
  background-color: #eff1fa;
}

.form__row:first-child .form__inputs--box {
  position: relative;
}

.form__row:first-child .form__inputs--arrows {
  display: -ms-grid;
  display: grid;
  gap: 0.9rem;
  position: absolute;
  top: 50%;
  right: 1.6rem;
}

.form__row:first-child .form__inputs--arrows svg:hover path {
  stroke-opacity: 1;
}

@media only screen and (max-width: 31.25em) {
  .form__row:first-child .form__inputs--arrows {
    top: 0.8rem;
  }
}

@media only screen and (max-width: 31.25em) {
  .form__row:first-child .form__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8rem;
  }
  .form__row:first-child .form__inputs--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form__row:not(:last-child) {
  border-bottom: 1px solid rgba(22, 25, 50, 0.1);
}

.form__row:not(:first-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__row:not(:first-child) .form__inputs {
  gap: 1rem;
}

.form__row:not(:first-child) .form__inputs input {
  display: none;
}

.form__row:not(:first-child) .form__inputs label {
  background-color: #eff1fa;
  width: 4rem;
  height: 4rem;
  line-height: 1;
  padding: 1.4rem 1rem;
  border-radius: 100rem;
}

.form__row:not(:first-child) .form__inputs input[name="font"]:checked + label {
  background-color: #161932;
  color: white;
}

@media only screen and (max-width: 31.25em) {
  .form__row:not(:first-child) .form__inputs {
    gap: 1.6rem;
  }
}

@media only screen and (max-width: 31.25em) {
  .form__row:not(:first-child) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.8rem;
  }
}

.form__row:last-child .form__inputs label {
  padding-inline: 1.25rem;
}

.form__row:last-child .form__inputs label svg {
  opacity: 0;
}

.form__row:last-child input[name="color"]:checked + label svg {
  opacity: 1;
}

.form .form__inputs--box label[for="kumbh-sans"] {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.5rem;
}

.form .form__inputs--box label[for="roboto-sans"] {
  font-family: "Roboto Sans", sans-serif;
  font-size: 1.5rem;
}

.form .form__inputs--box label[for="space-mono"] {
  font-family: "Space Mono", sans-serif;
  font-size: 1.5rem;
}

.form .form__inputs--box label[for="salmon"] {
  background-color: #f87272;
}

.form .form__inputs--box label[for="cyan"] {
  background-color: #72f4f8;
}

.form .form__inputs--box label[for="violet"] {
  background-color: #d882f8;
}


/*# sourceMappingURL=/main.2c981e56.css.map */