// CSS code for image slider
// Creating a Custom Image Slider

/*
* 
{
  box-sizing: border-box;
}
  
.image-sliderfade 
{
  display: none;
}
  
img 
{
  vertical-align: middle;
}
  
// Slideshow container 
.image_slider_container
{
  max-width: 1000px;
  position: relative;
  margin: auto;
}
  
// Caption text 
.image_slider_text 
{
  color: #f2f2f2;
  font-size: 15px;
  padding: 20px 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40%;
  background: rgba(0, 0, 0, .7);
  text-align: left;
}
  
// The dots/bullets/indicators 
.dot 
{
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: transparent;
  border-color: #ddd;
  border-width: 5 px;
  border-style: solid;
  border-radius: 50%;
  display: inline-block;
  transition: border-color 0.6s ease;
}
  
.active 
{
  border-color: #666;
}
  
// Animation 
.fade 
{
  -webkit-animation-name: fade-image;
  -webkit-animation-duration: 1.5s;
  animation-name: fade-image;
  animation-duration: 1.5s;
}
  
@-webkit-keyframes fade-image
{
  from {opacity: .4} 
  to {opacity: 1}
}
  
@keyframes fade-image
{
  from {opacity: .4} 
  to {opacity: 1}
}
  
// On smaller screens, decrease text size
@media only screen and (max-width: 300px) 
{
  .image_slider_text {font-size: 11px}
}

*/

// Image Slider using jQuery
img {
	width: 100%;
}
.height {
	height: 10px;
}
	  
/* Image-container design */
.image-container {
	max-width: 800px;
	position: relative;
	margin: auto;
}
	  
.next {
	right: 0;
}
	  
/* Next and previous icon design */
.previous,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	padding: 10px;
	margin-top: -25px;
}
	  
/* caption decorate */
.captionText {
	color: #000000;
	font-size: 14px;
	position: absolute;
	padding: 12px 12px;
	bottom: 8px;
	width: 100%;
	text-align: center;
}
	  
 /* Slider image number */
.slideNumber {
	background-color: #5574C5;
	color: white;
	border-radius: 25px;
	right: 0;
	opacity: .5;
	margin: 5px;
	width: 30px;
	height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	position: absolute;
}
.fa {
	font-size: 32px;
}
	  
.fa:hover {
	transform: rotate(360deg);
	transition: 1s;
	color: white;
}
	  
.footerdot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbbbbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.5s ease;
}
	  
.active,
.footerdot:hover {
	background-color: black;
}
