/* IBMBST_style.css */

.openBtn {
	display: flex;
	justify-content: flex-start;
}

 /* 2. flex can't be 'left' should be; */
.openBtn {
	display: flex;
	justify-content: center;
}

.openButton {
	border: none;
	border-radius: 5px;
	background-color: #1c87c9;
	color: white;
	padding: 14px 20px;
	cursor: pointer;
	position: fixed;
}

.loginPopup {
	position: relative;
	text-align: center;
	width: 100%;
}

.formPopup {
	display: none;
	position: fixed;
	left: 45%;
	top: 5%;
	transform: translate(-50%, 5%);
	border: 3px solid #999999;
	z-index: 10000;
}

.formContainer {
	max-width: 300px;
	padding: 20px;
	background-color: #fff;
}

.formContainer input[type=text], .formContainer input[type=password] {
	padding: 15px;
	margin: 5px 0 20px 0;
	border: none;
	background: #eee;
}

.formContainer input[type=text]:focus, .formContainer input[type=password]:focus {
	background-color: #ddd;
	outline: none;
}

.formContainer .btn {
	padding: 12px 20px;
	border: none;
	background-color: #8ebf42;
	color: #fff;
	cursor: pointer;
	margin-bottom: 15px;
	opacity: 0.8;
}

.formContainer .cancel {
	background-color: #cc0000;
}

.formContainer .btn:hover, .openButton:hover {
	opacity: 1;
}

/* END IBMBST_style.css */

/* INDEX.php CSS */

.PREV_NEXT_BUTTON {
	color: black;
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	background-color: #d0d0d0;
	border: 2px solid #008CBA;
	border-radius: 6px;
}

.PREV_NEXT_CELL {
	border:none;
	text-align:center;
}

.INSTRUCTIONS {
	font-size: 20px;
	color: darkblue;
}

/* End INDEX.php CSS */

/* CSS for all boiler pages */

.nolines { /* removes all lines from a table - used for steps that have multiple parts (eg step 1g) */
	all:revert;
	border:none;
	/*rules:none;*/
}

table,
th,
td {
	padding: 10px;
	border: 1px solid black;
	border-collapse: collapse;
}

table.center {
	margin-left: auto;
	margin-right: auto;
}

.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px; /* If you want dots under the hoverable text */
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 500px;
	bottom: 100%;
	left: 50%;
	margin-left: -1px;
	background-color: salmon;
	color: #fff;
	text-align: left;
	/* padding: 5px 5; */
	border-radius: 6px;

	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
}

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

input {
	border-top-style: hidden;
	border-right-style: hidden;
	border-left-style: hidden;
	border-bottom-style: groove;
	background-color: #ffffff;
}

.no-outline:focus {
	outline: none;
}

.button77 {
	color: black;
	padding: 9px 22px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 14px;
	margin: 2px 2px;
	cursor: pointer;
	background-color: #d0d0d0;
	border: 2px solid #008CBA;
	border-radius: 5px;
}

.btn-text-center{
	text-align: center;
}

.LABEL {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-right: 15px;
}

.BUTTON {
	padding: 15px
}

.no_style {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

input {
	border-top-style: hidden;
	border-right-style: hidden;
	border-left-style: hidden;
	border-bottom-style: groove;
	background-color: #ffffff;
}

.no-outline:focus {
	outline: none;
}

.btn-text-center{
	text-align: center;
}

/* fade-in, fade-out stuff */

.hide{
	display:none;
}

.fade-in{
	animation: 1s fadeIn;
}

.fade-out{
	animation: 1s fadeOut;
}

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

@keyframes fadeOut{
	from { opacity:1; }
	to { opacity:0; }
}

/* End Multi.html CSS */

