@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');
.custom-social-proof {
  position: fixed;
  /* bottom: 20px; */
  /* left: 20px; */
  z-index: 9999999999999 !important;
  font-family: 'Open Sans', sans-serif;
}
.custom-social-proof .custom-notification {
  width: 320px;
  border: 0;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.custom-social-proof .custom-notification .custom-notification-container {
  display: flex !important;
  align-items: center;
  height: 80px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-image-wrapper img {
  max-height: 55px;
  width: 35px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  padding-left:5px;
  /*object-fit: cover;*/
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper {
  margin: 0;
  height: 100%;
  color: gray;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0 6px 6px 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content {
  font-family: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 16px;
}
.custom-social-proof .custom-notification .custom-notification-container .custom-notification-content-wrapper .custom-notification-content small {
  margin-top: 3px !important;
  display: block !important;
  font-size: 12px !important;
  opacity: 0.8;
}
.custom-social-proof .custom-notification .custom-close {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform: rotate(45deg);
  opacity: 1;
}
.custom-social-proof .custom-notification .custom-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 5px;
}
.custom-social-proof .custom-notification .custom-close::after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: gray;
  position: absolute;
  left: 5px;
  top: 0;
}
.custom-social-proof .custom-notification:hover .custom-close {
  opacity: 1;
}

/* SPLIDE */
.splide__slide img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.thumbnail img {
  margin: 5px 0;
}
.splide-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splide-thumbnails {
  order: 2;
  max-width: 100%;
  margin-top: 1rem;
}

.splide-main {
  order: 1;
}

/* On desktop screens */
@media (min-width: 768px) {
  .splide-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .splide-thumbnails {
    order: 1;
    margin-top: 0;
    margin-right: 1rem;
  }

  .splide-main {
    order: 2;
  }

  .thumbnails {
    flex-direction: column;
    align-items: flex-start;
  }

  .thumbnail {
    margin: 0.2rem 0;
  }
}

/* Existing styles */
.splide {
  margin: 0 auto;
}

.thumbnails {
  display: flex;
  margin: 1rem auto 0;
  padding: 0;
  justify-content: center;
  max-height: 400px;
  overflow-y: hidden;
  overflow-x: hidden;
}

.thumbnail {
  width: 70px;
  height: 70px;
  list-style: none;
  margin: 0 0.2rem;
  cursor: pointer;
  opacity: 0.3;
}

.thumbnail.is-active {
  opacity: 1;
}

.thumbnail img {
  width: 100%;
  height: auto;
}
.splide__arrow {
  width: 32px;
  height: 32px;
  background-color: #fff;
  opacity: .7;
  padding: 0;
  border-radius: 6.4px;
}
/* mobile */
@media (max-width: 768px) {
  .thumbnails {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}