.updated { text-align:center; font-weight: bold; color: green; background-color:white; }
.required { text-align:center; font-weight: bold; color: red; background-color:white; }
/* Container holding the image and the text */
.img-container {
  position: relative;
  text-align: center;
  color: white;
}

/* Bottom left text */
.img-bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.img-top-left {
  position: absolute;
  top: 0px;
  left: 0px;
}

/* Top right text */
.img-top-right {
  position: absolute;
  top: 0px;
  right: 0px;

}

/* Bottom right text */
.img-bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text */
.img-centered {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.rumm_btn {
  font: bold 16px Arial;
  background-color: greenyellow;
}
.rumm_required { 
  /* used in login modal */
  font: bold 14px Arial;
  color: red;
}
.footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
}
.no-padding { padding-left: 0; padding-right: 0; }
.modal-header, .close {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
  background-color: #428bca;
  color: white; 
  text-align: center;
  font-size: 30px;
}
.modal-footer {
  background-color: #f9f9f9;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.carousel-caption {
opacity: .7;
border-radius: 25px;
}
.flex-container {
	display: flex;
	flex-direction: row; /* */
/*	justify-content: center; */
	flex-wrap: wrap;
	background-color: white;
	/* align-items: ;*/
	/* align-content: ;*/
	/* flex-flow: ;*/
	/* order: ;*/
	/* align-self: ;*/
	/* flex: ; shorthand property for the flex-grow, flex-shrink and flex-basis*/
}
body, html {
	height: 75%;
  transition: background-color .5s;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
