@import url("https://fonts.googleapis.com/css2?family=Major+Mono+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus,
*::after:focus,
*::before:focus {
  outline: none;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(350px, 20%) 1fr;
      grid-template-columns: minmax(350px, 20%) 1fr;
}

.overlay {
  display: none;
}

.sideBar {
  background: #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sideBar_showHide {
  display: none;
}

.sideBar_logo {
  padding: 2rem 1rem;
  opacity: 0.8;
  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;
  -webkit-box-flex: nowrap;
      -ms-flex: nowrap;
          flex: nowrap;
  font-family: "Major Mono Display", monospace;
}

.sideBar_logo img {
  height: 5rem;
}

.sideBar_logo h2 {
  font-size: 2.5rem;
}

.sideBar nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1rem;
  padding: 2rem 1rem;
  padding-right: 0;
}

.sideBar nav a.main-links {
  text-decoration: none;
}

.sideBar nav a.main-links button {
  -webkit-box-shadow: 0 0.3rem 3.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.3rem 3.5rem rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border: none;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  width: 100%;
  font-size: 1.3rem;
  background: #f0f0f0;
  color: #272727;
  text-align: left;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.sideBar nav a.main-links button:hover {
  background: #a7a7a7;
  color: white;
}

.sideBar nav a.main-links button.active {
  -webkit-box-shadow: 0 0 0 black;
          box-shadow: 0 0 0 black;
  position: relative;
  background: #272727;
  color: #f0f0f0;
}

.sideBar nav a.main-links button.active::after, .sideBar nav a.main-links button.active::before {
  content: "";
  position: absolute;
  right: 0;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  background: #f0f0f0;
}

.sideBar nav a.main-links button.active::after {
  top: 100%;
  -webkit-box-shadow: 0.5rem -0.5rem 0 #272727;
          box-shadow: 0.5rem -0.5rem 0 #272727;
}

.sideBar nav a.main-links button.active::before {
  bottom: 100%;
  -webkit-box-shadow: 0.5rem 0.5rem 0 #272727;
          box-shadow: 0.5rem 0.5rem 0 #272727;
}

.sideBar nav a.secondary-links {
  padding-left: 2rem;
}

.sideBar nav a.secondary-links button {
  -webkit-box-shadow: 0 0.3rem 3.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.3rem 3.5rem rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border: none;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  width: 100%;
  font-size: 1rem;
  background: #f0f0f0;
  color: #272727;
  text-align: left;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  -webkit-transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.sideBar nav a.secondary-links button:hover {
  background: silver;
  color: white;
}

.sideBar nav a.secondary-links button.active {
  position: relative;
  background: #414141;
  color: white;
}

@media (max-width: 814px) {
  .wrapper {
    display: block;
    -ms-grid-columns: 1fr 100%;
        grid-template-columns: 1fr 100%;
  }
  .overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: black;
    opacity: 0.6;
    display: block;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .overlay.active {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  .sideBar {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    -webkit-box-shadow: 2rem 0 2rem rgba(0, 0, 0, 0.2);
            box-shadow: 2rem 0 2rem rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 90%;
    max-width: 350px;
    height: 100%;
    z-index: 100;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sideBar_showHide {
    cursor: pointer;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2rem;
    height: 6rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    background: #f0f0f0;
    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;
  }
  .sideBar_showHide i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    color: #272727;
    font-size: 2rem;
  }
  .sideBar_showHide.active i {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sideBar.active {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .sideBar nav {
    padding-right: 1rem;
  }
  .sideBar nav a.main-links button {
    border-radius: 1rem;
  }
  .sideBar nav a.main-links button.active::after, .sideBar nav a.main-links button.active::before {
    display: none;
  }
  .sideBar nav a.secondary-links {
    padding-left: 0;
  }
  .sideBar nav a.secondary-links button {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 1rem 0.5rem;
    background: none;
    border-radius: 0;
    border-bottom: 3px solid #f0f0f0;
    text-align: center;
  }
  .sideBar nav a.secondary-links button:hover {
    background: #cdcdcd;
    color: #272727;
  }
  .sideBar nav a.secondary-links button.active {
    border-bottom: 3px solid #272727;
    background: #cdcdcd;
    color: #272727;
  }
}

.d-none {
  display: none;
}

.main {
  overflow: auto;
  overflow-x: hidden;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #272727;
}

.main .timer {
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.main .timer_main {
  background: #e92a68;
  background: -webkit-gradient(linear, left top, right top, color-stop(23%, #e92a68), color-stop(98%, #0094da));
  background: linear-gradient(90deg, #e92a68 23%, #0094da 98%);
  border-radius: 10px;
  padding: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #f0f0f0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .timer_main .entity {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main .timer_main .number {
  font-size: 4rem;
}

.main .timer_main .seperator {
  font-size: 4rem;
  position: relative;
  bottom: 1.1rem;
}

.main .timer_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.main .timer_buttons a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10rem;
          flex: 1 1 10rem;
}

.main .timer_buttons a button {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  width: 100%;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1.5rem;
  text-transform: capitalize;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main .formSection {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 467px) and (min-width: 372px) {
  .main .timer_main .seperator_3 {
    color: black !important;
    display: none;
  }
  .main .timer_main .entity {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 16px;
            flex: 1 1 16px;
  }
}

@media (max-width: 371px) and (min-width: 0px) {
  .main .timer_main .seperator_2 {
    color: black !important;
    display: none;
  }
  .main .timer_main .entity {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 6rem;
            flex: 1 1 6rem;
  }
}

section {
  margin-top: 2rem;
  background: #f0f0f0;
  padding: 1.5rem;
  border-radius: 10px;
}

section form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  max-width: 70rem;
  margin: 0 auto;
  width: 100%;
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
}

section form .input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

section form textarea {
  width: 100%;
  height: 15rem;
  resize: none;
}

section form label {
  font-size: 1.2rem;
}

section form input,
section form textarea {
  padding: 0.3rem 1rem;
}

section form select {
  padding: 0.3rem 0.83rem;
}

section form input,
section form select,
section form textarea {
  font-size: 1.2rem;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background: #272727;
  border-radius: 4px;
  color: #f0f0f0;
}

section form input[disabled],
section form select[disabled],
section form textarea[disabled] {
  opacity: 0.6;
}

section form [type="submit"] {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-size: 1.5rem;
}

section form [for="fileUpload"] {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

section form [type="submit"],
section form [for="fileUpload"] {
  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;
  padding: 0.3rem 2rem;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.tableResponsiveHandler {
  border: 1px solid #bfbfbf;
  width: 100%;
  overflow: auto;
  max-height: 50rem;
}

.tableResponsiveHandler table {
  width: 100%;
}

.tableResponsiveHandler table th,
.tableResponsiveHandler table td {
  padding: 1rem;
}

.tableResponsiveHandler table thead th {
  padding: 1rem 3rem;
  white-space: nowrap;
  border-bottom: 5px solid #272727;
  border-left: 1px solid #bfbfbf;
}

.tableResponsiveHandler table thead th:nth-child(1) {
  border-left: none;
}

.tableResponsiveHandler table th {
  font-family: "Ubuntu Mono", monospace;
  font-weight: 700;
  font-size: 1.5rem;
}

.tableResponsiveHandler table td {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.tableResponsiveHandler table tbody th {
  border-left: none !important;
}

.tableResponsiveHandler table tbody th,
.tableResponsiveHandler table tbody td {
  border-bottom: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
}

.button_danger {
  background: #e92a68;
  border: 3px solid #e92a68;
  color: white;
}

.button_danger:hover {
  background: transparent;
  color: #e92a68;
}

.button_info {
  background: #2196f3;
  border: 3px solid #2196f3;
  color: white;
}

.button_info:hover {
  background: transparent;
  color: #2196f3;
}

.button_warning {
  background: #ffc107;
  border: 3px solid #ffc107;
  color: #272727;
}

.button_warning:hover {
  background: transparent;
  color: #ffc107;
}

.button_success {
  background: #4caf50;
  border: 3px solid #4caf50;
  color: #272727;
}

.button_success:hover {
  background: transparent;
  color: #4caf50;
}

.button_dark {
  background: transparent;
  border: 3px solid #272727;
  color: #272727;
}

.button_dark:hover {
  color: #f0f0f0;
  background: #272727;
}

.optionsPage .form {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.optionsPage input[type="number"] {
  -moz-appearance: textfield;
}
/*# sourceMappingURL=styles.css.map */