@charset "UTF-8";

* {
	box-sizing: border-box;
	outline: none;
}
body, html {
	scroll-behavior: smooth;
}
ol {
	text-align: left;
	padding-bottom: 50px;
}
span { 
	padding: 10px; 
} 

textarea{
	resize: none;
}

input[type="submit"]{
	margin-top: 20px;
}

#r-display,
#m-display,
#display{
	margin-top: 20px;
}

.header {
	text-align: center;
	border-bottom: 1px solid silver; 	
}
.info {
	font-size:.8em;
	color: red;
	letter-spacing:2px;
	padding-left:5px;
}
.icons{
	font-size: 1.3em;
}
.title{
	font-size: 1.3em;
	font-weight: bold;
	padding-bottom: 10px;
	color:black;
}
.pad{
	padding: 20px 0;
}
.black{
	color:black;
}
.right {
    text-align: right;
}
.bottomline{
	border-bottom: 1px solid silver;
}
.topmargin{
	margin-top: 20px;
}
.price{
	font-size: 2em;
	color:limegreen;
}
.background-red {
	background-color: red;
	text-align: center;
	padding: 5px;
	border:silver 1px solid;
	color: #FFFFFF;
	border-radius:4px;
}
.background-green {
	background-color: limegreen;
	text-align: center;
	padding: 5px;
	border:silver 1px solid;
	color: #FFFFFF;
	border-radius:4px;
}
.valign { 
	display: flex; 
	align-items: top; 
}    

/* Flex Format */		
.flex-container {
	display: flex;
	flex-direction: row;
}
.flex-item100 {
	padding: 0px 10px;
	flex: 100%;
}
.flex-item75 {
	padding: 0px 10px;
	flex: 75%;
}
.flex-item66 {
	padding: 0px 10px;
	flex: 66%;
}
.flex-item50 {
	padding: 0px 10px;
	flex: 50%;
}
.flex-item33 {
	padding: 0px 10px;
	flex: 33.33%;
}
.flex-item25 {
	padding: 0px 10px;
	flex: 25%;
}
.flex-item12 {
	padding: 0px 10px;
	flex: 12.5%;
}

/* Float Format */

.float-container {
	padding: 0px;
}
.float-child {
    width: 50%;
    float: left;
}

/* Tool Tip */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted white;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

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

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

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

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

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

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

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}




/* Responsive layout - makes a one column-layout instead of two-column layout */
@media (max-width: 800px) {
	.flex-container {
		flex-direction: column;
	}	
	.wrapper.style2 header h2 {
		font-size: 1.125em;
	}
	.wrapper.style2 h4,
	.wrapper.style2 header p,
	.title{
		font-size: 1em;
	}
	.flex-item100,
	.flex-item75,
	.flex-item66,
	.flex-item50,
	.flex-item33,
	.flex-item25,
	.flex-item12{
		padding: 0 0;
	}
}

