html, body {
  padding: 0;
  margin: 0;
  background-color: #EEF2F5;
}

a, img {
  transition: all ease 0.3s;
}

a:not(.btn) {
  color: #7A438E;
}

.grey {
  color: #898989;
}

.black {
  color: #000;
}

.title {
  font-weight: 600;
}

.alert {
  margin-bottom: 0;
}
.alert.only {
  display: flex;
  align-items: center;
}
.alert p {
  margin: 0;
}
.alert img {
  width: 2.2rem;
}
.alert .closer {
  cursor: pointer;
  filter: invert(0%);
}
.alert .closer:hover {
  filter: invert(100%);
}

.divided {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.divided img {
  width: 2rem;
  margin-right: 0.5rem;
}
.divided a {
  text-decoration: none;
  display: flex-inline;
  margin-left: 2rem;
  align-items: center;
}

.video--boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 991px) {
  .video--boxes {
    grid-template-columns: 1fr;
  }
}
.video--box {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.video--box .detail {
  display: grid;
  grid-template-columns: auto 4rem;
  align-items: center;
}
.video--box .detail img {
  width: 2.2rem;
  cursor: pointer;
}
.video--box .detail img:hover {
  filter: grayscale(100%) brightness(0);
}

.logins {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background-color: #EEF2F5;
}
.logins--block {
  background-color: #FFF;
  padding: 3rem;
  border-radius: 0.8rem;
}

.ui-datepicker.ui-widget {
  font-size: 1.5rem;
}

html, body {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
}

.fredoka {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

p {
  font-size: 1.8rem;
}

.btn {
  font-size: 1.5rem;
}
.btn--submit {
  background-color: #7A438E;
  color: #FFF;
  display: inline-block;
  width: auto;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 2rem;
}

.bt-login {
  font-size: 1.5rem;
  background-color: #7A438E;
  color: #FFF;
  display: inline-block;
  width: auto;
  border: none;
  border-radius: 0.5rem;
  padding: 0.7rem 2rem;
}

.btn-action {
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 500;
}
.btn-action img {
  margin: 0 !important;
}

.form {
  font-size: 1.6rem;
}
.form--row {
  display: grid;
  gap: 1rem;
  row-gap: 2rem;
  align-items: start;
}
.form--row-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .form--row-2 {
    grid-template-columns: 1fr;
  }
}
.form--row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 991px) {
  .form--row-3 {
    grid-template-columns: 1fr;
  }
}
.form--row-smaction {
  grid-template-columns: 1fr 1fr 14rem;
  align-items: last baseline;
}
@media (max-width: 991px) {
  .form--row-smaction {
    grid-template-columns: 1fr;
  }
}
.form--row div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3rem;
}
.form input, .form select {
  background-color: #EEF2F5;
  margin: 0;
  border-radius: 0.4rem;
  border: 0;
  padding: 0.8rem 2rem;
  color: #4A4B4C;
}
.form hr {
  margin: 3rem 0 2rem 0;
}
.form--action {
  display: block !important;
  text-align: right;
}
.form--title {
  font-size: 1.8rem;
}
.form--border {
  border: 1px dashed #126DA6;
  padding: 2rem 3rem;
  margin-bottom: 6rem;
  border-radius: 0.8rem;
}

table.dataTable thead .sorting:after, table.dataTable thead .sorting_asc:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f0d7";
}

table.dataTable thead .sorting_desc:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f0d8";
}

.dataTable {
  padding-top: 2rem;
}

.dataTables_wrapper {
  font-size: 1.6rem;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: 400;
}

@media (max-width: 991px) {
  .table-responsive {
    max-width: calc(100vw - 6rem);
    overflow-x: scroll;
  }
}

.web {
  background-color: #EEF2F5;
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.web--head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .web--head {
    display: block;
  }
}
.web--details {
  background-color: #7A438E;
  color: #FFF !important;
  text-decoration: none;
  display: inline-block;
  font-size: 1.6rem;
  padding-right: 2rem;
  border-radius: 2rem;
  border: 1px solid #7A438E;
}
.web--details img {
  margin-right: 1rem;
}
.web .deleter {
  cursor: pointer;
}
.web .deleter img {
  width: 2.3rem;
  margin-left: 1rem;
}
.web--boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .web--boxes {
    grid-template-columns: 1fr;
  }
}
.web--box {
  background-color: #FFF;
  padding: 2.5rem;
  border-radius: 0.8rem;
}
.web--box-head {
  display: grid;
  grid-template-columns: auto 7rem;
  margin-bottom: 2rem;
}
.web--box-head p {
  font-size: 1.8rem !important;
  font-weight: 700;
}
.web--box-head img {
  width: 2rem;
  margin-left: 1rem;
  cursor: pointer;
}
.web--box-head div:last-child {
  text-align: right;
}
.web--box p {
  margin: 0;
  font-size: 1.4rem;
}

.social--boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.social--box {
  background-color: #EEF2F5;
  padding: 2.5rem;
  border-radius: 0.8rem;
}

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  margin: 2.5rem;
  background-color: #FFF;
  border-radius: 0.8rem;
}
@media (max-width: 991px) {
  .head {
    display: block;
    margin: 1.5rem;
  }
}
.head .logo {
  width: 8rem;
}

.nav-drop {
  font-size: 1.6rem;
}
@media (max-width: 991px) {
  .nav-drop {
    margin-top: 2rem;
  }
}
.nav-drop .dropdown-toggle {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.nav-drop .dropdown-toggle span {
  background-color: #7A438E;
  color: #FFF;
  width: 4rem;
  height: 4rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
}
.nav-drop ul {
  min-width: 100%;
}
.nav-drop ul li a {
  display: block;
  padding: 1rem 2rem;
  font-size: 1.6rem;
}
.nav-drop ul img {
  width: 2.2rem;
  margin-right: 1.5rem;
}
.nav-black ul li img {
  filter: grayscale(100%);
}
.nav-dash {
  padding: 1rem 3rem;
  background-color: #FFF;
  border-radius: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 70vh;
}
@media (max-width: 991px) {
  .nav-dash {
    min-height: auto;
  }
}
.nav-dash ul {
  margin: 0;
  padding: 1rem 0;
}
.nav-dash ul img {
  width: 2.2rem;
  margin-right: 1rem;
}
.nav-dash ul li {
  display: block;
  font-size: 1.6rem;
  padding: 1rem 0;
}
.nav-dash ul li a {
  text-decoration: none;
  color: #000;
}
.nav-dash ul li a:hover {
  color: #7A438E;
}
.nav-dash ul li a:hover img {
  filter: invert(36%) sepia(87%) saturate(1257%) hue-rotate(232deg) brightness(70%) contrast(101%);
}
.nav-box {
  display: block;
}
.nav-links img {
  width: 1.8rem;
}
.nav-links ul {
  padding-bottom: 0;
}
.nav-links li a {
  padding-left: 4rem;
  font-size: 1.4rem;
}
.nav-power {
  font-size: 1.8rem;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  align-items: center;
}
.nav-power img {
  width: 10rem;
  align-self: flex-end;
}

footer {
  padding: 2rem 5rem;
}
footer p {
  text-align: center;
  font-size: 1.8rem;
}

.breadcrumb {
  font-size: 1.4rem;
  margin-bottom: -1.3rem;
  margin-top: -0.4rem;
}
.breadcrumb a {
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f105";
  font-size: 3.2rem;
  padding: 0 1.5rem;
  position: relative;
  top: -5px;
}

.dash-flex {
  display: grid;
  grid-template-columns: 30rem auto;
  margin: 2.5rem;
  gap: 2.5rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .dash-flex {
    grid-template-columns: 1fr;
    overflow: scroll;
    margin: 1.5rem;
  }
}
.dash--boxes {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 991px) {
  .dash--boxes {
    display: block;
  }
}
.dash--row {
  display: grid;
  gap: 2.5rem;
}
.dash--row-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .dash--row-2 {
    grid-template-columns: 1fr;
  }
}
.dash--box {
  padding: 2rem 3rem;
  background-color: #FFF;
  border-radius: 0.8rem;
}
@media (max-width: 991px) {
  .dash--box {
    margin-bottom: 2.5rem;
    padding: 1rem 1.5rem;
  }
}
.dash--box-red {
  background-color: #DC3545;
}
.dash--box--yellow {
  background-color: #FFC107;
  display: flex;
  justify-content: space-between;
}
.dash--box--green {
  background-color: #00b539;
  color: #FFF;
  display: flex;
  justify-content: space-between;
}
.dash--titles, .dash--icons {
  display: grid;
  gap: 2.5rem;
  font-size: 1.6rem;
}
@media (max-width: 991px) {
  .dash--titles, .dash--icons {
    font-size: 1.3rem;
  }
}
.dash--titles {
  color: #4A4B4C;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .dash--titles {
    grid-template-columns: 1fr;
  }
}
.dash--titles span {
  color: #000;
  margin-right: 2rem;
}
.dash--titles--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-size: 1.6rem;
}
@media (max-width: 991px) {
  .dash--titles--flex {
    flex-direction: column;
    font-size: 1.3rem;
  }
}
.dash--titles--flex img {
  width: 2.5rem;
}
.dash--icons {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  text-align: center;
  padding-bottom: 1rem;
  gap: 3.75rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .dash--icons {
    grid-template-columns: 1fr;
  }
}
.dash--icons a {
  text-decoration: none;
  color: #000;
}
.dash--icons a:hover {
  color: #7A438E;
}
.dash--icons a:hover img {
  filter: grayscale(100%);
  opacity: 0.6;
}
.dash--icons h3 {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 0.5rem 0 0 0;
}
.dash--icons h5 {
  font-size: 1.6rem;
}
.dash--icons img {
  width: 4.2rem;
  filter: grayscale(0%);
  opacity: 1;
}
.dash--table {
  font-size: 1.8rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .dash--table {
    font-size: 1.4rem;
  }
}
.dash--table td, .dash--table th {
  padding: 2rem !important;
}
@media (max-width: 991px) {
  .dash--table td, .dash--table th {
    padding: 1rem !important;
  }
}
.dash--table td span, .dash--table th span {
  margin: 0 0.5rem 0 0;
}
.dash--table thead th {
  background-color: #EEF2F5;
}
.dash--table th {
  font-size: 1.8rem;
  font-weight: 400;
}
@media (max-width: 991px) {
  .dash--table th {
    font-size: 1.4rem;
  }
}
.dash--table.black-icons img, .dash--table.manage-icons img {
  width: 2.2rem;
  margin-right: 1rem;
  filter: grayscale(100%) brightness(0);
}
.dash--table.black-icons span, .dash--table.manage-icons span {
  color: #4A4B4C;
  opacity: 0.8;
}
.dash--table.manage-icons img {
  filter: none;
  cursor: pointer;
}
.dash--table.manage-icons img:hover {
  filter: grayscale(100%) brightness(0);
}

.welcome {
  margin: 0;
}

.asset--boxes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 991px) {
  .asset--boxes {
    grid-template-columns: 1fr;
  }
}
.asset--boxes-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 991px) {
  .asset--boxes-5 {
    grid-template-columns: 1fr;
  }
}
.asset--boxes a {
  background-color: #5c336b;
  color: #FFF;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 0.8rem;
}
.asset--boxes a:hover {
  background-color: #894b9f;
}
.asset--boxes a:nth-child(2n) {
  background-color: #211128;
}
.asset--boxes a:nth-child(2n):hover {
  background-color: #7b3e94;
}
.asset--boxes a h5 {
  font-size: 2rem;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 991px) {
  .asset--boxes a h5 {
    font-size: 1.6rem;
  }
}
.asset--boxes a img {
  filter: brightness(5) grayscale(100%);
  width: 4.2rem;
}

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