@import url('https://fonts.googleapis.com/css?family=Oswald:300,400,500,700');

@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');

:root,
[data-bs-theme=light] {
  --card-text-color: #000;
  --card-link-color: #000;
}

[data-bs-theme=dark] {
  --card-text-color: rgba(255, 255, 255, 1);
  --card-link-color: rgba(255, 255, 255, 1);
}

.gr-1 {
  background: linear-gradient(170deg, #00d7df 0%, #004561 100%);
}

.gr-2 {
  background: linear-gradient(170deg, #95ca38 0%, #429321 100%);
}

.gr-3 {
  background: linear-gradient(170deg, #C86DD7 0%, #3023AE 100%);
}

.gr-4 {
  background: linear-gradient(170deg, #01E4F8 0%, #1D3EDE 100%);
}

.gr-5 {
  background: linear-gradient(170deg, #c0c0c0 0%, #2c2c2c 100%);
}

.gr-6 {
  background: linear-gradient(170deg, #e09e60 0%, #9e3c04 100%);
}

.gr-7 {
  background: linear-gradient(170deg, #185ff8 0%, #4a0061 100%);
}

.gr-7 {
  background: linear-gradient(170deg, #ffd000 0%, #c9120c 100%);
}

.gr-8 {
  background: linear-gradient(170deg, #ff009d 0%, #c9120c 100%);
}

.column {
  transition: .4s;
  margin-bottom: 0.9rem;
  padding-left: 0rem;
  opacity: 1;

  &:hover {
    padding-left: 0rem;

    .ico-card {
      opacity: 0.6;
      transition: .8s;
    }

    .dashboard-card .dashboard-txt {
      margin-left: 1rem;

      h1,
      p {
        margin-left: -1rem;
        color: rgba(255, 255, 255, 1);
        opacity: 1;
      }
    }

    a {
      color: rgba(255, 255, 255, 1);

      &:after {
        width: 10%;
      }
    }
  }
}

.ico-card {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.dashboard-card {
  min-height: 185px;
  margin: 0;
  padding: 1.7rem 1.2rem;
  border: none;
  border-radius: 0;
  color: --card-text-color;
  letter-spacing: .05rem;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 0 21px rgba(0, 0, 0, .27);
  position: relative;
}

.dashboard-txt {
  transition: 0.4s;
  margin-left: 1rem;
  z-index: 1;

  h1 {
    transition: 0.4s;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
  }

  p {
    transition: 0.4s;
    font-size: .8rem;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0rem;
    margin-top: 10px;
    opacity: 0;
    color: rgba(255, 255, 255, 1);
  }
}

.dashboard-card a:hover {
  z-index: 3;
  font-size: .9rem;
  color: rgb(223, 223, 223);
  margin-left: 1rem;
  position: relative;
  bottom: 0rem;
  text-transform: uppercase;
}

.dashboard-card a {
  z-index: 3;
  font-size: .9rem;
  color: rgb(255, 255, 255);
  margin-left: 1rem;
  position: relative;
  bottom: 0rem;
  text-transform: uppercase;


  &:after {
    content: "";
    display: inline-block;
    height: 0.5em;
    width: 0px;
    margin-right: -100%;
    margin-left: 1%;
    opacity: 1;

    border-top: 1px solid rgba(255, 255, 255, 1);
    transition: .5s;
  }
}



.dashboard-card i {
  position: relative;
  right: -50%;
  top: 60%;
  font-size: 12rem;
  line-height: 0;
  opacity: .2;
  color: rgba(255, 255, 255, 1);
  z-index: 0;
}