@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");


.dashboard-slide {
  width: 25rem;
}

@media (max-width:500px) {
  .dashboard-slide {
    width: 100% !important;
    height: 100% !important;
  }
  .dashboard-slide .dashboard-slide-img img {
    width: 100% !important;
    height: 100% !important;
  }
}

.dashboard-slide .dashboard-slide-img img {
  border-radius: .5rem .5rem .5rem .5rem;
}


.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.dashboard-slider-control {
  position: relative;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-slider-control .swiper-button-next {
  right: 58% !important;
  transform: translateX(58%) !important;
}

.dashboard-slider-control .swiper-button-prev {
  right: 42% !important;
  transform: translateX(40%) !important;
}

.dashboard-slider-control .slider-arrow::after {
  content: '';
}

.dashboard-slider-control .swiper-pagination {
  position: relative;
  width: 150px; /* for control clickable area*/
  bottom: 0px;
}

.dashboard-slider-control .swiper-pagination .swiper-pagination-bullet {
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.dashboard-slider-control .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.swiper-button-prev i{
  color: #aea8a8;
}

.swiper-button-next i{
  color: #aea8a8;
}

.dashboard-slide-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  color: #444444;
  padding: 10px;
  transform: translate(0px, -100px);
  opacity: 0;
  bottom: -100px;
  width: 510px!important; 
  height: 100px;
  border-radius: 0rem 0rem .4rem .4rem;
  display: flex;
  align-items: center; 
  justify-content: center;
}

.dashboard-slide:hover .dashboard-slide-details {
  opacity: 1;
  z-index: 1;
}

.slide-shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none; 
  opacity: 0; 
  border-radius: .5rem .5rem .5rem .5rem;
  transition: opacity 0.3s ease; 
  margin: 0px!important;
  padding: 0px!important;
  width: 510px!important;
}

