/* 
    Created on : Nov 1, 2017
	Modified on: May 19, 2018
    Author     : Robert
*/

/* For scrollable table body */

.fixed_header tbody{
	display: block;
	overflow: auto;
	height: 400px;
	width: 100%;
}

.fixed_header thead tr{
	display: block;
}

.main-content {
	padding-bottom: 60px;
}
/* End scrollable table body */

.register {
	padding:15px;
	border-radius: 10px;
}

#pswd_info {
	display: none;
	padding:15px;
	border-radius: 5px;
	border:1px solid #ddd;
	background-color: ghostwhite;
}

#pswd_info::before {
	position: absolute;
	left: 45%;
	font-size:14px;
	color:white;
}

.headerrow {
	background-color: rgb(179,179,255);
	color: black;
	font-weight: bold;
	min-height:60px;
	padding:15px;
}

div.polaroid {
	width: 150px;
	padding: 10px;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
	text-align: center;
	background-color: white;
	color: black; 
	height: 150px;
}

div.photocontainer {
	padding: 10px;
	font-size: 10px;
}

.imageoverlay:hover img {
	opacity: 0.3;
}

.rotate90 {
	transform: rotate(90deg);
}

.rotate0 {
	transform: rotate(0deg);
}

.imagerow {
	background-color: rgb(204,204,255);
	color: black;
	padding:10px;
}

.carousel img{
    margin: auto;
    padding: 10px;
    max-height:400px;
    max-width:100%;

}

.w-15 {
	width: 15%;
}

.w-10 {
	width: 10%;
}

.w-20 {
	width: 20%;
}

.w-40 {
	width: 40%;
}

/* This is the spinning loader css */
     /* Center the loader */
#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

     /* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}