@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'DM Sans', Arial, Helvetica, sans-serif;
}

:root {
  --radio-hover: #223B61;
  --my-span: #fff;
  --app-container: #1f1d2b;
  --app-container: #111827;
  --main-color: #fff;
  --secondary-color: rgba(255, 255, 255, .8);
  --projects-section: #1f2937;
  --link-color: rgba(255, 255, 255, .8);
  --link-color-hover: rgba(195, 207, 244, 0.1);
  --link-color-active-bg: rgba(195, 207, 244, 0.2);
  --button-bg: #1f2937;
  --search-area-bg: #1f2937;
  --star: #ffd92c;
  --light-font: rgba(255, 255, 255, .8);
  --more-list-bg: #2f3142;
  --more-list-bg-hover: rgba(195, 207, 244, 0.1);
  --more-list-shadow: rgba(195, 207, 244, 0.1);
  --vendia: #fff;
  --message: rgb(224, 64, 64);
  --row-bg: rgba(8, 29, 75, 0.7);
  --form-control-color: rebeccapurple;
  --radio-buttons: #223B61;
  --radio-border: #3966aa;
  --create-delete: #223B61;
  --inputs: transparent;
  --chevron: url(../img/chevron-down-dark.png);
}

.dark:root {
  --radio-hover: #cce1ff;
  --my-span: #1f2937;
  --app-container: #f3f6fd;
  --main-color: #1f1c2e;
  --secondary-color: #4A4A4A;
  --link-color: #1f1c2e;
  --link-color-hover: #c3cff4;
  --link-color-active: #fff;
  --link-color-active-bg: #1f1c2e;
  --projects-section: #fff;
  --more-list-bg: #fff;
  --more-list-bg-hover: #f6fbff;
  --more-list-shadow: rgba(209, 209, 209, 0.4);
  --button-bg: #1f1c24;
  --search-area-bg: #fff;
  --star: #1ff1c2;
  --vendia: #223B61;
  --row-bg: #ececec;
  --radio-buttons: #d9e3ff;
  --radio-border: #0069d9;
  --create-delete: #007bff9d;
  --inputs: transparent;
  --chevron: url(../img/chevron-down.webp);
}

* {
  text-decoration: none;
}

html,
body {
  width: 100%;
  height: 100vh;
  margin: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--app-container);
}

button,
a {
  cursor: pointer;
}

.searchcontainer {
  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;
  margin-top: 30px;
}

.searchcontainer .result-container {
  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-flex: 4;
      -ms-flex: 4;
          flex: 4;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.searchcontainer .result-container .result {
  background-color: #81cdff44;
}

.searchcontainer .result-container .result .name-container {
  padding: 25px;
  color: #fff;
}

.searchcontainer .result-container .result .name-container i {
  padding-bottom: 10px;
  font-size: 45px;
}

.searchcontainer .result-container .result .name-container p {
  color: #fff;
}

#eh-table-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--main-color);
  text-align: center;
}

#eh-table-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

#eh-table-container form label {
  color: var(--main-color);
  font-size: 1.4rem;
}

#eh-table-container form input {
  color: var(--main-color);
  font-size: 1.4rem;
}

#eh-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--main-color);
  font-size: 1.7rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 10px auto;
}

.red {
  color: red;
}

.blue {
  color: #1e90ff;
}

.green {
  color: #35d192;
}

.purple {
  color: #9f7dea;
}

.turquoise {
  color: #04d4b9;
}

.pink {
  color: #d962ec;
}

.app-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  background-color: var(--app-container);
  -webkit-transition: .2s;
  transition: .2s;
  max-width: 100vw;
}

.app-container button,
.app-container input,
.app-container optgroup,
.app-container select,
.app-container textarea {
  font-family: 'DM Sans', sans-serif;
}

.app-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  overflow: hidden;
  padding: 16px 24px 24px 0;
}

.app-header {
  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;
  width: 100%;
  padding: 16px 24px;
  position: relative;
}

.app-header-left, .app-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app-header-left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.app-header-right button {
  margin-left: 10px;
}

.app-icon {
  width: 26px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  position: relative;
}

.app-icon:before, .app-icon:after {
  content: '';
  position: absolute;
  width: 12px;
  height: 2px;
  border-radius: 4px;
  background-color: var(--main-color);
  left: 50%;
  -webkit-transform: translatex(-50%);
          transform: translatex(-50%);
}

.app-icon:before {
  top: -6px;
}

.app-icon:after {
  bottom: -6px;
}

.app-name {
  color: var(--main-color);
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 32px;
}

.mode-switch {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--main-color);
  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;
}

.search-wrapper {
  border-radius: 20px;
  border: 1px solid #c9c9c9;
  background-color: var(--search-area-bg);
  padding-right: 18px;
  height: 40px;
  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;
  width: 100%;
  max-width: 480px;
  color: var(--light-font);
  overflow: hidden;
}

.dark .search-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #333;
}

.dark .search-wrapper i {
  color: #333;
}

.dark .search-wrapper:focus-within {
  border: 3px solid #333;
  -webkit-transition: 50ms;
  transition: 50ms;
}

.search-wrapper:focus-within {
  border: 3px solid #fff;
  -webkit-transition: 50ms;
  transition: 50ms;
}

.search-input {
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  outline: none;
  height: 100%;
  padding: 0 20px;
  font-size: 16px;
  background-color: var(--search-area-bg);
  color: var(--main-color);
}

.search-input:placeholder {
  color: var(--main-color);
  opacity: .6;
}

.add-btn {
  color: #fff;
  background-color: var(--button-bg);
  padding: 0;
  border: 0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.notification-btn {
  color: var(--main-color);
  padding: 0;
  border: 0;
  background-color: transparent;
  height: 32px;
  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;
}

.profile-btn {
  padding: 0;
  border: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 12px;
  border-left: 2px solid #ddd;
}

.profile-btn img {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-right: 4px;
}

.profile-btn span {
  color: var(--main-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

.page-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}

.app-sidebar {
  padding: 40px 16px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.app-sidebar-link {
  color: var(--main-color);
  color: var(--link-color);
  margin: 16px 0;
  -webkit-transition: .2s;
  transition: .2s;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  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;
  background: transparent;
  border: none;
  z-index: 2;
}

.app-sidebar-link .fa-house {
  color: #1e90ff;
}

.app-sidebar-link .fa-heart-pulse {
  color: red;
}

.app-sidebar-link .fa-chart-simple {
  color: #ff8f1e;
}

.app-sidebar-link .fa-scale-balanced {
  color: #35d192;
}

.app-sidebar-link .fa-umbrella-beach {
  color: #35d192;
}

.app-sidebar-link .fa-clock {
  color: #04d4b9;
}

.app-sidebar-link .fa-circle-question {
  color: #9f7dea;
}

.app-sidebar-link i {
  font-size: 1.6rem;
  z-index: -1;
}

.app-sidebar-link:hover {
  background-color: var(--link-color-hover);
}

.app-sidebar-link.active {
  background-color: var(--link-color-active-bg);
}

.projects-section {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  background-color: var(--projects-section);
  border-radius: 32px;
  padding: 32px 32px 0 32px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects-section-line {
  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;
  padding-bottom: 32px;
}

.projects-section-header {
  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;
  margin-bottom: 24px;
  color: var(--main-color);
}

.projects-section-header p {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  opacity: .9;
  margin: 0;
  color: var(--main-color);
}

.projects-section-header .time {
  font-size: 20px;
}

.projects-section .general {
  font-size: 24px;
  color: var(--main-color);
  margin-top: 0;
  margin-bottom: 2px;
  font-weight: 700;
}

.projects-section .description {
  font-size: 15px;
  color: var(--main-color);
  margin-bottom: 15px;
}

.projects-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.projects-status p {
  font-size: 16px;
  color: var(--message);
}

.item-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 16px;
}

.status-number {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--main-color);
}

.status-type {
  position: relative;
  padding-right: 24px;
  color: var(--secondary-color);
}

.view-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.view-btn {
  width: 36px;
  height: 36px;
  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: 6px;
  border-radius: 4px;
  background-color: transparent;
  border: none;
  color: var(--main-color);
  margin-left: 8px;
  -webkit-transition: .2s;
  transition: .2s;
}

.view-btn.active {
  background-color: var(--link-color-active-bg);
  color: var(--link-color-active);
}

.view-btn:not(.active):hover {
  background-color: var(--link-color-hover);
  color: var(--link-color-active);
}

.projects-section {
  overflow: auto;
  padding-bottom: 0;
}

.project-boxes {
  margin: 0 -8px;
  overflow-y: none;
  padding-bottom: 20px;
}

.project-boxes.jsGridView {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.project-boxes.jsGridView .project-box-wrapper {
  width: 33.3%;
  color: #111;
}

.project-box {
  --main-color-card: #dbf6fd;
  border-radius: 30px;
  padding: 16px;
  background-color: var(--main-color-card);
}

.project-box-header {
  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;
  margin-bottom: 16px;
  color: var(--main-color);
}

.project-box-header span {
  color: #4A4A4A;
  opacity: .7;
  font-size: 14px;
  line-height: 16px;
}

.project-box-content-header {
  text-align: center;
  margin-bottom: 16px;
}

.project-box-content-header p {
  margin: 0;
}

.project-box-wrapper {
  padding: 8px;
  -webkit-transition: .2s;
  transition: .2s;
}

.project-btn-more {
  padding: 0;
  height: 14px;
  width: 24px;
  height: 24px;
  position: relative;
  background-color: transparent;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.more-wrapper {
  position: relative;
}

.box-content-header {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  opacity: .7;
}

.box-content-subheader {
  font-size: 16px;
  line-height: 24px;
  opacity: .7;
}

.box-progress {
  display: block;
  height: 4px;
  border-radius: 6px;
}

.box-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fff;
  margin: 8px 0;
}

.box-progress-header {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  margin: 0;
}

.box-progress-percentage {
  text-align: right;
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.project-box-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 16px;
  position: relative;
}

.project-box-footer:after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.6);
  width: calc(100% + 32px);
  top: 0;
  left: -16px;
  height: 1px;
}

.participants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.participants img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

.participants img:not(:first-child) {
  margin-left: -8px;
}

.add-participant {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.6);
  margin-left: 6px;
  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;
}

.days-left {
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  border-radius: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 6px 16px;
  font-weight: 700;
}

.mode-switch.active .moon {
  fill: var(--main-color);
}

.vendia {
  fill: var(--vendia);
}

@media screen and (max-width: 980px) {
  .project-boxes.jsGridView .project-box-wrapper {
    width: 50%;
  }
  .status-type:after {
    width: 4px;
    height: 4px;
  }
  .item-status {
    margin-right: 0;
  }
}

@media screen and (max-width: 720px) {
  .app-name,
  .profile-btn span {
    display: none;
  }
  .add-btn,
  .notification-btn,
  .mode-switch {
    width: 20px;
    height: 20px;
  }
  .add-btn svg,
  .notification-btn svg,
  .mode-switch svg {
    width: 16px;
    height: 16px;
  }
  .app-header-right button {
    margin-left: 4px;
  }
}

@media screen and (max-width: 520px) {
  .projects-section {
    overflow: auto;
  }
  .project-boxes {
    overflow-y: visible;
  }
  .app-sidebar,
  .app-icon {
    display: none;
  }
  .app-content {
    padding: 16px 12px 24px 12px;
  }
  .view-btn {
    width: 24px;
    height: 24px;
  }
  .app-header {
    padding: 16px 10px;
  }
  .app-header .app-header-left svg {
    margin-right: 50px;
  }
  .search-input {
    max-width: 120px;
  }
  .project-boxes.jsGridView .project-box-wrapper {
    width: 100%;
  }
  .projects-section {
    padding: 24px 16px 0 16px;
  }
  .profile-btn img {
    width: 24px;
    height: 24px;
  }
  .app-header {
    padding: 10px;
  }
  .projects-section-header p,
  .projects-section-header .time {
    font-size: 18px;
  }
  .status-type {
    padding-right: 4px;
  }
  .status-type:after {
    display: none;
  }
  .search-input {
    font-size: 14px;
  }
  .box-content-header {
    font-size: 12px;
    line-height: 16px;
  }
  .box-content-subheader {
    font-size: 12px;
    line-height: 16px;
  }
  .project-boxes.jsListView .project-box-header > span {
    font-size: 10px;
  }
  .box-progress-header {
    font-size: 12px;
  }
  .box-progress-percentage {
    font-size: 10px;
  }
  .days-left {
    font-size: 8px;
    padding: 6px 6px;
    text-align: center;
  }
  .project-boxes.jsListView .project-box > * {
    margin-right: 10px;
  }
  .project-boxes.jsListView .more-wrapper {
    right: 2px;
    top: 10px;
  }
}

i {
  font-size: 20px;
}

.box {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box::after {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.box:hover {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.box:hover::after {
  opacity: 1;
}

.project-box-wrapper:hover .project-box-content-header i {
  -webkit-animation: 'flip-up';
          animation: 'flip-up';
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.all-data {
  font-family: 'DM Sans', Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  background-color: transparent;
  cursor: default;
}

.all-data td, .all-data th {
  padding: 15px;
  text-align: center;
  font-weight: 400;
  color: var(--main-color);
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.truncateme {
  text-overflow: ellipsis;
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.show {
  display: none;
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

#idheader {
  font-weight: bold;
  color: #01ade7;
  -webkit-animation: fadeIn 0.7s;
          animation: fadeIn 0.7s;
}

#toggleIDText {
  margin-top: 20px;
  margin-bottom: 5px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: var(--app-container);
  color: var(--main-color);
  border-radius: 10px;
  font-weight: bold;
  outline: none;
  border: 2px solid var(--main-color);
  font-size: 17px;
  -webkit-animation: fadeIn 0.7s;
          animation: fadeIn 0.7s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#toggleIDText i {
  margin-right: 10px;
}

#toggleIDText:hover {
  background: #843bd2;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff;
}

.all-data thead {
  background-color: transparent;
  border-bottom: 2px solid var(--main-color);
  font-weight: bold;
}

.row {
  background: transparent;
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
}

.row:hover {
  background: var(--row-bg);
}

.spinner {
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-transition: 2s;
  transition: 2s;
}

.loader-container {
  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;
  width: 100%;
  margin-top: 50px;
  background: transparent;
}

.loader-container #loader {
  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;
  background: transparent;
}

.loader-container #loader h1 {
  color: var(--main-color);
}

.loader-container #loader i {
  font-size: 40px;
  -webkit-transition: 0s;
  transition: 0s;
  color: var(--main-color);
}

#health-container .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  height: 100px;
  border-radius: 5px;
  padding: 20px 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

#health-container .wrapper .option {
  background: transparent;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  border: 2px solid lightgrey;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 20px;
  background: var(--app-container);
  color: var(--main-color);
}

#health-container .wrapper .option .dot {
  height: 20px;
  width: 20px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
  margin-right: 12px;
}

#health-container .wrapper .option .dot::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: deepskyblue;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#health-container .wrapper .option:hover {
  background-color: var(--radio-hover);
  border-color: var(--create-delete);
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff !important;
}

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

.option-1 {
  margin-left: 0 !important;
}

#option-1:checked:checked ~ .option-1 {
  border-color: var(--radio-border);
  background: var(--radio-buttons);
}

#option-1:checked:checked ~ .option-1 .dot {
  background: #fff;
}

#option-1:checked:checked ~ .option-1 .dot::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#option-1:checked:checked ~ .option-1 span {
  color: var(--my-span);
}

#option-2:checked:checked ~ .option-2 {
  border-color: var(--radio-border);
  background: var(--radio-buttons);
}

#option-2:checked:checked ~ .option-2 .dot {
  background: #fff;
}

#option-2:checked:checked ~ .option-2 .dot::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#option-2:checked:checked ~ .option-2 span {
  color: var(--my-span);
}

#option-3:checked:checked ~ .option-3 {
  border-color: var(--radio-border);
  background: var(--radio-buttons);
}

#option-3:checked:checked ~ .option-3 .dot {
  background: #fff;
}

#option-3:checked:checked ~ .option-3 .dot::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#option-3:checked:checked ~ .option-3 span {
  color: var(--my-span);
}

#option-4:checked:checked ~ .option-4 {
  border-color: var(--radio-border);
  background: var(--radio-buttons);
}

#option-4:checked:checked ~ .option-4 .dot {
  background: #fff;
}

#option-4:checked:checked ~ .option-4 .dot::before {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

#option-4:checked:checked ~ .option-4 span {
  color: var(--my-span);
}

.wrapper .option span {
  font-size: 20px;
  color: var(--main-color);
}

#average-employee-health {
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
}

.create-delete-wrap, .submit-buttons-wrap-create {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  -webkit-animation: fadeIn 0.7s ease;
          animation: fadeIn 0.7s ease;
  -webkit-transition: 1s;
  transition: 1s;
}

.create-delete-wrap .create-btn, .create-delete-wrap .delete-btn, .submit-buttons-wrap-create .create-btn, .submit-buttons-wrap-create .delete-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: var(--app-container);
  color: var(--main-color);
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  border-radius: 10px;
  font-weight: bold;
  outline: none;
  border: 2px solid var(--main-color);
  font-size: 17px;
}

.create-delete-wrap .create-btn i, .create-delete-wrap .delete-btn i, .submit-buttons-wrap-create .create-btn i, .submit-buttons-wrap-create .delete-btn i {
  margin-right: 10px;
}

.create-delete-wrap .create-btn, .submit-buttons-wrap-create .create-btn {
  margin-right: 20px;
}

.create-delete-wrap .create-btn:hover, .submit-buttons-wrap-create .create-btn:hover {
  background: #01ade7;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff;
}

.create-delete-wrap .delete-btn:hover, .submit-buttons-wrap-create .delete-btn:hover {
  background: #e04040;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff;
}

input[type="button"] {
  border: none;
  outline: none;
}

.input-group-create {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: fadeIn 0.7s ease;
          animation: fadeIn 0.7s ease;
  -webkit-transition: 1s;
  transition: 1s;
}

.input-group-create .input-group-1, .input-group-create .input-group-2 {
  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;
  margin-bottom: 20px;
}

.input-group-create .input-group-1 input, .input-group-create .input-group-1 select, .input-group-create .input-group-2 input, .input-group-create .input-group-2 select {
  background: var(--inputs);
  color: var(--main-color);
  border: 0;
  border-bottom: 2px solid var(--main-color);
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 5px;
  height: 40px;
}

.input-group-create .input-group-1 select, .input-group-create .input-group-2 select {
  font-size: 16px;
  color: var(--main-color);
}

.input-group-create .input-group-1 select option, .input-group-create .input-group-2 select option {
  color: black;
}

.input-group-delete {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: fadeIn 0.7s ease;
          animation: fadeIn 0.7s ease;
  -webkit-transition: 1s;
  transition: 1s;
}

.input-group-delete input {
  background: var(--inputs);
  color: var(--main-color);
  border: 0;
  border-bottom: 2px solid var(--main-color);
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 5px;
}

.submit-buttons-wrap-delete {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  -webkit-animation: fadeIn 0.7s ease;
          animation: fadeIn 0.7s ease;
  -webkit-transition: 1s;
  transition: 1s;
}

.submit-buttons-wrap-delete .create-btn, .submit-buttons-wrap-delete .delete-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background: var(--app-container);
  color: var(--main-color);
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  border-radius: 10px;
  font-weight: bold;
  outline: none;
  border: 2px solid var(--main-color);
  font-size: 17px;
}

.submit-buttons-wrap-delete .create-btn i, .submit-buttons-wrap-delete .delete-btn i {
  margin-right: 10px;
}

.submit-buttons-wrap-delete .create-btn {
  margin-right: 20px;
}

.submit-buttons-wrap-delete .create-btn:hover {
  background: #01ade7;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff;
}

.submit-buttons-wrap-delete .delete-btn:hover {
  background: #e04040;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: #fff;
}

.create-alert {
  display: none;
  padding: 20px;
  color: var(--main-color);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #01ade7;
  background-color: rgba(1, 174, 231, 0.447);
  -webkit-animation: flyInUp 0.3s;
          animation: flyInUp 0.3s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.create-alert p {
  margin: 0;
}

.create-alert .closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 40px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.create-alert .closebtn:hover {
  color: red;
}

.delete-alert {
  display: none;
  padding: 20px;
  color: var(--main-color);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #843bd2;
  background-color: rgba(132, 59, 210, 0.341);
  -webkit-animation: flyInUp 0.3s;
          animation: flyInUp 0.3s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.delete-alert p {
  margin: 0;
}

.delete-alert .closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 40px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.delete-alert .closebtn:hover {
  color: red;
}

.incomplete-alert {
  display: none;
  padding: 20px;
  color: var(--main-color);
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid red;
  background-color: rgba(254, 43, 43, 0.324);
  -webkit-animation: fadeIn 0.3s;
          animation: fadeIn 0.3s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.incomplete-alert p {
  margin: 0;
}

.incomplete-alert .closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 40px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.incomplete-alert .closebtn:hover {
  color: red;
}

canvas {
  max-width: 100%;
  max-height: 50vh;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.svg-div {
  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;
}

.svg-div svg {
  max-height: 50px;
  margin-bottom: 5px;
}

#loader-wrap {
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 50px;
}

.radio-wrapper {
  margin-bottom: 0;
  padding-bottom: 0;
}

@-webkit-keyframes flip-up {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes flip-up {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes flyInUp {
  from {
    margin-top: 2000px;
    overflow-y: hidden;
  }
  to {
    margin-top: 0px;
    overflow-y: show;
  }
}

@keyframes flyInUp {
  from {
    margin-top: 2000px;
    overflow-y: hidden;
  }
  to {
    margin-top: 0px;
    overflow-y: show;
  }
}
/*# sourceMappingURL=styles.css.map */