
.selected-products .point:not(.active)::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #1F4385;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.selected-products .point.active {
  border: 4px solid #00000045;
}

.selected-products .point.active::before {
  content: url('./close_icon.svg');
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 567px) {
  .selected-products .swiper-slide {
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
}