/* DASHBOARD CARDS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.main-container {
  padding: 30px;
}

/* HEADING */

.heading {
  text-align: center;
}

.heading__title {
  font-weight: 600;
}

.heading__credits {
  margin: 10px 0px;
  color: #888888;
  font-size: 25px;
  transition: all 0.5s;
}

.heading__link {
  text-decoration: none;
}

.heading__credits .heading__link {
  color: inherit;
}

/* CARDS */

.custom-dashboard .cards {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
}

.custom-dashboard .card {
  /* margin: 20px; */
  padding: 20px !important;
  /* width: 500px; */
  min-height: 200px;
  display: grid;
  grid-template-rows: 20px 50px 1fr 50px;
  border-radius: 10px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.2s;
}

.custom-dashboard .card:hover {
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
  transform: scale(1.01);
}

.custom-dashboard .card__link,
.custom-dashboard .card__exit,
.custom-dashboard .card__icon {
  position: relative;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.custom-dashboard .card__link::after {
  position: absolute;
  top: 25px;
  left: 0;
  content: "";
  width: 0%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.5s;
}

.custom-dashboard .card__link:hover::after {
  width: 100%;
}

.custom-dashboard .card__exit {
  grid-row: 1/3;
  justify-self: end;
}

.custom-dashboard .card__exit>div {
  float: left;
  display: grid;
  margin: 5px;
}


.custom-dashboard .card__icon {
  grid-row: 1/3;
  font-size: 30px;
}

.custom-dashboard .card__icon>img {
  height: 60px;
  width: auto;
  filter: invert(100%);
  /*  drop-shadow(0px 0px 1px #555); */

}

.custom-dashboard .card__title {
  grid-row: 3/4;
  font-weight: 400;
  color: #ffffff;
  /* text-shadow: 0px 0px 3px #333; */
}

.custom-dashboard .card__apply {
  grid-row: 4/5;
  align-self: center;
  /* text-shadow: 0px 0px 3px #111; */
}

.custom-dashboard .card__link {

  /* text-shadow: 0px 0px 3px #111; */
}

.card .content-card {
  border-top: solid 1px #FFF;
  /* rgba(142, 146, 156, 0.7); */
  min-height: 80px;
  position: relative;
  grid-row: 5/5;
  bottom: 0;
  justify-self: start;
}

/* Switch of card styles */
.card input.form-checkbox.form-boolean.form-boolean--type-checkbox {
  height: 80px !important;
}

.card .content-card>a {
  display: block;
}

.card .card__exit .js-form-item label {
  color: white !important;
  /* text-shadow: 0px 0px 3px #333; */
}

/* CARD BACKGROUNDS */

.custom-dashboard .card-1 {
  background: radial-gradient(rgb(31, 228, 245), rgb(63, 186, 254));

}

.custom-dashboard .card-2 {
  background: radial-gradient(rgb(251, 193, 204), rgb(250, 153, 178));
}

.custom-dashboard .card-3 {
  background: radial-gradient(#76b2fe, #b69efe);
}

.custom-dashboard .card-4 {
  background: radial-gradient(#60efbc, #58d5c9);
}

.custom-dashboard .card-5 {
  background: radial-gradient(#f588d8, #c0a3e5);
}

/* RESPONSIVE */

@media (max-width: 1600px) {
  .custom-dashboard .cards {
    justify-content: center;
  }
}


.views-exposed-form.bef-exposed-form {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}