/* CSS for Casa Paloma Online Photo Slideshows */
/* Dave Kutilek */
/* June 2020 */


* {box-sizing: border-box}

body {margin:0;background-color: #000000;}

.align-center {margin:0 auto;text-align:center;}

img {
	max-width: 100%;
	height: auto; 
	vertical-align: middle
}

.logo img{
	padding-top:2px;
	padding-bottom:0px;
	padding-left:52px;
	padding-right:0px;
}


/* ---- Slideshow Title ---- */
.slideshow-title {
	margin:0 auto;
	margin-bottom:11px;
	text-align:center;
	font-family: Tahoma, Verdana, sans-serif;
	font-size: 32px;
	line-height: 120%;
	font-weight: normal;
	font-style: italic;
	vertical-align: middle;
	padding-top:1px;
	padding-bottom:2px;
	border:2px solid;
	border-color:#00ee00;
	color: #ffffcc;
	background-image: url("../images/glass-green.jpg");
	background-repeat: repeat;
}

/* ------- SLIDESHOWS 1440 pixels wide ------- */
.slideshow-container_1440 {
  max-width:1448px;
  padding-top:0px;
  padding-bottom:0px;
  padding-left:4px;
  padding-right:4px;
  position:relative;
  margin:auto;
  background-color:#000000;
}

/* ------- SLIDESHOWS 940 pixels wide ------- */
.slideshow-container_940 {
  max-width: 948px;
  padding-top:0px;
  padding-bottom:0px;
  padding-left:4px;
  padding-right:4px;
  position: relative;
  margin: auto;
  background-color: #000000;
}


/* ------- Previous & Next ------- */
.prev {
  cursor: pointer;
  position: absolute;
  top: 46%;
  width: auto;
  padding-left:22px;
  padding-top:12px;
  padding-bottom:12px;
  margin-left:14px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 0 8px 8px 0;
  user-select: none;
}

.prev:hover {
  background-color: rgba(33,33,33,0.5);
  color: #0000ff;
}

.next {
  cursor: pointer;
  position: absolute;
  top: 46%;
  width: auto;
  padding-right:22px;
  padding-top:12px;
  padding-bottom:12px;
  margin-right:16px;
  color: white;
  font-weight: bold;
  font-size: 28px;
  transition: 0.6s ease;
  border-radius: 8px 0 0 8px;
  user-select: none;
  right: 0;
}

.next:hover {
  background-color: rgba(33,33,33,0.5);
  color: #00ff00;
}


/* ---- Container for Slide Caption ---- */
.caption-container {
  text-align: center;
  line-height: 28px;
  font-size: 20px;
  font-family:Verdana, Calibri,sans-serif;
  padding-right:3px;
  padding-left:3px;
  padding-top:2px;
  padding-bottom:2px;
  margin-right:6%;
  margin-left:6%;
  margin-top:8px;
  margin-bottom:7px;
  color: #ffffcc;
  border:1px solid;
  border-color:#00ee00;
  background-color:#003300;
}


/* ---- the Dots ---- */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {background-color: #00ff00;}
.dot:hover {background-color: #00ff00;}


/* ---- The Slides Fade-in ---- */
#theslides.fadein {
  opacity: 1;
  transition: opacity 0.4s; 
  -webkit-animation-name: fade;
  -webkit-animation-duration: 0.4s;
  animation-name: fade;
  animation-duration: 0.4s;
}

#theslides {
  opacity: 0;
}

/* ------- PANORAMIC PHOTOS ------- */
.panoramic-container {
  max-width:6000px;
  padding-top:0px;
  padding-bottom:0px;
  padding-left:5px;
  padding-right:5px;
  position: relative;
  margin: auto;
  background-color: #000000;
}

.panoramic-photo {
  position:relative;
  margin:auto;
  border:2px groove;
  border-color:#AAAAAA;
}



