body {
	font-family: "Trebuchet MS", sans-serif;
	padding: 0;
    padding-top: 15px;
	margin: 0 !important;
	background-image: url(/images/cloudbg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}

.mybutton {
    border: none;
    color: #000000;
    padding: 15px 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

.buttonred {
    background-color: #C50003;
}

.buttonorange {
    background-color: #FF7E00;
}

.buttonyellow {
    background-color: #FFDD00;
}

.buttongreen {
    background-color: #0AFF00;
}

.buttonblue {
    background-color: #5260ff;
}

.buttonpurple {
    background-color: #ab76f8;
}

.mybuttonrounded {
    border-radius: 50%;
}

.mybuttonhover:hover {
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.mybuttonhover:active {
  box-shadow: 0 0 !important;
}

.mybuttonshadow {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.myclickbutton {
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #ab76f8;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
}

.myclickbutton:hover {
    color: #FFFFFF;
    background-color: #9A5CF6;
}

.myclickbutton:active {
  background-color: #ab76f8;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

.form-control {
	height: auto;	
}

/* Override Navbar Brand Text */
.navbar-brand {
	font-family: milkshake;
}

/* Used to make a non Link Item appear as a link */
.hover-pointer {
	cursor: pointer;
}

/* This Centers the Modals in the exact center of the windows */
.modal {
  text-align: center;
  padding: 0!important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
/* End This Centers the Modals in the exact center of the windows */

/* Center the Div in the middle of the viewport (Used to Center Login Prompts) */
.center-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
}

/* Add to Element to Hide */
.hidden {
	display: none;
}

/* Style and Position Loading Box Div */
#loadingbox {
	position: absolute;
	top: 45%;
	left: 45%;
	z-index: 8000;
	height: 150px;
	width: 110px;
	box-shadow: 0px 0px 20px rgba(0,0,0,1.00);
	background-color: rgba(255,255,255,1.00);
	float: right;	
}

/* Loading Box Image Size */
#loadingbox>img {
	height: 100px;
	width: 100px;
}

.float-R {
    float: right;
}

.float-L {
    float: left;
}

/* Style and Position Message Box Div */
/*#errormsgbox {
	position: absolute;
	top: 45%;
	left: 45%;
	z-index: 8000;
	height: 150px;
	min-width: 110px;
	box-shadow: 0px 0px 20px rgba(0,0,0,1.00);
	background-color: rgba(255,255,255,1.00);
	float: right;	
}*/

/* Used to apply a drop shadow, Used on Login Box */
.ui-dropshadow {
	box-shadow: 0px 0px 20px #545b62;
}


/*** Start Responsive Image Grid CSS ***/

/* Use to create a responsive image grid
	Example:
		<div class='responseive-image-grid'>
			<div class='row'>
				<div class='column'>
					<img src='#'>
				</div>
				<div class='column'>
					<img src='#'>
				</div>
			</div>
			<div class='row'>
				<div class='column'>
					<img src='#'>
				</div>
				<div class='column'>
					<img src='#'>
				</div>
			</div>
		</div>
*/
div.responsive-image-grid > .row {
	display: flex;
	flex-wrap: wrap;
	padding: 0 4px;
}

div.responsive-image-grid > .row > .column {
  flex: 25%!important;
  max-width: 25%!important;
  padding: 0 4px!important;
}

div.responsive-image-grid > .row > .column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  div.responsive-image-grid > .row > .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  div.responsive-image-grid > .row > .column {
    flex: 100%;
    max-width: 100%;
  }
}
/*** End Responsive Image Grid CSS ***/


.pink {
    color: #B70AB6;
}

.alert-purple {
    background-color: #E2AEE3;
    border-color: #CA6BCC;
}

.size3 {
  font-size: 1.2em;
}