@charset "utf-8";

/* Container holds everything in place */
.slider-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 600px;
	overflow: hidden;
	user-select: none;
}

/* Force both images to stack exactly on top of each other */
.slider-container img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none; /* Keeps images from blocking slider drag */
}

/* The top image starts clipped at 50% width */
.image-after {
	clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

/* Decorative visual divider bar */
.slider-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 4px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	pointer-events:none;
	z-index: 2;
}

/* Invisible functional slider input covering the container */
.slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent!important;
	appearance: none;
	cursor: ew-resize;
	z-index: 10;
	margin: 0;
	-webkit-appearance: none;
	outline: none;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid #333333;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	cursor: ew-resize;
}

.slider::-moz-range-thumb {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #ffffff;
	border: 2px solid #333333;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
	cursor: ew-resize;
}




* {box-sizing: border-box;}
/* Tab Gallery -The grid: Four equal columns that floats next to each other */
.column {
  float: left;
  width: 25%;
  padding: 10px;
}

/* Style the images inside the grid */
.column img {
  opacity: 0.8;
  cursor: pointer;
}

.column img:hover {
  opacity: 1;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* The expanding image container (positioning is needed to position the close button and the text) */
.container {
  position: relative;
  display: none;
}

/* Expanding image text */
#imgtext {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  font-size: 20px;
}

/* Closable button inside the image */
.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 35px;
  cursor: pointer;
}