.icon-circle {
  width: 85px;
  height: 85px;
  background: #5331fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 3px black!important;
  font-size: 38px;
}
.app-card {
  transition: all 0.28s ease;
  background: white;
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.card-img-wrapper {
  height: 180px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.transition-all {
  transition: all 0.28s ease;
}

.rounded-4 {
  border-radius: 1.25rem !important;
}

.custom-sticky{
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.custom-sticky-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-sticky-item{
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.custom-sticky-item .lo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #2607a1;
  color: #fff;
  font-size: 20px;
}

.custom-sticky-item .lo a,
.custom-sticky-item .text a{
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.custom-sticky-item .text{
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 0;             
  background: #2607a1;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;

  max-width: 0;          
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-sticky-item:hover .text{
  max-width: 140px;
  padding: 0 16px;        
}

.custom-sticky-close{
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.custom-sticky-item .text{
  transform: translateX(-10px);
  opacity: 0;
}

.custom-sticky-item:hover .text{
  transform: translateX(0);
  opacity: 1;
}

.custom-sticky-close:hover{
  background: #000;
}

