:root {
  --main-color: #1652f0;
  --first-color: #1a73e8;
  --border-color: #dadce0;

  --uncollapse: 210px;
  --collapse: 80px;

  --navbar-height: 60px;
  --navbar-padding: 230px;
  --navbar-padding-collapse: 110px;

  --box-shadow-bottom: 0px 0.5px 4px rgba(0, 0, 0, 0.25);
  --transition-all: all 0.3s ease-out;

  --body-font: "Inter var", Roboto, Helvetica, Arial, sans-serif;

  --body-color: #212529;
  --body-background: rgb(241, 245, 249);
  --body-background-items: #ffff;

  --normal-font-size: 1rem;
  --small-font-size: 0.75rem;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-feature-settings: "salt";
  padding: 0;
  font-size: 14px;
  color: var(--body-color);
  font-family: var(--body-font);
  background-color: var(--body-background);

  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 20px;
}
a{
   text-decoration:none;
   color:var(--body-color)
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}

main {
  max-height: 100%;
}

.navbar {
  z-index: 99;
  background-color: #ffffff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  height: var(--navbar-height);
  padding-left: var(--navbar-padding);
  box-shadow: var(--box-shadow-bottom);
  position: fixed;
  left: 0;
  right: 0;

  & .navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--body-color);
    text-decoration: none;
  }

  & .navbar-toggler {
    display: none;
  }

  & .sidebar-toggler {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;

    & .fas {
      font-size: 24px;
      color: var(--body-color);
      transition: var(--transition-all);
    }

    &:hover {
      &.fas {
        color: #aaa;
      }
    }
  }

  & .navbar-toggler {
    position: absolute;
    right: 1rem;
  }

  & .navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;

    & .nav-item {
      margin-right: 10px;

      & .nav-link {
        color: var(--body-color);
        font-size: 16px;
        text-decoration: none;
        transition: var(--transition-all);

        &:hover {
          color: #aaa;
        }
      }
    }
  }
}
.dropdown {
  position: relative;
  display: inline-block;

  & .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.25rem;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
      rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    &.show {
      display: block;
    }

    & .dropdown-item {
      display: block;
      padding: 0.25rem 1.5rem;
      clear: both;
      font-weight: 400;
      color: var(--body-color);
      text-align: inherit;
      white-space: nowrap;
      background-color: transparent;
      border: 0;
      text-decoration: none;
      transition: all 0.2s ease-in-out;

      &:hover {
        background-color: #f5f5f5;
      }
    }
  }
  & .dropdown-toggle {
    &:focus {
      outline: none;
      box-shadow: none;
    }
  }
}
.sidebar {
  background-color: #111111;
  width: var(--uncollapse);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  /* justify-content: center; */

  & ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;

    & li {
      margin: 0;
      padding: 0;
      position: relative;

      &:first-child {
        & a {
          display: flex;
          justify-content: start;
          width: var(--uncollapse);
          text-align: center;
          padding: 20px 0 20px 0.75rem;
          margin-bottom: 1rem;
          box-shadow: 0px 0.5px 4px rgb(255 255 255 / 27%);

          & img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: all 0.3s ease-in-out;
            padding:1px;
            border:2px solid #00d600;
          }
          & b {
            margin-top: -3px;
            margin-left: 0.75rem;
            opacity: 1;
            transition: opacity 2.5s;
            font-size: 15px;
            font-weight: 500;
            text-align: left;

            & small {
              font-weight: 400;
              font-size:12px;
            }
          }
        }
      }

      & a {
        display: inline-block;
        padding: 10px 20px;
        color: #fff;
        font-size: 15px;
        text-decoration: none;
        width: 100%;
        font-weight: 400;
        letter-spacing: 0.75px;
        /*  transition: var(--transition-all); */

        &:hover {
          background-color: #555;
        }

        & span {
          margin-left: 0.75rem;
          position: absolute;
          opacity: 1;
          transition: opacity 0.3s ease-in-out;
        }

        & i {
          transition: font-size 0.6s ease-in-out;
        }
      }
    }
    & .dropdown {
      & .dropdown-menu {
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        background-color: transparent;
        box-shadow: none;
        -webkit-box-shadow: none;
        border: none;
        border-radius: 0 5px 5px 0;
        padding: 0;
        display: none;
        box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
          rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;

        &.show {
          display: block;
        }
        & .dropdown-item {
          color: #fff;
          padding: 5px 0px 5px 2.6rem;
          font-weight: 500;

          &:hover,
          &:focus {
            background-color: #f7f7f7;
            color: var(--body-color);
          }
        }
      }
      & a {
        & span {
          opacity: 1;
          transition: opacity 0.3s ease-in-out;
        }
      }
    }
  }
}
.main-content {
  margin-left: var(--uncollapse);
  padding-top: var(--navbar-height);
  transition: margin-left 0.3s ease-out;
}
.page-fluid {
  padding: 25px 2rem;
}
.page-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;

  & h1,
  & p {
    margin: 0;
  }
  & p {
    font-size: 16px;
  }
  & small {
    font-size: 14px;
  }

  & .header-options {
    display: flex;
    align-items: center;
  }
}

body.sidebar-mini {
  & .navbar {
    padding-left: var(--navbar-padding-collapse);

    & .sidebar-toggler {
      transition: var(--transition-all);

      & .fas {
        transform: rotate(-180deg);
      }
    }
  }
  & .sidebar {
    overflow: unset;
    width: var(--collapse);
    & ul {
      & li {
        &:first-child {
          & a {
            padding: 5px 15px;
            & img {
              display: block;
              width: 50px;
              height: 50px;
            }
            & b {
              opacity: 0;
              display: none;
            }
          }
        }
        & a {
          padding: 15px 10px;
          display: block;
          text-align: center;
          width: unset;

          & i {
            font-size: 25px;
          }
          & span {
            opacity: 0;
          }
        }
      }

      & .dropdown {
        & a {
          & span {
            opacity: 0;
          }
        }
        & .dropdown-menu {
          background: white;
          position: absolute;
          left: var(--collapse);

          & .dropdown-item {
            color: var(--body-color);
            padding: 7px 1rem;
            font-size:16px;
          }
        }
      }
    }
  }
  & .main-content {
    margin-left: var(--collapse);
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .page-header {
    display: block;

    & .header-title {
      margin-bottom: 1rem;
      & h1,
      & p {
        text-align: center;
      }
      & p {
        font-size: 14px;
      }
    }
    & .header-options {
      & a,
      button {
        tex-align: center;
        width: 100%;
      }
    }
  }
  .navbar {
    padding: 20px;
    position: fixed;
    left: 0;
    right: 0;

    & .sidebar-toggler {
      left: 20px;
    }

    & .navbar-toggler {
      display: block;
    }

    & .navbar-brand {
      padding-left: 20px;
    }

    & .navbar-nav {
      position: absolute;
      top: var(--navbar-height);
      left: 0;
      width: 100%;
      background-color: #fff;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: calc(100vh - 63px);
      -webkit-transition: var(--transition-all);
      transition: var(--transition-all);
      opacity: 0;
      visibility: hidden;

      &.show {
        opacity: 1;
        visibility: visible;
      }

      & .nav-item {
        width: 100%;
        border: 1px solid #f5f5f5;
        padding: 5px 20px;
        margin: 0;

        & .nav-link {
          color: var(--body-color);
        }
      }

      & .dropdown {
        & .dropdown-menu {
          position: static;
          top: 0;
          left: 0;
          width: 100%;
          transform: none;
          background-color: transparent;
          box-shadow: none;
          -webkit-box-shadow: none;
          border: none;
          border-radius: 0;
          padding: 0;
          display: none;

          &.show {
            display: block;
          }
          & .dropdown-item {
            color: #fff;
            padding: 5px 5px 5px 2rem;

            &:hover,
            &:focus {
              background-color: #f7f7f7;
              color: var(--body-color);
            }
          }
        }
      }
    }
  }
  .sidebar {
    & ul {
      & li {
        float: left;

        & a {
          padding: 10px;
          display: block;
        }
      }
    }
  }
  .main-content {
    margin-left: 0;
  }
  .page-fluid {
    padding: 2rem 1rem;
  }
  body.sidebar-mini {
    & .navbar {
      padding: 20px;
      & .sidebar-toggler {
        left: 20px;
      }
    }
    & .sidebar {
      width: 0;
      & ul {
        display: none;
      }
      & .nav-text {
        display: none;
      }
    }
    & .main-content {
      margin-left: 0;
    }
  }
}
/* Desktop */
@media screen and (min-width: 769px) {
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1200px) {
}
/* Desktop LG */
@media screen and (min-width: 1200px) {
  .d-lg-none {
    display: none;
  }
}

/* ----------------------------------------------------------- */
/*-------------------- 2.- FORM COMPONENTS ------------------- */
/* ----------------------------------------------------------- */
form,
.form {
  & h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  & .form-group {
    position: relative;
    height: 48px;
    margin-bottom: 1rem;
  }
  & label {
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 1rem;
    color: #aaa;
    font-size: 15px;
    transition: all 0.2s ease-out;
    pointer-events: none;
  }
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
  display: block;
  outline: none;
  line-height: 1.5;
  color: var(--body-color);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--border-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: var(--body-font);
  &.input-custom {
    background: transparent;
    height: 45px;
    border-radius: 10px;
  }
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
input:focus {
  color: var(--body-color);
  border: 2px solid var(--first-color);
  /*  box-shadow: 0 0 0 0.1rem rgba(0, 70, 176, 0.25); */
}

input:focus + label,
input:not(:placeholder-shown) + label {
  top: 1.15rem;
  left: 10px;
  font-size: 12px;
  font-weight: 500;
  background: white;
  transform: translateY(-150%);
  padding: 0 5px;
  letter-spacing: 0.75px;
}

input:focus + label {
  color: #007bff;
}

button.submit {
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;

  &:hover {
    background-color: #0069d9;
  }
}

.form-select {
  position: relative;
  width: 100%;

  &:after {
    position: absolute;
    top: 18px;
    right: 10px;
    width: 0;
    height: 0;
    padding: 0;
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
  }
  & .select-text {
    position: relative;
    font-family: inherit;
    background-color: transparent;
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border-radius: 0.25rem;
    line-height: 1.5;
    border: 1px solid var(--border-color);

    appearance: none;
    -webkit-appearance: none;

    .select-custom & {
      border-radius: 0.75rem;
    }
    &:focus {
      outline: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0);

      & .select-bar {
        &:before,
        &:after {
          width: 50%;
        }
      }
    }

    &:focus ~ .select-label,
    &:valid ~ .select-label {
      font-size: 12px;
      background-color: #fff;
      padding: 0 5px;
      left: 10px;
      top: 0px;
      transition: 0.2s ease all;
      font-weight: 500;
      letter-spacing: 0.75px;

      .select-custom & {
        top: -0.5rem;
        border-radius: 5px 5px 0 0;
        background: #f1f5f9;
      }
    }

    &:focus ~ .select-label {
      color: #2f80ed;
    }
  }
  & .select-label {
    color: #aaa;
    font-size: 15px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 1rem;
    top: 1.5rem;
    transition: 0.2s ease all;

    .select-custom & {
      top: 0.75rem;
      color: #757575;
    }
  }
  & .select-highlight {
    position: absolute;
    height: 60%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
  }
  & .select-bar {
    position: relative;
    display: block;
    width: 100%;

    &:before,
    &:after {
      content: "";
      height: 2px;
      width: 0;
      bottom: 1px;
      position: absolute;
      background: #2f80ed;
      transition: 0.2s ease all;
    }

    &:before {
      left: 50%;
    }
    &:after {
      right: 50%;
    }
  }
  & .select-text:focus ~ .select-bar:before,
  & .select-text:focus ~ .select-bar:after {
    width: 50%;
  }
}
.form-textarea {
  position: relative;
  margin-bottom: 1rem;

  & label {
    position: absolute;
    top: 20px;
    left: 12px;
    pointer-events: none;
    font-size: 15px;
    transition: all 0.2s ease-out;
    font-weight: 400;
    pointer-events: none;
    font-family: var(--body-font);
  }

  & textarea {
    padding: 20px 10px 8px;
    font-size: 15px;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    resize: none;
    outline: none;
    width: 100%;
    font-family: var(--body-font);
    font-feature-settings: "salt";

    &:focus {
      border-color: #4d90fe;
      box-shadow: 0 0 0 1px #4d90fe;

      & + label {
        color: #4d90fe;
        font-weight: 500;
        letter-spacing: 1px;
      }
    }

    &:focus + label,
    &:not(:placeholder-shown) + label {
      top: -1px;
      font-size: 12px;
      background: white;
      padding: 2px 5px;
      font-weight: 500;
      letter-spacing: 1px;
    }
    &:not(:placeholder-shown) + label {
      font-weight: 500;
    }
  }
}
.form-wizard-wrapper {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-top: 8px;
  z-index: 2;

  & ul {
    background-color: #ffffff;
    z-index: 1;
    border-radius: 4px;
    display: flex;
    justify-content: flex-start;

    position: relative;
    margin: 0;
    padding: 0;

    & li {
      list-style-type: none;
      width: 100%;
      text-align: center;
      display: flex;
      justify-content: center;

      &.active {
        & a {
          background-color: #ffffff;
        }
      }

      & a {
        display: block;
        padding: 10px;
        width: 100%;
        color: black;
        text-decoration: none;

        & :focus {
          outline: 0;
        }

        & span {
          position: relative;
          z-index: 1;
        }
      }
    }

    & .form-wizardmove-button {
      position: absolute;
      width: 0px;
      left: 0;
      top: -4px;
      bottom: -4px;
      border-radius: 4px;
      background-color: var(--body-background);
      -webkit-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
      -moz-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
      -ms-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
      -o-transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
      transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
    }
  }

  & .form-wizard-content-wrapper {
    position: relative;
    background-color: #fff;

    & .form-wizard-content {
      background-color: #ffffff;

      color: #777777;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      transition: all 0.5s cubic-bezier(0.29, 1.42, 0.79, 1) 0s;
      transform: translate3d(100%, 0px, 0px);
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;

      & .full-wdth {
        position: relative;
        min-height: 1px;
        margin-bottom: 10px;
        width: 100%;
      }

      &.show {
        transform: translate3d(0px, 0px, 0px);
        position: relative;
      }

      & h6 {
        font-size: 18px;
        font-weight: bold;
        margin: 0 0 10px;
      }

      & .form-wizard-next-btn,
      & .form-wizard-previous-btn {
        margin-top: 20px;
        text-decoration: none;
        padding: 6px 26px;
      }
    }
  }
}

/* --------------------------------------------------------- */
/*-------------------- Table ------------------------------- */
/* --------------------------------------------------------- */
.fl-table {
  border-radius: 5px;
  font-size: 16px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;

  & td,
  & th {
    text-align: center;
    padding: 8px;
  }
  & td {
    border-right: 1px solid #f5f5f5;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
  }

  & thead {
    & th {
      color: var(--body-color);
      letter-spacing: 0.75px;
      font-weight: 600;
      border-bottom: 1px solid #f5f5f5;
      /* background: #324960; */ /*  #4FC3A1 */

      /* &:nth-child(odd) {
         color: #ffffff;
         background: #324960;
       } */
    }
  }
  & tr:nth-child(even) {
    background: #f8f8f8;
  }
}
@media (max-width: 768px) {
  .fl-table {
    display: block;
    width: 100%;

    & thead,
    & tbody {
      display: block;
    }

    & thead {
      float: left;

      & th {
        display: block;
        text-align: left;
        border-bottom: 1px solid #f7f7f9;

        &:last-child {
          border-bottom: none;
        }
      }
    }
    & tbody {
      width: auto;
      position: relative;
      overflow-x: auto;

      & tr {
        display: table-cell;

        &:nth-child(odd) {
          background: none;
        }
      }

      & td {
        display: block;
        text-align: center;
      }
    }

    & td,
    & th {
      padding: 20px 0.625em 0.625em 0.625em;
      height: 60px;
      vertical-align: middle;
      box-sizing: border-box;
      overflow-x: hidden;
      overflow-y: auto;
      width: 120px;
      font-size: 13px;
      text-overflow: ellipsis;
    }
    & tr {
      &:nth-child(even) {
        background: transparent;
      }
      & td {
        &:nth-child(odd) {
          background: #f8f8f8;
          border-right: 1px solid #e6e4e4;
        }
      }
    }
  }
}
/* --------------------------------------------------------- */
/*-------------------- Animations -------------------------- */
.fade-in {
   animation: fadeIn 1s ease-in-out;
 }
 @keyframes fadeIn {
   0% {
     opacity: 0;
   }
   100% {
     opacity: 1;
   }
 }
/* --------------------------------------------------------- */
/* --------------------------------------------------------- */
/*-------------------- SSStyles ---------------------------- */
/* --------------------------------------------------------- */
.btn {
  appearance: button;
  border-radius: 4px;
  background-color: #eee;
  border: 1px solid #ccc;
  box-sizing: border-box;
  color: #222222;
  cursor: pointer;
  font-family: Graphik, -apple-system, system-ui, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  overflow: visible;
  padding: 11px 20px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: all 80ms ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  width: fit-content;
  letter-spacing: 0.5px;
  text-decoration: none;

  &:disabled {
    opacity: 0.5;
  }
  &:focus {
    outline: 0;
  }
  &:active {
    background-color: #ddd;
    border-color: #bbb;
  }

  &.btn-primary {
    background-color: var(--main-color);
    border: 1px solid var(--main-color);
    color: #fff;

    &:hover {
      background-color: #0a46e4;
      border-color: #0a46e4;
    }

    &:active {
      background-color: #0039d7;
      border-color: #0039d7;
    }
  }
  &.btn-sm {
    padding: 6px 26px;
  }
}
.m0 {
  margin: 0;
}
.text-justify {
  text-align: justify;
}
.clearfix:after {
  display: blockl con;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;

  & .item {
    /* background-color: #ccc;
    padding: 1rem;
    text-align: center; */
  }
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-template-areas:
    "a a b b"
    "c d d d"
    "e e f g"
    "h i j k"
    "l l l l";
  gap: 10px;

  & .grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #ccc;
  }
}
.pd-2 {
  padding: 10px 22px 10px 22px;
}
.a {
  grid-area: a;
}
.b {
  grid-area: b;
}

.c {
  grid-area: c;
}

.d {
  grid-area: d;
}

.e {
  grid-area: e;
}

.f {
  grid-area: f;
}

.g {
  grid-area: g;
}

.h {
  grid-area: h;
}

.i {
  grid-area: i;
}

.j {
  grid-area: j;
}

.k {
  grid-area: k;
}

.l {
  grid-area: l;
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-areas:
      "a a a a"
      "b b b b"
      "c c c c"
      "d d e e"
      "f f g g"
      "h i j j"
      "k k k k"
      "l l l l";
  }
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.card {
  margin-bottom: 1rem;
  padding: 20px 30px;
  border-radius: 10px;
  background-color: var(--body-background-items);
  box-shadow: 0 5px 25px rgba(92, 99, 105, 0.2);

  & .card-header {
    background-color: #f0f0f0;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    border-radius: 5px 5px 0 0;

    & h2 {
      margin: 0;
      font-size: 1.5rem;
    }
  }

  & .card-body {
    padding: 10px;
  }

  & .card-footer {
    background-color: #f0f0f0;
    padding: 10px;
    border-top: 1px solid #ddd;
    border-radius: 0 0 5px 5px;

    & a {
      color: var(--body-color);
      text-decoration: none;
    }
  }
}

@media (max-width: 768px) {
  .card {
    padding: 10px;
  }
}

.dropzone {
  & .content-area {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    border: 2px dashed #aaa;

    & i,
    & p {
      color: #aaa;
    }

    & i {
      font-size: 50px;
    }

    & p {
      margin-top: 15px;
      font-size: 16px;
    }
  }

  & section {
    & li {
      margin-bottom: 10px;
      background: #e9f0ff;
      list-style: none;
      padding: 15px 20px;
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: space-between;

      & i {
        color: #6990f2;
        font-size: 30px;
      }
    }

    & .details {
      & span {
        font-size: 14px;
      }
    }

    &.uploaded-area {
      margin-top: 1rem;

      &.onprogress {
        max-height: 150px;
      }

      & li {
        & .content {
          display: flex;
          align-items: center;
        }

        & .details {
          display: flex;
          margin-left: 15px;
          flex-direction: column;

          & .size {
            color: #404040;
            font-size: 11px;
          }
        }
      }

      & i.fa-check {
        font-size: 16px;
      }
    }

    &.progress-area {
      & li {
        & .content {
          width: 100%;
          margin-left: 15px;

          & .progress-bar {
            height: 6px;
            width: 100%;
            margin-bottom: 4px;
            background: #fff;
            border-radius: 30px;

            & .progress {
              height: 100%;
              width: 0%;
              background: #6990f2;
              border-radius: inherit;
            }
          }
        }
      }

      & .details {
        display: flex;
        align-items: center;
        margin-bottom: 7px;
        justify-content: space-between;
      }
    }
  }
}

/*Pagination*/
.pagination-area {
  & .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;

    & .li-css {
      position: absolute;
      margin-top: -2rem;
    }
    & .page-item {
      margin: 0 5px;

      &:first-child {
        margin-left: 0;

        & .page-link {
          border-top-left-radius: 50%;
          border-bottom-left-radius: 50%;
        }
      }
      &:last-child {
        & .page-link {
          border-top-right-radius: 50%;
          border-bottom-right-radius: 50%;
        }
      }
      &.active,
      &:hover {
        & .page-link {
          color: #fff;
          background: var(--main-color);
        }
      }
      & .page-link {
        border: 0;
        padding: 0 10px;
        -webkit-box-shadow: none;
        box-shadow: none;
        outline: 0;
        width: 34px;
        height: 34px;
        display: block;
        border-radius: 4px;
        background: #e9ecee;
        line-height: 34px;
        text-align: center;
        font-size: 13px;
        color: #383e50;
        text-decoration: none;

        &.dot {
          background-color: transparent;
          color: #adb5bd;
          letter-spacing: 2px;
        }
        &:first-child {
          border-top-left-radius: 4px;
          border-bottom-left-radius: 4px;
        }
        &:last-child {
          border-top-right-radius: 4px;
          border-bottom-right-radius: 4px;
        }
      }
    }
  }
}
.card-grid{
   margin-bottom:0;
  & .img-wrap {
    text-align: center;
    display: block;
    overflow: hidden;
    position: relative;
    background: white;
    height: 200px;

    & img {
      height: 100%;
      max-width: 100%;
      width: 100%;
      display: inline-block;
      -o-object-fit: cover;
      object-fit: cover;
    }
  }

  & .info-wrap {
    margin-top: 1rem;

    & a.title {
      color: #000;
      text-decoration: none;
      font-weight: bold;
    }
  }
}
