html {
	overflow: hidden
}
body {
  height: 100%;
  width: 100%;
  overflow: hidden
}

.display-container {
	width: 100%;
}

.left-colum {
	float: left;
	overflow-x: none;
	overflow-y: scroll;
	width: 50%;
	background-color: #f0f5f5;
	background-image: url(../img/0bg.png);

}

.right-colum {
	float: left;
	width: 50%;
	overflow-x: none;
	overflow-y: scroll;
	background-color: #f0f5f5;
	background-image: url(../img/1bg.png);
}

img[id^="item"] {
	border: 5px solid #ffffff; 
	width: 280px; 
	height: 200px; 
	float: left; 
	box-shadow: 0 0 2px #003366;
	margin: 2%;
}

div[id^="main-container"] {
	width: 305px; 
	height: 250px; 
	float: left; 
	margin-top: 7%;
	margin-left: 2%;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	box-shadow: 0 0 2px #003366;
	background-color: #ffffff;
	border-radius: 2%;
	font-weight: bold;
}

.right-colum-container {
	margin-top:5%;
}

.head-title {
	margin: 0 0;
	background-color: #333;
	font-size: 1.2em;
	padding: 0.05em;
	color: white;

}

.text-accent{
	font-weight: bold;
	color: #FF4F00;
}

.left-column-title{
	margin-top: 0;
	background-color: #FF9B73;
	font-size: 1.1em;
	padding: 0.05em;
	text-align: center;
	color: #5c5c8a;
	font-weight: bold;
	position: fixed;
	width: 50%;
	z-index: 10;

}

.right-column-title{
	margin-top: 0;
	background-color: #61D7A4;
	font-size: 1.1em;
	padding: 0.05em;
	text-align: center;
	color: #5c5c8a;
	font-weight: bold;
	position: fixed;
	width: 50%;
	z-index: 10;
}
.group-container-title{
	background-color: #b3e6ff;
	text-align:center;
}

.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
}
/* Style the links inside the navigation bar */
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 16px;
}


/* Change the color of links on hover */
.navbar a:hover {
    background-color: #ddd;
    color: black;
}


.navbar a.home {
    background-color: #2DD700;
    color: white;
}
.navbar a.check {
    background-color: #FF8500;
    color: white;
}
.navbar a.reset {
    background-color: #9702A7;
    color: white;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
  -webkit-animation-name: fadeIn; /* Fade in the background */
  -webkit-animation-duration: 0.4s;
  animation-name: fadeIn;
  animation-duration: 0.4s
}


/* Modal Content */
.modal-content {
  position: fixed;
  bottom: 0;
  background-color: #fefefe;
  width: 100%;
  -webkit-animation-name: slideIn;
  -webkit-animation-duration: 0.4s;
  animation-name: slideIn;
  animation-duration: 0.4s;
}

#modalHeaderText {
	font-size: 14px;
}

#modalText{
	font-size: 21px;
}
/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 32px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  color: white;
  
}

.modal-header-fine {
  background-color: #5cb85c;
  
}

.modal-header-err {
  background-color:  #DC143C;
}

.modal-body {padding: 2px 16px;}

/* Add Animation */
@-webkit-keyframes slideIn {
  from {bottom: -300px; opacity: 0} 
  to {bottom: 0; opacity: 1}
}

@keyframes slideIn {
  from {bottom: -300px; opacity: 0}
  to {bottom: 0; opacity: 1}
}

@-webkit-keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}

@keyframes fadeIn {
  from {opacity: 0} 
  to {opacity: 1}
}
