﻿.app-holder {
  display: block !important;
  overflow-y: auto;
}

.app-list-title {
  color: #718096;
}

.app-list {
  margin: 12px;
  padding: 5px 12px;
  /*height: calc(100vh - 70px);*/
  min-height: 40%;
  margin-bottom: 40px;
}

.no-apps {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.app-list .card {
  position: relative;
  /* align-items: center; */
  padding: 5px;
  cursor: pointer;
  /*font-weight: bold;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);*/
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  min-height: 215px;
}

.app-list .card-mark {
  position: absolute;
  top: 5px;
  right: 5px;
}

.app-list .card-mark h5 {
  color: #9a9a9a;
}

.app-list .card-img-top {
  width: 22%;
  padding: 10px;
  filter: brightness(5);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 5px;
}

.app-list .card-body {
  padding: 3px 10px;
  width: 100%;
}

.app-list .card-body .card-title {
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 95%;
}

.card .card-img-top.app-info-img {
  width: 30%;
}


p.card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInCard 0.5s ease-out forwards;
}

@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1023px) {
  .app-list .card {
    min-height: 70px;
  }

  .app-list .card-img-top {
    width: 50px;
    position: absolute;
  }

  .app-list .card-body {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 75%;
    margin-left: 55px;
  }

  .app-list .card-body .card-title {
    width: 95%;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
  }

  p.card-desc {
    -webkit-line-clamp: 4;
    /* number of lines */
    display: none;
  }
}

@media screen and (max-width: 1366px) and (min-width: 1024px) {
  .app-list .card {
    min-height: 200px;
  }
}
