.axis_button {
	border: none;
	outline: none;
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	overflow: hidden;
	background-color: #F1F1F1;
	width: 90%;
	text-align: center;
	font-size: 13px;
	display: block;
	white-space: normal;
	word-wrap: break-word;
}
.axis_button:hover {
	background-color: #B90B2E;
}
/*Styling for results div*/
.result_text {
	padding: 8px;
	background-color: #DDDDDD;
	/*border-radius: 25px;*/
}
.result_text .result_info_text {
	visibility: hidden;
	padding: 4px;
	display: inline-block;
}
.result_text:hover .result_info_text {
	visibility: visible;
	background-color: #AAAAAA;
	padding: 4px;
	display: inline-block;
	border-radius: 5px;
}
/*link buttons*/
.link_button{
	padding: 20px;
	width: 100%;
	background-color: #B90B2E;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	color: #FFFFFF;
	letter-spacing: 0.3px;
	font-family: 'Calibri', sans-serif;
	vertical-align: middle;
	border-radius: 5px;
	border-color: #DD0000;
	border-width: 1px; 
	box-sizing: border-box;
}
/*Result buttons*/
.result_button{
	border: none;
	outline: none;
	padding: 12px;
	cursor: pointer;
	overflow: hidden;
}
.result_button.active{
	background-color: #FFDD00;
}
.result_button.recommended{
	background-color: #BBFFBB;
}
.result_button.recommended.active{
	background-color: #559955;
}
.size_recommended{
	border-color: #000000;
	border-width: 0px;
	border-style: solid;
	padding: 4px 6px; /*vertical horizontal*/
	overflow: hidden;
	visibility: hidden;
	display: inline;
	background-color: #559955;
	/*
	color: #000000;
	font-weight: 500;
	font-size: 18px;
	*/
	width:30%;
	text-align: center;
	pointer-events: none;
}
.size_recommended.active{
	visibility: visible;
	display: inline;
	background-color: #559955;
}
/*Styling for header tabs*/
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}
.tab button:hover {
  background-color: #B90B2D;
}
.tab button.active {
  background-color: #B90B2D;
}
/*Styling for automation tabs*/
.auto_tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}
.auto_tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  width: 33.33%;
}
.auto_tab button:hover {
  background-color: #ddd;
}
.auto_tab button.active {
  background-color: #ccc;
}
.automation_panel{
	display:none;
	max-width:100%;
}
/*Styling for help info under accordion tabs*/
.help_btn{
	border: none;
	outline: none;
	margin: 0px;
	padding: 10px;
	cursor: pointer;
	overflow: hidden;
	background-color: #F1F1F1;
	width: 90%;
	text-align: center;
	font-size: 13px;
	display: block;
	white-space: normal;
	word-wrap: break-word;
}
.help_btn:hover {
	background-color: #B90B2E;
}
.help_info{
	visibility: hidden;
	display: none;
	transition: 1.2s;
	
	}
.spindle_tab:hover .help_info{
	display: block;
	background-color: #AAAAAA;
	border-radius: 15px;
	padding: 6px;
	transition: 0.5s;

}
.help_info.active{
	visibility: visible;
	display: block;
	background-color: #AAAAAA;
	border-radius: 15px;
	padding: 6px;
	transition: 1.2s;

}
/*Accordion styling*/
.accordion {
  background-color: #EEE;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 20px;
  transition: 0.4s;
}
.active, .accordion:hover {
  background-color: #B90B2D;
}
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
/*Image Modal see
https://www.w3schools.com/howto/howto_css_modal_images.asp*/
#spindle_curve_img{
	cursor: pointer;
	border-radius: 5px;
	transition: 0.3s;
}
/*Div container*/
#modal{
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 1;
	padding-top: 100px;
	padding-bottom: 80px;
	margin: auto;
	margin-top:0px;
	/*
	margin-left: 10%;
	margin-right: 10%;*/
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.6);
	/*top: calc(50% - 400px); // half of width*/
    /*left: calc(50% - 50px); // half of height*/
}
/*image*/
.modal_content {
  margin: auto;
  margin-left:10%;
  margin-right:10%;
  display: block;
  width: 80%;
  height: auto;
}
.interactive_button{
	border: none;
	outline: none;
	padding: 12px;
	cursor: pointer;
	overflow: hidden;
	display:inline-block;
	margin:auto;
	background-color: #EFEFEF;
}
.interactive_button.active{
	background-color:#B90B2D;
}
#modal_caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 20px;
}
#close_button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#close_button:hover,
#close_button:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
#interactive_graphic_container{
	max-width:100%;
	max-height:100%;
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:none;
	cursor: pointer;
}
/*Spindle warning box*/
.warning_box {
	background-color:#f48024;
	border: solid;
	border-width: 2px;
	border-radius: 25px;
	padding: 6px;
}
.warning_box p{
	text-align: center;
	color: #000000;
}
#vidSrc{
	margin: auto;
}