@import url("https://fonts.googleapis.com/css2?family=Allerta+Stencil&family=Inter:wght@100..900&family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  transition: background-color 300ms ease, color 300ms ease;
}

*:focus {
  background-color: rgba(221, 72, 20, 0.2);
  outline: none;
}

html,
body {
  color: #212529;
  font-family: "K2D", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
}

p,
label,
span,
a,
button,
h1,
h2,
h3,
h4,
h5,
h6,
div,
section,
img,
input,
select,
i,
br,
em,
strong {
  margin: 0;
}
p::selection,
label::selection,
span::selection,
a::selection,
button::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
div::selection,
section::selection,
img::selection,
input::selection,
select::selection,
i::selection,
br::selection,
em::selection,
strong::selection {
  color: #ff0100;
  background: transparent;
  font-family: "K2D", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: all 0.3s;
}

.d-grid {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
}

.grid-2-fr {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-fr {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2-max-content {
  grid-template-columns: repeat(2, max-content);
}

.grid-3-max-content {
  grid-template-columns: repeat(3, max-content);
}

.grid-1-fr {
  grid-template-columns: 1fr;
}

.grid-1-fr-max-content {
  grid-template-columns: 1fr max-content !important;
}

.grid-1-max-content {
  grid-template-columns: max-content;
}

.btn {
  background-color: #ffffff;
  padding: 0;
  height: 38px;
  padding: 0 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: none !important;
  box-shadow: none !important;
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  outline: none !important;
  gap: 10px;
  text-decoration: none !important;
  cursor: pointer;
}
.btn label {
  margin: 0 !important;
}
.btn:active {
  filter: blur(1px);
}

.login-btn,
.update-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(45deg, rgba(240, 25, 30, 0.2196078431), rgba(207, 216, 11, 0.4117647059)) !important;
  color: rgba(92, 89, 90, 0.9960784314);
  transition: all 0.3s;
}
.login-btn:hover, .login-btn:focus, .login-btn:active,
.update-btn:hover,
.update-btn:focus,
.update-btn:active {
  background: linear-gradient(45deg, rgba(240, 25, 30, 0.6196078431), rgba(207, 216, 11, 0.6784313725)) !important;
  transition: all 0.5s;
}

.icon-btn {
  width: 35px;
  height: 35px;
  outline: none !important;
  text-align: center;
  line-height: 35px;
  font-size: 14px !important;
  border-radius: 3px;
  color: #aeabac !important;
  -o-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
}
.icon-btn:hover {
  -o-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.35) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.35) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.35) !important;
  box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.35) !important;
  color: rgba(92, 89, 90, 0.9960784314) !important;
}

.upload-btn {
  font-size: 14px !important;
  background-color: rgba(0, 0, 255, 0.1) !important;
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1) !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.1) !important;
  color: #0000ff !important;
}
.upload-btn:hover {
  -o-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.05) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.05) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.05) !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 255, 0.05) !important;
  color: #0000ff !important;
}

.search-btn {
  color: #008000 !important;
  width: 110px;
}

.generate-btn {
  color: #ff0100 !important;
  width: 130px;
}

.create-btn {
  background: #61c077 !important;
  color: black !important;
}

.spinner-sm {
  width: 22px !important;
  height: 22px !important;
  border-width: 3px !important;
}

.btn-xs {
  height: 30px;
  padding: 0 3px;
}

.btn-sm {
  height: 34px;
  padding: 0 7px;
}

.btn-md {
  height: 38px;
  padding: 0 11px;
}

.btn-lg {
  height: 42px;
  padding: 0 15px;
}

.btn-xl {
  height: 46px;
  padding: 0 19px;
}

.btn-xxl {
  height: 50px;
  padding: 0 23px;
}

.primary-btn {
  background: #007afd;
  outline: #007afd !important;
}
.primary-btn:hover {
  background: #b1d6ff !important;
}
.primary-btn:active {
  background: #e4f1ff !important;
  color: #003d7e !important;
}

.primary-btn-hover {
  background: white;
  color: #007afd !important;
  outline: 1.5px solid #007afd !important;
}
.primary-btn-hover:hover {
  background: #007afd !important;
  color: white !important;
}
.primary-btn-hover:active {
  background: #7ebcff !important;
  color: #003d7e !important;
}

.secondary-btn {
  background: #6c747c;
  outline: #6c747c !important;
}
.secondary-btn:hover {
  background: #cacdd1 !important;
}
.secondary-btn:active {
  background: #e5e7e8 !important;
  color: #313438 !important;
}

.secondary-btn-hover {
  background: white;
  color: #6c747c !important;
  outline: 1.5px solid #6c747c !important;
}
.secondary-btn-hover:hover {
  background: #6c747c !important;
  color: white !important;
}
.secondary-btn-hover:active {
  background: #afb4b9 !important;
  color: #313438 !important;
}

.success-btn {
  background: #28a645;
  outline: #28a645 !important;
}
.success-btn:hover {
  background: #9ae7ac !important;
}
.success-btn:active {
  background: #c3f1cd !important;
  color: #0f3f1a !important;
}

.success-btn-hover {
  background: #ecfaef;
  color: #28a645 !important;
  outline: 1.5px solid #28a645 !important;
}
.success-btn-hover:hover {
  background: #28a645 !important;
  color: #ecfaef !important;
}
.success-btn-hover:active {
  background: #71dd8a !important;
  color: #0f3f1a !important;
}

.danger-btn {
  background: #db3545;
  outline: #db3545 !important;
}
.danger-btn:hover {
  background: #f6cdd1 !important;
}
.danger-btn:active {
  background: #fef8f8 !important;
  color: #7b1620 !important;
}

.danger-btn-hover {
  background: white;
  color: #db3545 !important;
  outline: 1.5px solid #db3545 !important;
}
.danger-btn-hover:hover {
  background: #db3545 !important;
  color: white !important;
}
.danger-btn-hover:active {
  background: #eea1a9 !important;
  color: #7b1620 !important;
}

.base-btn {
  background: #ff0100;
  outline: #ff0100 !important;
}
.base-btn:hover {
  background: #ffb3b3 !important;
}
.base-btn:active {
  background: #ffe6e6 !important;
  color: #800100 !important;
}

.base-btn-hover {
  background: white;
  color: #ff0100 !important;
  outline: 1.5px solid #ff0100 !important;
}
.base-btn-hover:hover {
  background: #ff0100 !important;
  color: white !important;
}
.base-btn-hover:active {
  background: #ff8080 !important;
  color: #800100 !important;
}

.common-btn {
  background: #ff0100;
  outline: #ff0100 !important;
}
.common-btn:hover {
  background: #ffb3b3 !important;
}
.common-btn:active {
  background: #ffe6e6 !important;
  color: #800100 !important;
}

.common-btn-hover {
  background: white;
  color: #ff0100 !important;
  outline: 1.5px solid #ff0100 !important;
}
.common-btn-hover:hover {
  background: #ff0100 !important;
  color: white !important;
}
.common-btn-hover:active {
  background: #ff8080 !important;
  color: #800100 !important;
}

.warning-btn {
  background: #fdc007;
  outline: #fdc007 !important;
}
.warning-btn:hover {
  background: #feedb8 !important;
}
.warning-btn:active {
  background: #fffaeb !important;
  color: #836301 !important;
}

.warning-btn-hover {
  background: white;
  color: #fdc007 !important;
  outline: 1.5px solid #fdc007 !important;
}
.warning-btn-hover:hover {
  background: #fdc007 !important;
  color: white !important;
}
.warning-btn-hover:active {
  background: #fee085 !important;
  color: #836301 !important;
}

.info-btn {
  background: #17a1b7;
  outline: #17a1b7 !important;
}
.info-btn:hover {
  background: #90e4f1 !important;
}
.info-btn:active {
  background: #bdeff7 !important;
  color: #093d46 !important;
}

.info-btn-hover {
  background: #eafafc;
  color: #17a1b7 !important;
  outline: 1.5px solid #17a1b7 !important;
}
.info-btn-hover:hover {
  background: #17a1b7 !important;
  color: #eafafc !important;
}
.info-btn-hover:active {
  background: #62d8eb !important;
  color: #093d46 !important;
}

.dark-btn {
  background: rgba(92, 89, 90, 0.9960784314);
  outline: rgba(92, 89, 90, 0.9960784314) !important;
}
.dark-btn:hover {
  background: rgba(181, 179, 179, 0.9960784314) !important;
}
.dark-btn:active {
  background: rgba(206, 204, 205, 0.9960784314) !important;
  color: rgba(27, 26, 27, 0.9960784314) !important;
}

.dark-btn-hover {
  background: rgba(231, 230, 231, 0.9960784314);
  color: rgba(92, 89, 90, 0.9960784314) !important;
  outline: 1.5px solid rgba(92, 89, 90, 0.9960784314) !important;
}
.dark-btn-hover:hover {
  background: rgba(92, 89, 90, 0.9960784314) !important;
  color: rgba(231, 230, 231, 0.9960784314) !important;
}
.dark-btn-hover:active {
  background: rgba(156, 153, 154, 0.9960784314) !important;
  color: rgba(27, 26, 27, 0.9960784314) !important;
}

.white-btn {
  background: #ffffff;
  outline: #ffffff !important;
}
.white-btn:hover {
  background: white !important;
}
.white-btn:active {
  background: white !important;
  color: #bfbfbf !important;
}

.white-btn-hover {
  background: white;
  color: #ffffff !important;
  outline: 1.5px solid #ffffff !important;
}
.white-btn-hover:hover {
  background: #ffffff !important;
  color: white !important;
}
.white-btn-hover:active {
  background: white !important;
  color: #bfbfbf !important;
}

.btn-group {
  width: max-content;
  border-radius: 6px;
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  -webkit-align-items: center;
  align-items: center;
  outline: 1px solid #bdbaba;
}
.btn-group .btn,
.btn-group .fancy-btn,
.btn-group .icon-btn {
  border-radius: 0;
  outline: none;
}
.btn-group .btn:nth-last-child(1),
.btn-group .fancy-btn:nth-last-child(1),
.btn-group .icon-btn:nth-last-child(1) {
  border-radius: 0 6px 6px 0;
}
.btn-group .btn:nth-child(1),
.btn-group .fancy-btn:nth-child(1),
.btn-group .icon-btn:nth-child(1) {
  border-radius: 6px 0 0 6px;
}
.btn-group .btn:nth-child(even),
.btn-group .fancy-btn:nth-child(even),
.btn-group .icon-btn:nth-child(even) {
  border-left: 1px solid rgba(9, 12, 12, 0.22);
  border-right: 1px solid rgba(9, 12, 12, 0.22);
}

.icon-btn-xs {
  width: 54px;
  height: 54px;
}

.icon-btn-sm {
  width: 57px;
  height: 57px;
}

.icon-btn-md {
  width: 60px;
  height: 60px;
}

.icon-btn-lg {
  width: 63px;
  height: 63px;
}

.icon-btn-xl {
  width: 66px;
  height: 66px;
}

.icon-btn-xxl {
  width: 69px;
  height: 69px;
}

.btn-rounded {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}

.btn-group-rounded {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.btn-group-rounded .btn {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group-rounded .btn:nth-last-child(1) {
  -webkit-border-radius: 0 50px 50px 0;
  -moz-border-radius: 0 50px 50px 0;
  border-radius: 0 50px 50px 0;
}
.btn-group-rounded .btn:nth-child(1) {
  -webkit-border-radius: 50px 0 0 50px;
  -moz-border-radius: 50px 0 0 50px;
  border-radius: 50px 0 0 50px;
}

.toggle-btn {
  display: -moz-inline-block;
  display: inline-block;
  width: 50px;
  height: 26px;
  position: relative;
  border: none;
  border-radius: 50px;
  outline: none;
  cursor: pointer;
  background: #ff6766;
}
.toggle-btn:before {
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  transition: left 0.4s;
  top: 50%;
  left: 4px;
  border-radius: 50px;
  transform: translate(0, -50%);
}
.toggle-btn:active {
  transform: scale(95%);
}
.toggle-btn:active:before {
  transition: 0.2s;
}
.toggle-btn:before {
  background: #990100;
}
.toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #990100 !important;
  -moz-box-shadow: 0 0 5px 1px #990100 !important;
  -webkit-box-shadow: 0 0 5px 1px #990100 !important;
  box-shadow: 0 0 5px 1px #990100 !important;
}

.toggle-btn-active {
  background: #990100 !important;
}
.toggle-btn-active:before {
  transition: left 0.4s;
  left: 27px;
}
.toggle-btn-active:active {
  transform: scale(95%);
}
.toggle-btn-active:active:before {
  transition: 0.2s;
}
.toggle-btn-active:before {
  transition: left 0.4s;
  background: #ff3433;
}
.toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #ff3433 !important;
  -moz-box-shadow: 0 0 5px 1px #ff3433 !important;
  -webkit-box-shadow: 0 0 5px 1px #ff3433 !important;
  box-shadow: 0 0 5px 1px #ff3433 !important;
}

.primary-toggle-btn {
  background: #cae4ff;
}
.primary-toggle-btn:before {
  background: #007afd;
}
.primary-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #007afd !important;
  -moz-box-shadow: 0 0 5px 1px #007afd !important;
  -webkit-box-shadow: 0 0 5px 1px #007afd !important;
  box-shadow: 0 0 5px 1px #007afd !important;
}

.primary-toggle-btn-active {
  background: #007afd !important;
}
.primary-toggle-btn-active:before {
  transition: left 0.4s;
  background: #97c9ff;
}
.primary-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #97c9ff !important;
  -moz-box-shadow: 0 0 5px 1px #97c9ff !important;
  -webkit-box-shadow: 0 0 5px 1px #97c9ff !important;
  box-shadow: 0 0 5px 1px #97c9ff !important;
}

.secondary-toggle-btn {
  background: #d7dadd;
}
.secondary-toggle-btn:before {
  background: #6c747c;
}
.secondary-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #6c747c !important;
  -moz-box-shadow: 0 0 5px 1px #6c747c !important;
  -webkit-box-shadow: 0 0 5px 1px #6c747c !important;
  box-shadow: 0 0 5px 1px #6c747c !important;
}

.secondary-toggle-btn-active {
  background: #6c747c !important;
}
.secondary-toggle-btn-active:before {
  transition: left 0.4s;
  background: #bcc1c5;
}
.secondary-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #bcc1c5 !important;
  -moz-box-shadow: 0 0 5px 1px #bcc1c5 !important;
  -webkit-box-shadow: 0 0 5px 1px #bcc1c5 !important;
  box-shadow: 0 0 5px 1px #bcc1c5 !important;
}

.success-toggle-btn {
  background: #aeecbc;
}
.success-toggle-btn:before {
  background: #28a645;
}
.success-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #28a645 !important;
  -moz-box-shadow: 0 0 5px 1px #28a645 !important;
  -webkit-box-shadow: 0 0 5px 1px #28a645 !important;
  box-shadow: 0 0 5px 1px #28a645 !important;
}

.success-toggle-btn-active {
  background: #28a645 !important;
}
.success-toggle-btn-active:before {
  transition: left 0.4s;
  background: #85e29b;
}
.success-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #85e29b !important;
  -moz-box-shadow: 0 0 5px 1px #85e29b !important;
  -webkit-box-shadow: 0 0 5px 1px #85e29b !important;
  box-shadow: 0 0 5px 1px #85e29b !important;
}

.danger-toggle-btn {
  background: #fae2e4;
}
.danger-toggle-btn:before {
  background: #db3545;
}
.danger-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #db3545 !important;
  -moz-box-shadow: 0 0 5px 1px #db3545 !important;
  -webkit-box-shadow: 0 0 5px 1px #db3545 !important;
  box-shadow: 0 0 5px 1px #db3545 !important;
}

.danger-toggle-btn-active {
  background: #db3545 !important;
}
.danger-toggle-btn-active:before {
  transition: left 0.4s;
  background: #f2b7bd;
}
.danger-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #f2b7bd !important;
  -moz-box-shadow: 0 0 5px 1px #f2b7bd !important;
  -webkit-box-shadow: 0 0 5px 1px #f2b7bd !important;
  box-shadow: 0 0 5px 1px #f2b7bd !important;
}

.warning-toggle-btn {
  background: #fff3d1;
}
.warning-toggle-btn:before {
  background: #fdc007;
}
.warning-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #fdc007 !important;
  -moz-box-shadow: 0 0 5px 1px #fdc007 !important;
  -webkit-box-shadow: 0 0 5px 1px #fdc007 !important;
  box-shadow: 0 0 5px 1px #fdc007 !important;
}

.warning-toggle-btn-active {
  background: #fdc007 !important;
}
.warning-toggle-btn-active:before {
  transition: left 0.4s;
  background: #fee79f;
}
.warning-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #fee79f !important;
  -moz-box-shadow: 0 0 5px 1px #fee79f !important;
  -webkit-box-shadow: 0 0 5px 1px #fee79f !important;
  box-shadow: 0 0 5px 1px #fee79f !important;
}

.info-toggle-btn {
  background: #a6e9f4;
}
.info-toggle-btn:before {
  background: #17a1b7;
}
.info-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #17a1b7 !important;
  -moz-box-shadow: 0 0 5px 1px #17a1b7 !important;
  -webkit-box-shadow: 0 0 5px 1px #17a1b7 !important;
  box-shadow: 0 0 5px 1px #17a1b7 !important;
}

.info-toggle-btn-active {
  background: #17a1b7 !important;
}
.info-toggle-btn-active:before {
  transition: left 0.4s;
  background: #79deee;
}
.info-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px #79deee !important;
  -moz-box-shadow: 0 0 5px 1px #79deee !important;
  -webkit-box-shadow: 0 0 5px 1px #79deee !important;
  box-shadow: 0 0 5px 1px #79deee !important;
}

.dark-toggle-btn {
  background: rgba(194, 191, 192, 0.9960784314);
}
.dark-toggle-btn:before {
  background: rgba(92, 89, 90, 0.9960784314);
}
.dark-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px rgba(92, 89, 90, 0.9960784314) !important;
  -moz-box-shadow: 0 0 5px 1px rgba(92, 89, 90, 0.9960784314) !important;
  -webkit-box-shadow: 0 0 5px 1px rgba(92, 89, 90, 0.9960784314) !important;
  box-shadow: 0 0 5px 1px rgba(92, 89, 90, 0.9960784314) !important;
}

.dark-toggle-btn-active {
  background: rgba(92, 89, 90, 0.9960784314) !important;
}
.dark-toggle-btn-active:before {
  transition: left 0.4s;
  background: rgba(168, 166, 167, 0.9960784314);
}
.dark-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px rgba(168, 166, 167, 0.9960784314) !important;
  -moz-box-shadow: 0 0 5px 1px rgba(168, 166, 167, 0.9960784314) !important;
  -webkit-box-shadow: 0 0 5px 1px rgba(168, 166, 167, 0.9960784314) !important;
  box-shadow: 0 0 5px 1px rgba(168, 166, 167, 0.9960784314) !important;
}

.white-toggle-btn {
  background: white;
}
.white-toggle-btn:before {
  background: #ffffff;
}
.white-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px #ffffff !important;
  -moz-box-shadow: 0 0 5px 1px #ffffff !important;
  -webkit-box-shadow: 0 0 5px 1px #ffffff !important;
  box-shadow: 0 0 5px 1px #ffffff !important;
}

.white-toggle-btn-active {
  background: #ffffff !important;
}
.white-toggle-btn-active:before {
  transition: left 0.4s;
  background: white;
}
.white-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px white !important;
  -moz-box-shadow: 0 0 5px 1px white !important;
  -webkit-box-shadow: 0 0 5px 1px white !important;
  box-shadow: 0 0 5px 1px white !important;
}

.light-toggle-btn {
  background: rgba(244, 243, 243, 0.9960784314);
}
.light-toggle-btn:before {
  background: rgba(143, 140, 141, 0.9960784314);
}
.light-toggle-btn:active:before {
  -o-box-shadow: 0 0 5px 1px rgba(143, 140, 141, 0.9960784314) !important;
  -moz-box-shadow: 0 0 5px 1px rgba(143, 140, 141, 0.9960784314) !important;
  -webkit-box-shadow: 0 0 5px 1px rgba(143, 140, 141, 0.9960784314) !important;
  box-shadow: 0 0 5px 1px rgba(143, 140, 141, 0.9960784314) !important;
}

.light-toggle-btn-active {
  background: rgba(143, 140, 141, 0.9960784314) !important;
}
.light-toggle-btn-active:before {
  transition: left 0.4s;
  background: rgba(219, 217, 218, 0.9960784314);
}
.light-toggle-btn-active:active:before {
  -o-box-shadow: 0 0 5px 1px rgba(219, 217, 218, 0.9960784314) !important;
  -moz-box-shadow: 0 0 5px 1px rgba(219, 217, 218, 0.9960784314) !important;
  -webkit-box-shadow: 0 0 5px 1px rgba(219, 217, 218, 0.9960784314) !important;
  box-shadow: 0 0 5px 1px rgba(219, 217, 218, 0.9960784314) !important;
}

.table .delete-btn,
.table .edit-btn,
.table .send-btn,
.table .permission-btn,
.table .view-btn {
  outline: none;
  border-radius: 4px;
  text-decoration: none;
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: max-content;
  grid-template-columns: max-content;
  grid-auto-flow: column;
  width: max-content;
  align-items: center;
  gap: 6px;
  margin: auto;
}
.table .delete-btn:active,
.table .delete-btn .edit-btn:active,
.table .edit-btn:active,
.table .edit-btn .edit-btn:active,
.table .send-btn:active,
.table .send-btn .edit-btn:active,
.table .permission-btn:active,
.table .permission-btn .edit-btn:active,
.table .view-btn:active,
.table .view-btn .edit-btn:active {
  filter: blur(1px);
}
.table .delete-btn {
  background: rgba(255, 0, 0, 0.0705882353) !important;
  color: #ff0100 !important;
}
.table .edit-btn {
  background: rgba(0, 112, 255, 0.0901960784);
  color: #0005d6;
}
.table .permission-btn {
  background: rgba(253, 155, 0, 0.1294117647);
  color: #667938;
}
.table .send-btn {
  background: rgba(0, 112, 255, 0.0901960784);
  color: #0005d6;
}
.table .view-btn {
  border: 1px solid rgba(0, 255, 145, 0.6039215686) !important;
  background-color: rgba(0, 255, 145, 0.0352941176);
  color: rgba(13, 153, 92, 0.9333333333) !important;
}
.table .view-btn:hover {
  background-color: rgba(0, 255, 145, 0.1568627451);
}

.font-md {
  font-size: 18px;
}

.font-sm {
  font-size: 14px;
}

.font-fit {
  font-size: 16px;
}

.input-title-group {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: max-content max-content;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.input-title-group .required,
.input-title-group .required-active {
  display: none;
  background: rgba(255, 1, 0, 0.1);
  height: 21px;
  line-height: 18px;
  padding: 0px 7px;
  border-radius: 50px;
  color: #ff0100;
}
.input-title-group .required-active {
  display: block;
  transition: all 0.5s;
}
.input-title-group .optional {
  background: rgba(0, 0, 255, 0.12);
  height: 21px;
  font-size: 14px;
  line-height: 18px;
  padding: 0px 7px;
  border-radius: 50px;
  color: #0000ff;
}

.input-with-placeholder {
  position: relative;
}
.input-with-placeholder .placeholder {
  position: absolute;
  top: 50%;
  right: 5px;
  height: 25px;
  transform: translate(0%, -50%);
  width: 25px;
  line-height: 25px;
  border-radius: 50px;
  background: rgba(255, 1, 0, 0.05);
  cursor: pointer;
  color: #000099;
}
.input-with-placeholder .placeholder:hover {
  background: rgba(255, 1, 0, 0.1);
}
.input-with-placeholder .placeholder:active {
  background: rgba(255, 1, 0, 0.08);
}
.input-with-placeholder .placeholder.round-0 {
  border-radius: 4px;
}
.input-with-placeholder .placeholder-lg {
  height: 35px;
  width: 35px;
}

.shadow-input {
  -o-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  border: none !important;
  outline: none !important;
  color: #aeabac;
}
.shadow-input::placeholder {
  color: #aeabac !important;
}
.shadow-input:focus {
  border: none !important;
  outline: none !important;
  -o-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.25) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.25) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.25) !important;
  box-shadow: 0 0 10px 0 rgba(92, 89, 90, 0.25) !important;
}

.box-shadow {
  -o-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -moz-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  -webkit-box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
  box-shadow: 0 0 10px 0 rgba(174, 171, 172, 0.35) !important;
}

.text-color-light {
  color: #aeabac;
}

.text-color-dark {
  color: rgba(92, 89, 90, 0.9960784314);
}

.user-select-none {
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.ripple {
  position: relative;
  overflow: hidden;
}
.ripple:active {
  transition: all 0.1s;
  transform: scale(98%);
}
.ripple .ripple-effect {
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.15);
  animation: ripple 1s linear forwards;
  opacity: 0;
}

@-ms-keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(50);
  }
}
@-moz-keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(50);
  }
}
@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(50);
  }
}
@keyframes ripple {
  0% {
    opacity: 1;
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(50);
  }
}
.alert {
  padding: 9px 10px !important;
  border: none !important;
}

.alert-danger {
  background: rgba(255, 1, 0, 0.05) !important;
  border-left: 5px solid #ff0100 !important;
  color: #ff0100 !important;
}

.alert-success {
  background: rgba(0, 128, 0, 0.05) !important;
  border-left: 5px solid #008000 !important;
  color: #008000 !important;
}

.form-box {
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr;
  background: #ffffff;
}
.form-box .form-box-header {
  border-left: 4px solid #ff0100;
  -webkit-border-radius: 5px 0 0 0;
  -moz-border-radius: 5px 0 0 0;
  border-radius: 5px 0 0 0;
  padding-top: 10px;
  padding-left: 10px;
}
.form-box .form-box-header h3,
.form-box .form-box-header h2,
.form-box .form-box-header h1,
.form-box .form-box-header h5,
.form-box .form-box-header h4 {
  font-size: 18px;
}
.form-box .form-grid {
  padding: 10px 30px;
  display: -moz-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
}
.form-box .form-footer, .form-box .message {
  padding: 10px 30px;
}

#login-page {
  width: 100%;
  height: 100vh;
  grid-template-columns: 360px;
  position: relative;
  background-image: -moz-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -ms-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -o-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -webkit-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
}
@media (max-width: 576px) {
  #login-page {
    grid-template-columns: 1fr !important;
    background-image: -moz-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.07), #ffffff) !important;
    background-image: -ms-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.07), #ffffff) !important;
    background-image: -o-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.07), #ffffff) !important;
    background-image: -webkit-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.07), #ffffff) !important;
  }
}
#login-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: -moz-linear-gradient(left top, rgba(255, 1, 0, 0.03), rgba(92, 89, 90, 0.1), rgba(255, 1, 0, 0.03)) !important;
  background-image: -ms-linear-gradient(left top, rgba(255, 1, 0, 0.03), rgba(92, 89, 90, 0.1), rgba(255, 1, 0, 0.03)) !important;
  background-image: -o-linear-gradient(left top, rgba(255, 1, 0, 0.03), rgba(92, 89, 90, 0.1), rgba(255, 1, 0, 0.03)) !important;
  background-image: -webkit-linear-gradient(left top, rgba(255, 1, 0, 0.03), rgba(92, 89, 90, 0.1), rgba(255, 1, 0, 0.03)) !important;
  z-index: -1;
}
#login-page .header {
  gap: 20px;
  padding-top: 10px;
}
#login-page .header .icon,
#login-page .header h3 {
  color: #aeabac;
  font-size: 20px;
}
#login-page .wave {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}
#login-page .wave path {
  fill: rgba(255, 1, 0, 0.08);
}
#login-page .form-outer {
  background-image: -moz-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -ms-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -o-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  background-image: -webkit-linear-gradient(left top, #ffffff, rgba(255, 1, 0, 0.03), #ffffff) !important;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 25px 30px;
  border-radius: 10px;
  z-index: 99;
  padding: relative;
}
@media (max-width: 576px) {
  #login-page .form-outer {
    -o-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    background-image: none;
  }
}
#login-page .form-outer .before,
#login-page .form-outer .after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: linear-gradient(292deg, rgba(255, 1, 0, 0.03), transparent);
  border-radius: 50%;
  backdrop-filter: blur(18px);
}
#login-page .form-outer .before {
  left: -50%;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: -2;
}
#login-page .form-outer .after {
  right: -31%;
  top: 10%;
  transform: translate(0%, 0%);
  z-index: -1;
}
#login-page .navbar {
  margin: 0;
  padding: 0;
}
#login-page .navbar img {
  width: 160px;
  margin: auto;
  display: block;
}
#login-page .form-switch-group {
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  background-color: rgba(174, 171, 172, 0.1);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
#login-page .form-switch-group button {
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 0;
  z-index: 1;
}
#login-page .form-switch-group::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translate(0, -50%);
  height: 85%;
  background: rgba(174, 171, 172, 0.2);
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  width: 50%;
  z-index: 0;
  transition: all 0.3s;
}
#login-page .audit-form-switch::before {
  transition: all 0.3s;
  left: calc(50% - 5px);
}
#login-page .form-toggle-btn {
  border: none !important;
  outline: none !important;
}
#login-page .form-toggle .all-form {
  grid-template-columns: 1fr;
  gap: 10px;
  animation: formAnim 0.3s linear forwards;
}

@keyframes formAnim {
  0% {
    filter: blur(2px);
    opacity: 0;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
/*effect*/
#audit-login-form-outer,
#admin-login-form-outer {
  display: none;
}

#audit-login-form-outer {
  display: block;
}/*# sourceMappingURL=auth.css.map */