@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap");
:root {
  --primary: #0099b9;
  --primary-bg: #ecfbff;
  --background: #f0f4f5;
  --light: #ffffff;
  --dark: #000000;
  --gray: #7a7a7a;
  --gray-bg: #dee2e6;
  --secondary: #017a92;
  --danger: #dc3545;
  --warning: #ffc107;
  --success: #28a745;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--background);
  font-family: "Sora", sans-serif;
  font-weight: 400;
}

.global-message {
  width: 320px;
  background: var(--dark);
  border-radius: 8px;
  border: 1px solid var(--dark);
  position: fixed;
  top: 20%;
  right: 100px;
  overflow: hidden;
  z-index: 99999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s, visibility 0.5s;
}
.global-message.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
.global-message.success .message-header .red i {
  color: var(--success);
}
.global-message.success .message-body .line {
  background: var(--success);
}
.global-message.error .message-header .red i {
  color: var(--danger);
}
.global-message.error .message-body .line {
  background: var(--danger);
}
.global-message .message-header {
  border-bottom: 1px solid #424549;
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
}
.global-message .message-header .red strong {
  font-size: 10px;
  color: var(--light);
}
.global-message .message-header button {
  border: none;
  background: transparent;
  color: var(--light);
}
.global-message .message-body {
  padding: 10px;
  font-size: 12px;
  color: var(--light);
  position: relative;
}
.global-message .message-body .line {
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  width: 100%;
  animation: moveLine 5s linear forwards;
}

@keyframes moveLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
nav.topbar {
  width: calc(100% - 250px);
  position: fixed;
  right: 0;
  top: 0;
  background: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 10;
}
nav.topbar img {
  width: 60px;
}
nav.topbar .content {
  display: flex;
}
nav.topbar .content .account-wrapper .account-dropdown,
nav.topbar .content .account-wrapper .news-dropdown,
nav.topbar .content .news-wrapper .account-dropdown,
nav.topbar .content .news-wrapper .news-dropdown {
  position: fixed;
  width: 320px;
  background: var(--background);
  box-shadow: 0px 0px 35px -3px var(--dark);
  transition: all 300ms ease;
  display: none;
  top: 67px;
  right: 100px;
}
nav.topbar .content .account-wrapper .account-dropdown::after,
nav.topbar .content .account-wrapper .news-dropdown::after,
nav.topbar .content .news-wrapper .account-dropdown::after,
nav.topbar .content .news-wrapper .news-dropdown::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease-in;
  top: -20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid var(--background);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}
nav.topbar .content .account-wrapper .account-dropdown.active,
nav.topbar .content .account-wrapper .news-dropdown.active,
nav.topbar .content .news-wrapper .account-dropdown.active,
nav.topbar .content .news-wrapper .news-dropdown.active {
  display: block;
}
nav.topbar .content .account-wrapper .account-dropdown .title,
nav.topbar .content .account-wrapper .news-dropdown .title,
nav.topbar .content .news-wrapper .account-dropdown .title,
nav.topbar .content .news-wrapper .news-dropdown .title {
  color: var(--gray);
  font-weight: 500;
  font-size: 17px;
  padding: 10px;
  border-bottom: 1px solid var(--gray-bg);
}
nav.topbar .content .account-wrapper .account-dropdown ul,
nav.topbar .content .account-wrapper .news-dropdown ul,
nav.topbar .content .news-wrapper .account-dropdown ul,
nav.topbar .content .news-wrapper .news-dropdown ul {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}
nav.topbar .content .account-wrapper .account-dropdown ul li,
nav.topbar .content .account-wrapper .news-dropdown ul li,
nav.topbar .content .news-wrapper .account-dropdown ul li,
nav.topbar .content .news-wrapper .news-dropdown ul li {
  border-bottom: 1px solid var(--gray-bg);
}
nav.topbar .content .account-wrapper .account-dropdown ul li:last-child,
nav.topbar .content .account-wrapper .news-dropdown ul li:last-child,
nav.topbar .content .news-wrapper .account-dropdown ul li:last-child,
nav.topbar .content .news-wrapper .news-dropdown ul li:last-child {
  border-bottom: none;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a,
nav.topbar .content .account-wrapper .news-dropdown ul li a,
nav.topbar .content .news-wrapper .account-dropdown ul li a,
nav.topbar .content .news-wrapper .news-dropdown ul li a {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--dark);
  text-decoration: none;
  cursor: pointer;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a label,
nav.topbar .content .account-wrapper .news-dropdown ul li a label,
nav.topbar .content .news-wrapper .account-dropdown ul li a label,
nav.topbar .content .news-wrapper .news-dropdown ul li a label {
  cursor: pointer;
  font-size: 14px;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a:hover,
nav.topbar .content .account-wrapper .news-dropdown ul li a:hover,
nav.topbar .content .news-wrapper .account-dropdown ul li a:hover,
nav.topbar .content .news-wrapper .news-dropdown ul li a:hover {
  background: var(--gray-bg);
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .image,
nav.topbar .content .account-wrapper .news-dropdown ul li a .image,
nav.topbar .content .news-wrapper .account-dropdown ul li a .image,
nav.topbar .content .news-wrapper .news-dropdown ul li a .image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .image img,
nav.topbar .content .account-wrapper .news-dropdown ul li a .image img,
nav.topbar .content .news-wrapper .account-dropdown ul li a .image img,
nav.topbar .content .news-wrapper .news-dropdown ul li a .image img {
  width: 45px;
  height: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .image i,
nav.topbar .content .account-wrapper .news-dropdown ul li a .image i,
nav.topbar .content .news-wrapper .account-dropdown ul li a .image i,
nav.topbar .content .news-wrapper .news-dropdown ul li a .image i {
  font-size: 20px;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .notifications,
nav.topbar .content .account-wrapper .news-dropdown ul li a .notifications,
nav.topbar .content .news-wrapper .account-dropdown ul li a .notifications,
nav.topbar .content .news-wrapper .news-dropdown ul li a .notifications {
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .notifications label,
nav.topbar .content .account-wrapper .news-dropdown ul li a .notifications label,
nav.topbar .content .news-wrapper .account-dropdown ul li a .notifications label,
nav.topbar .content .news-wrapper .news-dropdown ul li a .notifications label {
  font-size: 14px;
  line-height: 16px;
  max-width: 220px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
nav.topbar .content .account-wrapper .account-dropdown ul li a .notifications p,
nav.topbar .content .account-wrapper .news-dropdown ul li a .notifications p,
nav.topbar .content .news-wrapper .account-dropdown ul li a .notifications p,
nav.topbar .content .news-wrapper .news-dropdown ul li a .notifications p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 0;
  max-width: 220px;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gray);
}
nav.topbar .content .account-wrapper {
  padding: 10px;
  background: var(--background);
  margin-right: 57px;
}
nav.topbar .content .account-wrapper button {
  display: flex;
  align-items: center;
  border: none;
  background: none;
}
nav.topbar .content .account-wrapper button .image {
  background: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  margin-bottom: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  text-transform: uppercase;
}
nav.topbar .content .account-wrapper button .details {
  text-align: start;
  font-size: 13px;
}
nav.topbar .content .account-wrapper button .details .name {
  font-weight: 500;
}
nav.topbar .content .account-wrapper button .details .job-title {
  color: var(--gray);
}
nav.topbar .content .account-wrapper .account-dropdown::after {
  right: 253px;
}
nav.topbar .content .news-wrapper {
  display: flex;
  position: relative;
  margin-right: 57px;
  justify-content: center;
}
nav.topbar .content .news-wrapper button {
  display: flex;
  align-items: center;
  border: none;
  background: none;
  font-size: 25px;
  position: relative;
  color: var(--background);
}
nav.topbar .content .news-wrapper button .new {
  width: 12px;
  height: 12px;
  top: 20px;
  right: 2px;
  background: var(--success);
  position: absolute;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  pointer-events: none;
}
nav.topbar .content .news-wrapper .news-dropdown::after {
  right: 34px;
}
nav.topbar .content .chat-wrapper {
  display: flex;
  position: relative;
  margin-right: 25px;
  justify-content: center;
}
nav.topbar .content .chat-wrapper a {
  display: flex;
  align-items: center;
  border: none;
  background: none;
  font-size: 25px;
  position: relative;
  text-decoration: none;
  color: var(--background);
}
nav.topbar .content .chat-wrapper a .new {
  width: 12px;
  height: 12px;
  top: 17px;
  right: -2px;
  background: var(--success);
  position: absolute;
  border-radius: 50%;
  animation: pulse-animation 2s infinite;
  pointer-events: none;
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 128, 0, 0.8);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
nav.topbar .content .navigation-toggle {
  border: none;
  background: none;
  font-size: 20px;
  transform: rotate(-90deg);
  transition: all 300ms ease;
  display: none;
  color: var(--background);
}
nav.topbar .content .navigation-toggle.rotated {
  transform: rotate(0deg);
}

@media only screen and (max-width: 991px) {
  nav.topbar {
    width: 100%;
  }
  nav.topbar .content .account-wrapper {
    margin-right: 35px;
  }
  nav.topbar .content .account-wrapper .account-dropdown::after {
    right: 285px;
  }
  nav.topbar .content .news-wrapper .news-dropdown::after {
    right: 89px;
  }
  nav.topbar .content .chat-wrapper {
    margin-right: 52px;
  }
  nav.topbar .content .navigation-toggle {
    display: unset;
  }
}
@media only screen and (max-width: 767px) {
  nav.topbar {
    width: 100%;
  }
  nav.topbar .content .account-wrapper .account .details {
    display: none;
  }
  nav.topbar .content .account-wrapper .account .image img {
    margin-right: 0;
  }
  nav.topbar .content .account-wrapper .account-dropdown::after {
    right: 177px;
  }
}
@media only screen and (max-width: 576px) {
  nav.topbar {
    width: 100%;
  }
  nav.topbar .content .account-wrapper .account .details {
    display: none;
  }
  nav.topbar .content .account-wrapper .account .image img {
    margin-right: 0;
  }
}
@media only screen and (max-width: 500px) {
  nav.topbar {
    height: 67px;
  }
  nav.topbar .brand {
    display: none;
  }
  nav.topbar .content {
    width: 100%;
    justify-content: space-around;
  }
  nav.topbar .content .account-wrapper .account-dropdown,
  nav.topbar .content .account-wrapper .news-dropdown,
  nav.topbar .content .news-wrapper .account-dropdown,
  nav.topbar .content .news-wrapper .news-dropdown {
    width: 100%;
    right: 0;
  }
  nav.topbar .content .account-wrapper {
    background: none;
    margin-right: 0;
    padding: 0;
  }
  nav.topbar .content .account-wrapper .account .image img {
    width: 40px;
    height: 40px;
  }
  nav.topbar .content .account-wrapper .account-dropdown::after {
    right: 80.8%;
  }
  nav.topbar .content .news-wrapper {
    margin-right: 0;
  }
  nav.topbar .content .news-wrapper .news-dropdown::after {
    right: 56.6%;
  }
  nav.topbar .content .chat-wrapper {
    margin-right: 0;
  }
}
@media only screen and (max-width: 420px) {
  nav.topbar .content .account-wrapper .account-dropdown::after {
    right: 80%;
  }
  nav.topbar .content .news-wrapper .news-dropdown::after {
    right: 55%;
  }
}
@media only screen and (max-width: 380px) {
  nav.topbar .content .account-wrapper .account-dropdown::after {
    right: 78.8%;
  }
  nav.topbar .content .news-wrapper .news-dropdown::after {
    right: 54%;
  }
}
nav.sidebar {
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  width: 250px;
  background: var(--secondary);
  padding: 10px 0;
  transition: all 500ms ease;
  z-index: 1;
}
nav.sidebar .brand {
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}
nav.sidebar .brand .logo {
  width: 55px;
}
nav.sidebar .brand .short {
  font-size: 20px;
}
nav.sidebar .brand .long {
  font-size: 12px;
}
nav.sidebar .content {
  margin-top: 25px;
}
nav.sidebar .content ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
nav.sidebar .content ul li {
  margin-bottom: 10px;
  width: 100%;
}
nav.sidebar .content ul li.add {
  display: flex;
  justify-content: center;
}
nav.sidebar .content ul li.add button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 10px;
  font-size: 15px;
  display: flex;
  width: 200px;
  margin-bottom: 20px;
  border-radius: 0;
  transition: all 500ms ease;
}
nav.sidebar .content ul li.add button .icon {
  width: 20%;
}
nav.sidebar .content ul li.add button .error-text {
  width: 80%;
}
nav.sidebar .content ul li.add button:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
nav.sidebar .content ul li.disabled a {
  background: var(--gray);
  color: var(--gray-bg);
  cursor: not-allowed;
  pointer-events: none;
}
nav.sidebar .content ul li a {
  display: flex;
  width: 90%;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  color: #bdd0fe;
  padding: 10px;
  font-size: 15px;
  text-decoration: none;
  border-left: 2px solid transparent;
}
nav.sidebar .content ul li a:hover {
  background: rgba(243, 243, 248, 0.05);
  border-left: 2px solid rgba(255, 255, 255, 0.5);
}
nav.sidebar .content ul li a.active {
  background: rgba(243, 243, 248, 0.2);
  color: var(--light);
  border-left: 2px solid var(--light);
}
nav.sidebar .content ul li a .icon {
  width: 20%;
}
nav.sidebar .content ul li a .error-text {
  width: 80%;
}

@media only screen and (max-width: 991px) {
  nav.sidebar {
    right: -110%;
    left: unset;
    top: 67px;
    height: calc(100vh - 67px);
  }
  nav.sidebar .content ul li a {
    float: right;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
  }
  nav.sidebar .content ul li a.active, nav.sidebar .content ul li a:hover {
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid var(--light);
  }
}
@media only screen and (max-width: 500px) {
  nav.sidebar {
    width: 100%;
  }
}
main {
  float: right;
  width: calc(100% - 250px);
  margin-top: 67px;
  min-height: calc(100vh - 67px);
  padding: 20px;
}

@media only screen and (max-width: 991px) {
  main {
    width: 100%;
  }
}
section.auth {
  width: 450px;
  background: var(--light);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: var(--light);
  position: relative;
  padding-top: 70px;
  border: 1px solid var(--gray);
}
section.auth .logo {
  width: 135px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 0%;
  left: 50%;
}
section.auth .title {
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--gray);
  font-weight: 600;
  letter-spacing: 0.2px;
}
section.auth .back {
  position: absolute;
  left: -45px;
  top: 50px;
  background: var(--light);
  padding: 10px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  text-decoration: none;
  color: var(--gray);
  transition: all 300ms ease;
}
section.auth .back:hover {
  left: -55px;
}
section.auth a:not(.back) {
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 10px;
  border-radius: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  border: 2px solid var(--background);
  height: 55px;
  transition: all 300ms ease;
  position: relative;
}
section.auth a:not(.back):hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.auth a:not(.back) .image {
  width: 35%;
  display: flex;
  justify-content: center;
}
section.auth a:not(.back) .image img {
  width: 35px;
  height: 35px;
}
section.auth a:not(.back) span {
  width: 65%;
  display: flex;
  color: var(--gray);
  letter-spacing: 0.4px;
  font-size: 18px;
}
section.auth .input-area {
  margin-bottom: 20px;
  position: relative;
}
section.auth .input-area label {
  position: absolute;
  top: -13px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
section.auth .input-area input {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  height: 55px;
}
section.auth .input-area.error {
  background: var(--danger);
}
section.auth .input-area.error input {
  border: 2px solid var(--danger);
}
section.auth .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  font-size: 14px;
}
section.auth button {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--gray);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
section.auth button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

section.employees .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.employees .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.employees .menu .actions {
  display: flex;
  gap: 20px;
}
section.employees .menu .actions input {
  background: none;
  border: 1px solid var(--gray);
  font-size: 14px;
  padding: 5px 10px;
}
section.employees .menu .actions button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 300ms ease;
}
section.employees .menu .actions button:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.employees .employee-table .card-wrapper {
  margin-bottom: 20px;
}
section.employees .employee-table .card-wrapper .card {
  padding: 15px;
  background: var(--light);
  border: none;
  border-radius: 7px;
}
section.employees .employee-table .card-wrapper .card .card-top {
  display: flex;
  justify-content: space-between;
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon {
  position: relative;
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon .image {
  background: var(--primary);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  margin-bottom: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  text-transform: uppercase;
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon .activity {
  position: relative;
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon .activity span {
  width: 15px;
  height: 15px;
  position: absolute;
  bottom: 3px;
  left: 38px;
  border-radius: 50%;
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon .activity .active {
  background: var(--success);
}
section.employees .employee-table .card-wrapper .card .card-top .user .icon .activity .suspended {
  background: var(--danger);
}
section.employees .employee-table .card-wrapper .card .card-top .user .name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
section.employees .employee-table .card-wrapper .card .card-top .user .position {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 15px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown button {
  background: none;
  border: none;
  color: var(--dark);
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown button i {
  font-size: 25px;
  cursor: pointer;
  color: var(--dark);
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul {
  padding-bottom: 0;
  border-radius: 7px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li {
  border-bottom: 1px solid var(--gray-bg);
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li.delete {
  border-bottom: none;
  background: var(--danger);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li.delete button {
  color: var(--light);
  text-align: center;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li.delete button:hover {
  background: var(--danger);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li.delete button i {
  color: var(--light);
  text-align: center;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li.label {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
  padding-bottom: 7px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li button {
  font-size: 14px;
  padding: 7px 0 7px 10px;
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li button:hover {
  background: var(--background);
}
section.employees .employee-table .card-wrapper .card .card-top .settings .dropdown ul li button i {
  font-size: 14px;
}
section.employees .employee-table .card-wrapper .card .card-bottom {
  background: var(--background);
  border-radius: 7px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-information {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .branch .title,
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .created_at .title {
  color: var(--gray);
  font-size: 10px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .branch span,
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .created_at span {
  font-size: 13px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .created_at {
  text-align: end;
  color: var(--dark);
  font-size: 13px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-information .branch {
  text-align: start;
  color: var(--dark);
  font-size: 13px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts {
  display: flex;
  flex-direction: column;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .phone,
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .email {
  display: flex;
  gap: 5px;
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .phone i,
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .email i {
  color: var(--secondary);
}
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .phone span,
section.employees .employee-table .card-wrapper .card .card-bottom .user-contacts .email span {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark);
}

@media screen and (max-width: 767px) {
  section.employees .menu {
    display: flex;
    flex-direction: column;
  }
  section.employees .menu .actions {
    margin-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  section.employees .menu .actions {
    flex-direction: column-reverse;
    display: flex;
    width: 100%;
  }
  section.employees .menu .actions button,
  section.employees .menu .actions input {
    width: 100%;
    text-align: center;
  }
}
#addEmployee .modal-body,
#editEmployee .modal-body {
  padding: 35px 20px 20px 20px;
}
#addEmployee .modal-body .input-area,
#editEmployee .modal-body .input-area {
  margin-bottom: 20px;
  position: relative;
}
#addEmployee .modal-body .input-area label,
#editEmployee .modal-body .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#addEmployee .modal-body .input-area label span,
#editEmployee .modal-body .input-area label span {
  color: var(--danger);
}
#addEmployee .modal-body .input-area input,
#addEmployee .modal-body .input-area select,
#editEmployee .modal-body .input-area input,
#editEmployee .modal-body .input-area select {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  color: var(--dark);
  height: 55px;
  background: var(--light);
}
#addEmployee .modal-body .input-area.error,
#editEmployee .modal-body .input-area.error {
  background: var(--danger);
}
#addEmployee .modal-body .input-area.error input,
#addEmployee .modal-body .input-area.error select,
#addEmployee .modal-body .input-area.error textarea,
#editEmployee .modal-body .input-area.error input,
#editEmployee .modal-body .input-area.error select,
#editEmployee .modal-body .input-area.error textarea {
  border: 2px solid var(--danger);
}
#addEmployee .modal-body .input-area.error .error-text,
#editEmployee .modal-body .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
  font-size: 14px;
}
#addEmployee .modal-body button,
#editEmployee .modal-body button {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
#addEmployee .modal-body button:hover,
#editEmployee .modal-body button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

section.residents .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.residents .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.residents .menu .actions {
  display: flex;
  gap: 20px;
}
section.residents .menu .actions input {
  background: none;
  border: 1px solid var(--gray);
  font-size: 14px;
  padding: 5px 10px;
}
section.residents .employee-table .card-wrapper {
  margin-bottom: 20px;
}
section.residents .employee-table .card-wrapper .card {
  padding: 15px;
  background: var(--light);
  border: none;
  border-radius: 7px;
  text-decoration: none;
}
section.residents .employee-table .card-wrapper .card .card-top {
  display: flex;
  justify-content: space-between;
}
section.residents .employee-table .card-wrapper .card .card-top .user .icon {
  position: relative;
}
section.residents .employee-table .card-wrapper .card .card-top .user .icon .image {
  background: var(--primary);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  margin-bottom: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  text-transform: uppercase;
}
section.residents .employee-table .card-wrapper .card .card-top .user .name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
section.residents .employee-table .card-wrapper .card .card-top .user .age {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 15px;
}
section.residents .employee-table .card-wrapper .card .card-top .user .age span {
  font-weight: 600;
}
section.residents .employee-table .card-wrapper .card .card-top .settings {
  display: flex;
  flex-direction: column;
}
section.residents .employee-table .card-wrapper .card .card-top .settings a,
section.residents .employee-table .card-wrapper .card .card-top .settings button {
  border: none;
  text-decoration: none;
  background: none;
  padding: 0;
}
section.residents .employee-table .card-wrapper .card .card-top .settings a i,
section.residents .employee-table .card-wrapper .card .card-top .settings button i {
  color: var(--secondary);
  font-size: 20px;
}
section.residents .employee-table .card-wrapper .card .card-top .settings a i.delete,
section.residents .employee-table .card-wrapper .card .card-top .settings button i.delete {
  color: var(--danger);
}
section.residents .employee-table .card-wrapper .card .card-bottom {
  background: var(--background);
  border-radius: 7px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}
section.residents .employee-table .card-wrapper .card .card-bottom .user-information {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .branch .title,
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .resident_movement .title {
  color: var(--gray);
  font-size: 10px;
}
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .branch span,
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .resident_movement span {
  font-size: 13px;
  font-variant: --dark;
}
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .resident_movement {
  text-align: end;
}
section.residents .employee-table .card-wrapper .card .card-bottom .user-information .branch {
  text-align: start;
}
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts {
  display: flex;
  flex-direction: column;
}
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .title {
  color: var(--gray);
  font-size: 10px;
}
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .phone,
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .email {
  display: flex;
  gap: 5px;
}
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .phone i,
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .email i {
  color: var(--secondary);
}
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .phone span,
section.residents .employee-table .card-wrapper .card .card-bottom .guardian-contacts .email span {
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 767px) {
  section.residents .menu {
    display: flex;
    flex-direction: column;
  }
  section.residents .menu .actions {
    margin-top: 20px;
  }
  section.residents .menu .actions input {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  section.residents .menu .actions {
    flex-direction: column-reverse;
    display: flex;
    width: 100%;
  }
  section.residents .menu .actions input {
    width: 100%;
    text-align: center;
  }
}
#addResident .modal-body .title,
#editResident .modal-body .title {
  color: var(--secondary);
  font-weight: 500;
  font-size: 20px;
  text-decoration: underline;
  padding-left: 5px;
  margin-bottom: 20px;
}
#addResident .modal-body .title:nth-child(3), #addResident .modal-body .title:nth-child(5),
#editResident .modal-body .title:nth-child(3),
#editResident .modal-body .title:nth-child(5) {
  margin-top: 20px;
}
#addResident .modal-body .input-area,
#editResident .modal-body .input-area {
  margin-bottom: 20px;
  position: relative;
}
#addResident .modal-body .input-area label,
#editResident .modal-body .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#addResident .modal-body .input-area label span,
#editResident .modal-body .input-area label span {
  color: var(--danger);
}
#addResident .modal-body .input-area input,
#addResident .modal-body .input-area select,
#addResident .modal-body .input-area textarea,
#editResident .modal-body .input-area input,
#editResident .modal-body .input-area select,
#editResident .modal-body .input-area textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  color: var(--dark);
  height: 55px;
  background: var(--light);
}
#addResident .modal-body .input-area textarea,
#editResident .modal-body .input-area textarea {
  height: 200px;
}
#addResident .modal-body .input-area.error,
#editResident .modal-body .input-area.error {
  background: var(--danger);
}
#addResident .modal-body .input-area.error input,
#addResident .modal-body .input-area.error select,
#editResident .modal-body .input-area.error input,
#editResident .modal-body .input-area.error select {
  border: 2px solid var(--danger);
}
#addResident .modal-body .input-area.error .error-text,
#editResident .modal-body .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
}
#addResident .modal-body button,
#editResident .modal-body button {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
#addResident .modal-body button:hover,
#editResident .modal-body button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

@media only screen and (max-width: 991px) {
  #addResident .modal-dialog,
  #editResident .modal-dialog {
    width: 98% !important;
    max-width: 100% !important;
  }
}
main section.view .resident {
  display: flex;
  flex-direction: column;
}
main section.view .resident .card {
  width: 100%;
  background: var(--light);
  border-radius: 7px;
  padding: 15px 15px 30px 15px;
  margin-bottom: 19px;
  border: 1px solid var(--gray-bg);
}
main section.view .resident .card:last-child {
  margin-bottom: 20px;
}
main section.view .resident .card .general {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.view .resident .card .general .image {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary);
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--light);
  font-size: 20px;
  font-weight: 600;
}
main section.view .resident .card .general .name {
  color: var(--secondary);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main section.view .resident .card .general .name span {
  line-height: 30px;
}
main section.view .resident .card .general .id {
  font-size: 14px;
}
main section.view .resident .card .general .id span {
  font-weight: 600;
  font-size: 15px;
  margin-right: 5px;
}
main section.view .resident .card .general .age {
  color: var(--gray);
  font-size: 12px;
  margin-bottom: 15px;
}
main section.view .resident .card .general .age span {
  font-weight: 600;
}
main section.view .resident .card .general .actions {
  display: flex;
  flex-direction: column;
  width: 80%;
}
main section.view .resident .card .general .actions button,
main section.view .resident .card .general .actions a {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  color: var(--light);
  background: var(--primary);
  text-decoration: none;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-size: 14px;
  height: 30px;
}
main section.view .resident .card .general .actions button:last-child,
main section.view .resident .card .general .actions a:last-child {
  margin-bottom: 0;
}
main section.view .resident .card .title {
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
}
main section.view .resident .card .information {
  display: flex;
  flex-direction: column;
}
main section.view .resident .card .information .single {
  display: flex;
  gap: 10px;
}
main section.view .resident .card .information .single .left {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
  font-size: 12px;
  font-weight: 600;
}
main section.view .resident .card .information .single .right {
  font-size: 14px;
}
main section.view .resident .card .information .single .right a {
  color: var(--primary);
}
main section.view .report .top-buttons {
  margin-bottom: 19px;
}
main section.view .report .top-buttons button,
main section.view .report .top-buttons a {
  background: var(--primary);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  border: none;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  padding: 10px;
  border: 1px solid var(--primary);
}
main section.view .report .top-buttons button:hover,
main section.view .report .top-buttons a:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
main section.view .report .top-buttons button span,
main section.view .report .top-buttons a span {
  font-weight: 700;
  margin-right: 5px;
}
main section.view .report .top-buttons button i,
main section.view .report .top-buttons a i {
  font-size: 20px;
  margin-left: 5px;
}
main section.view .report .sign-top {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border: 1px solid var(--primary);
  padding: 10px;
  background: #ecfbff;
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.8px;
  text-align: center;
  position: relative;
}
main section.view .report .sign-top .edit-diagnoses {
  position: absolute;
  right: 10px;
  top: 7px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--light);
  border-radius: 7px;
  padding: 2px 15px;
}
main section.view .report .sign-top .edit-diagnoses:hover {
  color: var(--primary);
  background: var(--light);
}
main section.view .report .diagnosis {
  background: var(--light);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border: 1px solid var(--primary);
  border-top: none;
  padding: 10px;
  height: 300px;
  overflow: scroll;
  resize: vertical;
  overflow-x: hidden;
}
main section.view .report .diagnosis ul {
  list-style: none;
  padding: 0;
}
main section.view .report .diagnosis ul li {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--gray-bg);
  padding: 0 10px;
  position: relative;
  width: 100%;
}
main section.view .report .diagnosis ul li:last-child {
  border-bottom: none;
}
main section.view .report .diagnosis ul li .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.view .report .diagnosis ul li .icon i {
  font-size: 40px;
  color: var(--primary);
}
main section.view .report .diagnosis ul li .diagnose .title {
  font-size: 14px;
  font-weight: 700;
  word-break: break-word;
  padding: 10px 0 0 0;
}
main section.view .report .diagnosis ul li .diagnose .description {
  font-size: 12px;
  padding-left: 15px;
  word-break: break-word;
  padding: 0 0 10px 0;
}
main section.view .report .diagnosis ul li .date {
  position: absolute;
  right: 0;
  bottom: 0px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}
main section.view .report .medicaments {
  background: var(--light);
  border-radius: 7px;
  margin-top: 19px;
  padding: 20px;
}
main section.view .report .medicaments .title {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
main section.view .report .medicaments .title .edit-medicaments {
  position: absolute;
  right: 10px;
  top: -7px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: var(--light);
  border-radius: 7px;
  padding: 2px 15px;
}
main section.view .report .medicaments .title .edit-medicaments:hover {
  color: var(--primary);
  background: var(--light);
}
main section.view .report .medicaments .meds .card {
  background: var(--primary-bg);
  border: 1px solid var(--primary);
  border-radius: 7px;
  padding: 20px;
  padding-bottom: 5px;
}
main section.view .report .medicaments .meds .card label {
  text-align: center;
  font-weight: 600;
  text-decoration: underline;
  font-size: 16px;
}
main section.view .report .medicaments .meds .card .period {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 200;
}
main section.view .report .medicaments .meds .card .timestamps {
  display: flex;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  gap: 5px;
  font-weight: 500;
  margin-bottom: 10px;
}
main section.view .report .medicaments .meds .card .drugs {
  display: flex;
  align-items: center;
}
main section.view .report .medicaments .meds .card .drugs .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
main section.view .report .medicaments .meds .card .drugs .icon i {
  font-size: 20px;
  color: var(--primary);
}
main section.view .report .medicaments .meds .card .drugs .information {
  font-size: 12px;
  overflow: hidden;
  width: 100%;
  white-space: preserve-spaces;
  word-wrap: break-word;
}

@media only screen and (max-width: 1600px) {
  main section.view .resident .card .general .name {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1450px) {
  main section.view .resident .card .general .name {
    font-size: 19px;
  }
  main section.view .resident .card .general .actions {
    width: 100%;
  }
  main section.view .resident .card .information .single {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
  }
  main section.view .resident .card .information .single:last-child {
    margin-bottom: 0;
  }
  main section.view .resident .card .information .single .left,
  main section.view .resident .card .information .single .right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  main section.view .resident .card .information .single .right {
    line-height: 8px;
  }
}
@media only screen and (max-width: 1200px) {
  main section.view .resident .card .general .name {
    font-size: 19px;
  }
  main section.view .resident .card .general .actions {
    width: 100%;
  }
  main section.view .report .top-buttons button,
  main section.view .report .top-buttons a {
    margin-bottom: 18px;
  }
}
#editDiagnoses .modal-body,
#editMedicaments .modal-body {
  padding: 15px 20px 20px 20px;
}
#editDiagnoses .modal-body .addMoreDiagnoses,
#editDiagnoses .modal-body .addMoreMedicaments,
#editMedicaments .modal-body .addMoreDiagnoses,
#editMedicaments .modal-body .addMoreMedicaments {
  display: flex;
  justify-content: end;
  margin-bottom: 25px;
}
#editDiagnoses .modal-body .addMoreDiagnoses button,
#editDiagnoses .modal-body .addMoreMedicaments button,
#editMedicaments .modal-body .addMoreDiagnoses button,
#editMedicaments .modal-body .addMoreMedicaments button {
  padding: 2px 25px;
  background: var(--primary);
  border: 1px solid var(--primary);
  color: white;
  border-radius: 7px;
}
#editDiagnoses .modal-body .addMoreDiagnoses button:hover,
#editDiagnoses .modal-body .addMoreMedicaments button:hover,
#editMedicaments .modal-body .addMoreDiagnoses button:hover,
#editMedicaments .modal-body .addMoreMedicaments button:hover {
  background: var(--light);
  color: var(--primary);
}
#editDiagnoses .modal-body .single,
#editMedicaments .modal-body .single {
  border: 1px solid var(--gray-bg);
  margin-bottom: 40px;
  padding: 25px 15px;
  position: relative;
}
#editDiagnoses .modal-body .single .index,
#editMedicaments .modal-body .single .index {
  position: absolute;
  top: -13px;
  padding: 0 10px;
  color: var(--primary);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#editDiagnoses .modal-body .single .diagnose,
#editMedicaments .modal-body .single .diagnose {
  position: relative;
}
#editDiagnoses .modal-body .single .diagnose label,
#editMedicaments .modal-body .single .diagnose label {
  position: absolute;
  top: -13px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#editDiagnoses .modal-body .single .diagnose input,
#editMedicaments .modal-body .single .diagnose input {
  margin-bottom: 25px;
}
#editDiagnoses .modal-body .single .diagnose textarea,
#editMedicaments .modal-body .single .diagnose textarea {
  min-height: 100px;
}
#editDiagnoses .modal-body .single .diagnose input,
#editDiagnoses .modal-body .single .diagnose textarea,
#editMedicaments .modal-body .single .diagnose input,
#editMedicaments .modal-body .single .diagnose textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  height: 55px;
}
#editDiagnoses .modal-body .single button,
#editMedicaments .modal-body .single button {
  position: absolute;
  bottom: -8px;
  right: 34px;
  background: var(--danger);
  font-size: 10px;
  padding: 1px 14px;
  color: var(--light);
  border: none;
  border-radius: 7px;
}
#editDiagnoses .modal-body .saveDiagnoses button,
#editMedicaments .modal-body .saveDiagnoses button {
  width: 100%;
  background: var(--background);
  border: 1px dashed var(--gray);
  height: 40px;
  color: var(--gray);
  transition: all 300ms ease;
}
#editDiagnoses .modal-body .saveDiagnoses button:hover,
#editMedicaments .modal-body .saveDiagnoses button:hover {
  background: var(--success);
  color: var(--light);
}

section.failures .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.failures .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.failures .menu .actions {
  display: flex;
  gap: 20px;
}
section.failures .menu .actions input {
  background: none;
  border: 1px solid var(--gray);
  font-size: 14px;
  padding: 5px 10px;
}
section.failures .menu .actions button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 300ms ease;
}
section.failures .menu .actions button:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.failures .accordion .date {
  border-bottom: 1px solid var(--gray-bg);
  margin-bottom: 5px;
  padding-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  margin-top: 45px;
}
section.failures .accordion .date:first-child {
  margin-top: 25px;
}
section.failures .accordion .accordion-item {
  border: none;
}
section.failures .accordion .accordion-item h2 {
  background: var(--background);
}
section.failures .accordion .accordion-item h2 button {
  display: flex !important;
  justify-content: space-between !important;
  background: var(--transparent);
  transition: all 300ms ease;
  border: none;
  border-bottom: none;
}
section.failures .accordion .accordion-item h2 button[aria-expanded=true] {
  background: var(--primary-bg);
}
section.failures .accordion .accordion-item h2 button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.failures .accordion .accordion-item h2 button:focus, section.failures .accordion .accordion-item h2 button:active {
  outline: none;
  box-shadow: none;
}
section.failures .accordion .accordion-item h2 button .left {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 60%;
}
section.failures .accordion .accordion-item h2 button .left .progress-step {
  margin-right: 10px;
}
section.failures .accordion .accordion-item h2 button .left .progress-step i {
  font-size: 22px;
}
section.failures .accordion .accordion-item h2 button .left .progress-step i.new {
  color: red;
}
section.failures .accordion .accordion-item h2 button .left .progress-step i.seen {
  color: gray;
}
section.failures .accordion .accordion-item h2 button .left .progress-step i.done {
  color: green;
}
section.failures .accordion .accordion-item h2 button .left .title {
  white-space: nowrap; /* Prevent the text from wrapping to the next line */
  overflow: hidden; /* Hide the overflow text */
  text-overflow: ellipsis; /* Display an ellipsis (...) if the text overflows */
  font-size: 14px;
}
section.failures .accordion .accordion-item h2 button .right {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 40%;
}
section.failures .accordion .accordion-item h2 button .right .id {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
  margin-right: 20px;
}
section.failures .accordion .accordion-item h2 button .right .time {
  margin-right: 20px;
  font-size: 14px;
}
section.failures .accordion .accordion-item h2 button .right .image {
  background: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  -o-object-fit: cover;
     object-fit: cover;
  text-transform: uppercase;
  margin-right: 20px;
  font-size: 12px;
}
section.failures .accordion .accordion-item h2 button .right .priority {
  display: flex;
  width: 20px;
  margin-right: 20px;
  justify-content: center;
  font-size: 20px;
  color: var(--success);
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body {
  font-size: 14px;
  background: var(--primary-bg);
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .seen_at,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confimed_at,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confirmed_by {
  display: flex;
  justify-content: end;
  gap: 10px;
  font-size: 10px;
  margin-bottom: 3px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .seen_at:first-child,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confimed_at:first-child,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confirmed_by:first-child {
  margin-top: 10px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .seen_at .title,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confimed_at .title,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confirmed_by .title {
  color: var(--gray);
  width: 50px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .seen_at span,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confimed_at span,
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .information .confirmed_by span {
  width: 165px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .actions:first-child {
  margin-top: 10px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .actions button {
  border: none;
  border-radius: 7px;
  font-size: 14px;
  padding: 8px 20px;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .actions button.confirm {
  background: var(--secondary);
  color: white;
}
section.failures .accordion .accordion-item .accordion-collapse .accordion-body .bottom .actions button.edit {
  background: var(--warning);
  color: var(--dark);
}

#addFailure .modal-body,
#editFailure .modal-body {
  padding: 35px 20px 20px 20px;
}
#addFailure .modal-body .input-area,
#editFailure .modal-body .input-area {
  margin-bottom: 20px;
  position: relative;
}
#addFailure .modal-body .input-area label,
#editFailure .modal-body .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#addFailure .modal-body .input-area label span,
#editFailure .modal-body .input-area label span {
  color: var(--danger);
}
#addFailure .modal-body .input-area input,
#addFailure .modal-body .input-area select,
#addFailure .modal-body .input-area textarea,
#editFailure .modal-body .input-area input,
#editFailure .modal-body .input-area select,
#editFailure .modal-body .input-area textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  color: var(--dark);
  height: 55px;
  background: var(--light);
}
#addFailure .modal-body .input-area textarea,
#editFailure .modal-body .input-area textarea {
  height: 150px;
}
#addFailure .modal-body .input-area.error,
#editFailure .modal-body .input-area.error {
  background: var(--danger);
}
#addFailure .modal-body .input-area.error input,
#addFailure .modal-body .input-area.error select,
#addFailure .modal-body .input-area.error textarea,
#editFailure .modal-body .input-area.error input,
#editFailure .modal-body .input-area.error select,
#editFailure .modal-body .input-area.error textarea {
  border: 2px solid var(--danger);
}
#addFailure .modal-body .input-area.error .error-text,
#editFailure .modal-body .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
}
#addFailure .modal-body button,
#editFailure .modal-body button {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
#addFailure .modal-body button:hover,
#editFailure .modal-body button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

main section.events .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
main section.events .menu .current-date {
  padding: 10px 15px;
  font-size: 12px;
  background: none;
  border-radius: 7px;
  border: 1px solid var(--primary);
  color: var(--primary);
  display: flex;
  transition: all 300ms ease;
}
main section.events .menu .current-date:hover {
  background: var(--primary);
  color: var(--light);
}
main section.events .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
main section.events .menu .change-month {
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.events .menu .change-month button {
  color: var(--gray);
  text-decoration: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
main section.events .menu .change-month button:nth-child(1) svg {
  transform: scale(0.6) rotate(180deg);
}
main section.events .menu .change-month button svg {
  fill: var(--gray);
  transform: scale(0.6);
}
main section.events .menu .change-month button svg:hover {
  fill: var(--primary);
}
main section.events .menu .change-month span {
  color: var(--gray);
  font-size: 18px;
  font-weight: 600;
  width: 120px;
  text-align: center;
}
main section.events .menu .add-event {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 20px;
  font-size: 14px;
  transition: all 300ms ease;
}
main section.events .menu .add-event:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
main section.events .calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14.2857142857%, 1fr));
  margin-top: 25px;
  width: 100%;
}
main section.events .calendar-grid .day-of-week {
  text-align: center;
  font-size: 18px;
}
main section.events .calendar-grid a {
  border: 1px solid var(--gray-bg);
  padding: 10px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  min-height: 130px;
}
main section.events .calendar-grid a.prev-month:hover {
  background: none;
  cursor: not-allowed;
}
main section.events .calendar-grid a.today {
  background: var(--primary);
}
main section.events .calendar-grid a.today .number {
  color: var(--light);
}
main section.events .calendar-grid a.today:hover {
  background: var(--secondary);
}
main section.events .calendar-grid a:nth-child(8) {
  border-top-left-radius: 7px;
}
main section.events .calendar-grid a:nth-child(14) {
  border-top-right-radius: 7px;
}
main section.events .calendar-grid a:nth-child(36) {
  border-bottom-left-radius: 7px;
}
main section.events .calendar-grid a:last-child {
  border-bottom-right-radius: 7px;
}
main section.events .calendar-grid a:hover {
  background: var(--gray-bg);
}
main section.events .calendar-grid a .number {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 600;
}
main section.events .calendar-grid a .item {
  background: var(--gray);
  border-radius: 15px;
  padding: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
main section.events .calendar-grid a .item.important {
  background: orange;
}
main section.events .calendar-grid a .item .image {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 5px;
  font-size: 7px;
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.events .calendar-grid a .item .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  color: var(--dark);
}

#addEvent .modal-body,
#editEvent .modal-body {
  padding: 35px 20px 20px 20px;
}
#addEvent .modal-body .input-area,
#editEvent .modal-body .input-area {
  margin-bottom: 20px;
  position: relative;
}
#addEvent .modal-body .input-area label,
#editEvent .modal-body .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#addEvent .modal-body .input-area label span,
#editEvent .modal-body .input-area label span {
  color: var(--danger);
}
#addEvent .modal-body .input-area input,
#addEvent .modal-body .input-area select,
#addEvent .modal-body .input-area textarea,
#editEvent .modal-body .input-area input,
#editEvent .modal-body .input-area select,
#editEvent .modal-body .input-area textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  color: var(--dark);
  height: 55px;
  background: var(--light);
}
#addEvent .modal-body .input-area textarea,
#editEvent .modal-body .input-area textarea {
  height: 150px;
}
#addEvent .modal-body .input-area.error,
#editEvent .modal-body .input-area.error {
  background: var(--danger);
}
#addEvent .modal-body .input-area.error input,
#addEvent .modal-body .input-area.error select,
#addEvent .modal-body .input-area.error textarea,
#editEvent .modal-body .input-area.error input,
#editEvent .modal-body .input-area.error select,
#editEvent .modal-body .input-area.error textarea {
  border: 2px solid var(--danger);
}
#addEvent .modal-body .input-area.error .error-text,
#editEvent .modal-body .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
}
#addEvent .modal-body button,
#editEvent .modal-body button {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
#addEvent .modal-body button:hover,
#editEvent .modal-body button:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}

section.view-events .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.view-events .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.view-events .menu .actions {
  display: flex;
  gap: 20px;
}
section.view-events .menu .actions input {
  background: none;
  border: 1px solid var(--gray);
  font-size: 14px;
  padding: 5px 10px;
}
section.view-events .menu .actions button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 300ms ease;
}
section.view-events .menu .actions button:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.view-events .cards .card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px;
  border-radius: 7px;
  margin-bottom: 15px;
  position: relative;
  border: 1px solid var(--gray-bg);
}
section.view-events .cards .card .number {
  position: absolute;
  background: white;
  color: var(--primary);
  font-weight: 700;
  padding: 1px 10px;
  top: -10px;
  border-top: 1px solid var(--gray-bg);
  border-top-right-radius: 7px;
  border-top-left-radius: 7px;
  left: -1px;
  border-left: 1px solid var(--gray-bg);
}
section.view-events .cards .card .left .top {
  display: flex;
  align-items: center;
  gap: 5px;
}
section.view-events .cards .card .left .top .image {
  width: 25px;
  height: 25px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 5px;
  font-size: 11px;
  color: var(--light);
  display: flex;
  justify-content: center;
  align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
}
section.view-events .cards .card .left .top .name {
  color: var(--dark);
  font-size: 14px;
}
section.view-events .cards .card .left .bottom {
  margin-top: 10px;
}
section.view-events .cards .card .left .bottom .title {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
  font-size: 15px;
}
section.view-events .cards .card .left .bottom .description {
  color: var(--gray);
  font-size: 14px;
  padding-right: 15px;
}
section.view-events .cards .card .right {
  display: flex;
  flex-direction: column;
}
section.view-events .cards .card .right .time {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  font-weight: 700;
}
section.view-events .cards .card .right .important {
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.view-events .cards .card .right .important i {
  color: var(--success);
  font-size: 25px;
}
section.view-events .cards .card .right button {
  border: none;
  border-radius: 7px;
  font-size: 14px;
  padding: 8px 10px;
  background: var(--warning);
  color: var(--dark);
}

section.logs .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.logs .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.logs table tbody tr th {
  font-size: 12px;
}
section.logs table tbody tr td {
  font-size: 14px;
}
section.logs table tbody tr td i {
  font-size: 30px;
}
section.logs .crawl {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
section.logs .crawl button {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--gray);
  padding: 4px 25px 1px 25px;
}
section.logs .crawl button:hover {
  border: 1px solid var(--primary);
}
section.logs .crawl button i {
  color: var(--gray);
  font-size: 25px;
}
section.logs .crawl button i:hover {
  color: var(--primary);
}

section.website .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.website .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.website .menu .actions {
  display: flex;
  gap: 20px;
}
section.website .menu .actions button {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 300ms ease;
}
section.website .menu .actions button:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.website .page-categories-list .row {
  justify-content: center;
}
section.website .page-categories-list .row .single-page-category {
  margin-bottom: 20px;
}
section.website .page-categories-list .row .single-page-category button {
  width: 100%;
  position: relative;
  border: 5px solid var(--background);
  padding: 0;
}
section.website .page-categories-list .row .single-page-category button.active, section.website .page-categories-list .row .single-page-category button:hover {
  border: 5px solid var(--primary);
}
section.website .page-categories-list .row .single-page-category button img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0;
}
section.website .page-categories-list .row .single-page-category button label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

#changeCategories .modal-body,
#changeTags .modal-body {
  padding: 35px 20px 20px 20px;
}
#changeCategories .modal-body .input-area,
#changeTags .modal-body .input-area {
  margin-bottom: 20px;
  position: relative;
}
#changeCategories .modal-body .input-area label,
#changeTags .modal-body .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--light);
  left: 25px;
  font-size: 14px;
}
#changeCategories .modal-body .input-area label span,
#changeTags .modal-body .input-area label span {
  color: var(--danger);
}
#changeCategories .modal-body .input-area input,
#changeCategories .modal-body .input-area select,
#changeCategories .modal-body .input-area textarea,
#changeTags .modal-body .input-area input,
#changeTags .modal-body .input-area select,
#changeTags .modal-body .input-area textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--background);
  color: var(--dark);
  height: 55px;
  background: var(--light);
}
#changeCategories .modal-body .input-area textarea,
#changeTags .modal-body .input-area textarea {
  height: 150px;
}
#changeCategories .modal-body .input-area.error,
#changeTags .modal-body .input-area.error {
  background: var(--danger);
}
#changeCategories .modal-body .input-area.error input,
#changeCategories .modal-body .input-area.error select,
#changeCategories .modal-body .input-area.error textarea,
#changeTags .modal-body .input-area.error input,
#changeTags .modal-body .input-area.error select,
#changeTags .modal-body .input-area.error textarea {
  border: 2px solid var(--danger);
}
#changeCategories .modal-body .input-area.error .error-text,
#changeTags .modal-body .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
}
#changeCategories .modal-body .add,
#changeTags .modal-body .add {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--background);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
#changeCategories .modal-body .add:hover,
#changeTags .modal-body .add:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}
#changeCategories .modal-body .list,
#changeTags .modal-body .list {
  margin-top: 35px;
}
#changeCategories .modal-body .list .top-list .category,
#changeTags .modal-body .list .top-list .category {
  font-weight: 600;
  margin-top: 25px;
}
#changeCategories .modal-body .list .top-list .category button,
#changeTags .modal-body .list .top-list .category button {
  background: var(--danger);
  color: var(--light);
  border: none;
  padding: 2px 15px;
  margin-bottom: 5px;
  margin-left: 5px;
}
#changeCategories .modal-body .list .top-list table,
#changeTags .modal-body .list .top-list table {
  margin-left: 15px;
}
#changeCategories .modal-body .list .top-list table tr,
#changeTags .modal-body .list .top-list table tr {
  margin-bottom: 5px;
  position: relative;
}
#changeCategories .modal-body .list .top-list table tr::before,
#changeTags .modal-body .list .top-list table tr::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  bottom: 15px;
  left: -12px;
  position: absolute;
  border: 1px solid black;
}
#changeCategories .modal-body .list .top-list table tr td span,
#changeTags .modal-body .list .top-list table tr td span {
  margin-right: 10px;
}
#changeCategories .modal-body .list .top-list table tr td button,
#changeTags .modal-body .list .top-list table tr td button {
  background: var(--danger);
  color: var(--light);
  border: none;
  padding: 2px 15px;
  margin-bottom: 5px;
}

section.website .add {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-bottom: 20px;
}
section.website .add a {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 5px 10px;
  font-size: 14px;
  transition: all 300ms ease;
  text-decoration: none;
}
section.website .add a:hover {
  border-radius: 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
section.website table tbody tr td button,
section.website table tbody tr td a {
  padding: 2px 10px;
  border: none;
  font-size: 20px;
  color: var(--dark);
  text-decoration: none;
  display: inline-block;
}
section.website table tbody tr td .delete {
  border: 2px solid var(--danger);
  margin-right: 10px;
  color: var(--danger);
  background: transparent;
}
section.website table tbody tr td .delete:hover {
  background: var(--danger);
  color: var(--light);
}
section.website table tbody tr td .edit {
  color: var(--warning);
  background: transparent;
  border: 2px solid var(--warning);
}
section.website table tbody tr td .edit:hover {
  background: var(--warning);
  color: var(--light);
}

section.website-add {
  padding-bottom: 100px;
}
section.website-add .menu {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  border-radius: 7px;
  align-items: center;
  padding: 20px;
}
section.website-add .menu h2 {
  padding: 0;
  margin: 0;
  color: var(--secondary);
}
section.website-add .input-area {
  margin-bottom: 20px;
  position: relative;
}
section.website-add .input-area label {
  position: absolute;
  top: -10px;
  padding: 0 10px;
  color: var(--gray);
  background: var(--background);
  left: 25px;
  font-size: 14px;
}
section.website-add .input-area label span {
  color: var(--danger);
}
section.website-add .input-area input,
section.website-add .input-area select,
section.website-add .input-area textarea {
  width: 100%;
  padding: 10px 25px;
  border-radius: 0;
  border: 2px solid var(--gray-bg);
  color: var(--dark);
  height: 55px;
  background: var(--background);
}
section.website-add .input-area textarea {
  height: 150px;
}
section.website-add .input-area.error {
  background: var(--danger);
}
section.website-add .input-area.error input,
section.website-add .input-area.error select,
section.website-add .input-area.error textarea {
  border: 2px solid var(--danger);
}
section.website-add .input-area.error .error-text {
  text-align: start;
  padding: 2px 10px;
  color: var(--light);
}
section.website-add .add {
  display: block;
  width: 100%;
  height: 55px;
  border: none;
  background: var(--light);
  color: var(--dark);
  font-size: 18px;
  letter-spacing: 0.2px;
  transition: all 300ms ease;
  margin-top: 35px;
}
section.website-add .add:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}
section.website-add .add:disabled {
  background: var(--gray-bg);
  color: var(--gray);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
section.website-add .temporary-images .image-preview {
  position: relative;
  margin-bottom: 20px;
}
section.website-add .temporary-images .image-preview img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--gray);
}
section.website-add .temporary-images .image-preview .removeTemporaryImage {
  position: absolute;
  bottom: -8px;
  right: 11px;
  background: var(--danger);
  color: var(--light);
  padding: 1px 8px;
  border: none;
  border-radius: 4px;
}
section.website-add .temporary-images .reset-images {
  width: 100%;
  display: flex;
  justify-content: end;
}
section.website-add .temporary-images .reset-images button {
  background: var(--warning);
  padding: 10px 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  border: none;
}

.ck-editor__editable {
  min-height: 500px;
  background: var(--background) !important;
}

.ck.ck-toolbar.ck-toolbar_grouping > .ck-toolbar__items,
.ck-rounded-corners .ck.ck-editor__top .ck-sticky-panel .ck-toolbar, .ck.ck-editor__top .ck-sticky-panel .ck-toolbar.ck-rounded-corners {
  background: var(--background) !important;
}

.ck.ck-balloon-panel.ck-balloon-panel_position_border-side_right.ck-powered-by-balloon,
.ck.ck-baloon-panel.ck-baloon-panel_position_border-side_right.ck-baloon-panel_visible.ck-powered-by-baloon {
  display: none !important;
}/*# sourceMappingURL=app.css.map */