.carousel {
  float: left;
  margin-right: 1em;
}
.carousel.weemHotel {
  max-width: 258px;
}
.carousel.main {
  max-width: 240px;
  float: none;
  margin-right: 0;
  align-self: center; 
  justify-self: center;
}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}
#dot-container, #dot-container .dots {
  position: relative;
  z-index: 20;
}
#dot-container .dots {
  cursor: pointer;
}
.weemHotel .slideshow-container {
  max-width: 258px;
}
.main .slideshow-container {
  	width: 240px;
	height: 250px;
	display: grid;
}
.main .slideshow-container img {
	width: auto;
	max-height: 95%;
	max-width: 100%;
	align-self: end;
	justify-self: center;
}
.main .slideshow-container p {
	display: block;
	margin: 0 auto;
	hyphens: none;
	align-self: start;
	justify-self: center;
}

/* Make the images invisible by default 
.slide-container {
  display: none;
}*/

/* forward & Back buttons */
.Back, .forward {
  cursor: pointer;
  position: absolute;
  top: 48%;
  width: auto;
  margin-top: -23px;
  padding: 17px;
  color: grey;
  font-weight: bold;
  font-size: 150%;
  transition: 0.4s ease;
  border-radius: 0 5px 5px 0;
  user-select: none;
}

/* Place the "forward button" to the right */
.forward {
  right: 0;
  border-radius: 4px 0 0 4px;
}

/*when the user hovers, add a black background with some little opacity */
.Back:hover, .forward:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption Info */
.Info {
  color: #e3e3e3;
  font-size: 16px;
  padding: 10px 14px;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

/* Worknumbering (1/3 etc) */
.MessageInfo {
  color: #f2f2f3;
  font-size: 14px;
  padding: 10px 14px;
  position: absolute;
  top: 0;
}

/* The circles or bullets and indicators */
.dots {
  cursor: pointer;
  height: 16px;
  width: 16px;
  margin: 0.5ex 3px;
  background-color: black;
  opacity: 35%;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}
.weemHotel .dots {
  height: 16px;
  width: 16px;
}
.main .dot-container {
	display: none;
}

.enable {
  opacity: 100%;
}
.dots:hover {
  opacity: 60%;
}

/* Faint animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.4s;
  animation-name: fade;
  animation-duration: 1.4s;
}

@-webkit-keyframes fade {
  from {opacity: .5}
  to {opacity: 2}
}

@keyframes fade {
  from {opacity: .5}
  to {opacity: 2}
}

/* Tiny Screen Rules */
@media screen and (max-width: 400px) 
{
	.carousel.weemHotel {
	  float: none;
	  margin-right: auto;
	  margin-left: auto;
	}
}