/*ScrollBar*/

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
  background: #6c757d;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3c7db5;
}

/*ScrollBar*/

/* Move overlay div below image on mobile view */
@media (max-width: 767px) {
  .order-mobile {
      order: 1;
  }
}


