@font-face {
  font-family: Ecuid;
  font-weight: 400;
  src: url(/font/EuclidCircularA-Regular.woff) format("woff"), url(/font/EuclidCircularA-Regular.woff2) format("woff2");
}
@font-face {
  font-family: Ecuid;
  font-weight: 500;
  src: url(/font/EuclidCircularA-Medium.woff) format("woff"), url(/font/EuclidCircularA-Medium.woff2) format("woff2");
}
@font-face {
  font-family: Ecuid;
  font-weight: 600;
  src: url(/font/EuclidCircularA-SemiBold.woff) format("woff"), url(/font/EuclidCircularA-SemiBold.woff2) format("woff2");
}
@font-face {
  font-family: Ecuid;
  font-weight: 700;
  src: url(/font/EuclidCircularA-Bold.woff) format("woff"), url(/font/EuclidCircularA-Bold.woff2) format("woff2");
}
button,
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --accent-color: #ffbd59;
  --accent-color-hover: #feab30;
}

.accent {
  color: var(--accent-color);
}

input:not([name]),
select {
  border: 2px solid #64687a;
  background: #fff;
  outline: 0;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  appearance: none;
  text-align: center;
  padding: 5px 18px;
}

body {
  font-family: Ecuid, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #3b3b3b;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
.container--fluid {
  padding: 0;
}

.wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: 300px minmax(700px, 1fr);
}
@media (max-width: 767px) {
  .wrapper {
    grid-template-columns: 1fr;
  }
}

.admin-main {
  padding: 30px 0;
}

.aside {
  padding: 10px;
  border-right: 2px solid rgba(254, 172, 48, 0.3);
}
.aside .admin {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
}

@media (min-width: 720px) {
  .main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.login {
  text-align: center;
}

.login__title {
  font-size: 60px;
  margin: 30px 0;
}

.login__desc {
  max-width: 350px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.login__hello {
  display: block;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 10px;
}

.form__form {
  max-width: 350px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field {
  position: relative;
  height: 56px;
  width: 100%;
}
.field svg {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 2;
}
.field input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-min-logical-width: calc(100% - 16px);
}
.field label {
  margin-bottom: 10px;
  display: block;
  text-align-last: left;
}

.field input {
  width: 100%;
  height: 56px;
  border: 0.15em solid #64687a;
  border-radius: 1em;
  padding: 0 3.5em;
  font-size: inherit;
  outline: none;
}

.button {
  display: inline-block;
  width: 100%;
  padding: 1.2em;
  font-size: 18px;
  border: 0;
  background: var(--accent-color);
  border-radius: 0.3em;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-color-hover);
}

.error {
  color: red;
  font-size: 14px;
}

.profile {
  padding: 30px 0;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.profile--bg {
  background: #ffbd59;
  padding: 15px 0;
}
.profile__back {
  color: #3b3b3b;
  text-decoration: none;
}
.profile__back svg {
  display: block;
}
.profile__title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}
.profile__header {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.profile__header p {
  grid-column: 1/span 2;
  font-weight: 500;
}
.profile__header p span {
  color: #feab30;
}
.profile__name span {
  color: #feab30;
}
.profile__exit {
  justify-self: flex-end;
  text-decoration: none;
  color: #f45858;
  border: 1px solid #f45858;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.admin__title {
  margin-bottom: 20px;
  font-size: 60px;
}
.admin__total-time {
  margin: 20px 0;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin__total-time span:nth-child(2) {
  color: #feab30;
}
.admin__list {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
@media (max-width: 767px) {
  .admin__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .admin__list h2 {
    grid-column: 1/span 2;
  }
}
@media (max-width: 767px) {
  .admin__item:nth-child(1) {
    grid-column: 1/span 2;
  }
}
.admin__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: #3b3b3b;
  font-size: 20px;
}

.header {
  background: #ffbd59;
  width: 100%;
  padding: 20px 0;
  color: #fff;
}
.header__back {
  color: #fff;
  text-decoration: none;
}

.stats {
  max-width: 400px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.stats__btn {
  margin-bottom: 20px;
}
.stats__select {
  width: 100%;
  outline: 0;
  text-align: center;
}

.table {
  border-spacing: 0;
  width: 100%;
  min-width: 350px;
  max-height: 500px;
  padding: 0;
  margin: 0;
}
.table td {
  padding: 15px;
  border-bottom: 2px solid #ffbd59;
  text-align: center;
}
.table tr:nth-child(odd) {
  background: rgba(255, 189, 89, 0.3);
}
.table tr:nth-child(even) {
  background: rgba(217, 130, 0, 0.3);
}
.table__head {
  background: var(--accent-color);
  font-weight: 700;
}

.table-stats__result {
  color: #999a9f;
  font-size: 14px;
  font-weight: 400;
  margin-top: 4px;
}
.table-stats__result span {
  color: #feab30;
  font-weight: 600;
}
.table-stats__add-btn {
  color: #3b3b3b;
  padding: 10px;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 30px;
}
.table-stats__add-btn svg {
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .table-stats__add-btn:hover svg {
    transform: rotate(30deg);
  }
}
.table-stats:not(:last-child) {
  margin-bottom: 60px;
}
.table-stats__wrapper {
  overflow: auto;
}
.table-stats__title-section {
  font-size: 22px;
}
.table-stats__title-section svg {
  margin-left: 20px;
}
.table-stats__title {
  margin-bottom: 20px;
  padding: 0 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.table-stats .container {
  padding: 0;
}

.users .container {
  padding: 0;
}
.users__list {
  width: 100%;
}
.users__user {
  list-style: none;
  border-bottom: 2px solid rgba(255, 189, 89, 0.3);
}
.users__user a {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  text-decoration: none;
  color: #3b3b3b;
  padding: 15px;
  font-size: 22px;
  font-weight: 700;
}
.users__user a span:nth-child(2) {
  color: #feab30;
  border-radius: 8px;
  border: 1px solid #ffbd59;
  overflow: hidden;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: 400;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(59, 59, 59, 0.1);
  backdrop-filter: blur(2px);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  transform: translate(-100%, 0px);
  opacity: 0;
  pointer-events: none;
}
.dialog[open] {
  transform: translate(0px, 0px);
  opacity: 1;
  pointer-events: all;
}
.dialog__body {
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.dialog__title {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 22px;
}
.dialog__btns {
  display: grid;
  gap: 23px;
  grid-template-columns: 1fr 1fr;
}
.dialog .table-simple {
  margin-bottom: 30px;
}

.table-simple {
  width: 100%;
  font-weight: 500;
  font-size: 18px;
}
.table-simple tr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 189, 89, 0.2);
}
.table-simple tr span {
  color: #feab30;
}

.btn {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  background: #ffbd59;
  border: 0;
  cursor: pointer;
  box-shadow: 4px 0 14px rgba(255, 189, 89, 0.5);
  border-radius: 8px;
  overflow: hidden;
}
.btn--border {
  border: 2px solid #ffbd59;
  background: #fff;
}

.admin-accepted__label {
  margin-top: 30px;
  margin-bottom: 20px;
}
.admin-accepted__status {
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.3);
  height: 46px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffee50;
  font-family: inherit;
  color: inherit;
  font-size: 16px;
}
.admin-accepted__status--accepted {
  background: #66ac5b;
}

/*# sourceMappingURL=style.css.map */
