
* {
	box-sizing: border-box;
}

button, input, label, html, body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5rem;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

b {
	font-weight: 600;
}

body {
	width: auto !important;
	height: 100%;
	margin: 0;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background-color: #009bda;
	color: white;
	padding: 16px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	z-index: 2;
	margin-bottom: 16px;
}

.headertext {
	background-color: #009bda;
	color: white;
	font-size: 28px;
	font-weight: 300;
	/* letter-spacing: -0.02em; */
	letter-spacing: -0.02em;
}

main {
	padding: 80px 16px 16px 16px;
	max-width: 1200px;
	margin: 0 auto;
	background-color: white;
	min-height: 90vh;
}

footer {
	/*position: absolute;
	width: 100%;*/
	bottom: 0;
	background-color: #70706f;
	color: white;
	padding: 8px 16px;
	margin-top: 32px;
}

a {
	text-decoration: none;
	font-size: inherit;
	color: inherit;
 }
 
 a:hover {
	cursor: pointer;
	text-decoration: underline;
	-webkit-text-underline-position: under;
	-ms-text-underline-position: below;
	text-underline-position: under;
}
 
footer a {
	color: white;
}

h1, h2, h3, h4, h5 {
	font-weight: 400;
}


h1 {
	color: #009bda;
	margin-bottom: calc(1.25rem + 1.5vw);
	font-size: calc(1.125rem + 1.25vw);
	letter-spacing: -0.02em;
}

@media (min-width:1200px) {
	h1 {
		font-size: 2rem
	}
}

h3 {
	font-size: 1.5rem;
	margin-top: calc(3rem + 3vw);
	margin-bottom: calc(1rem + 3vw);
	color: #555;
}

h4 {
	font-weight: 400;
	font-size: 1.25rem;
	margin-top: calc(2rem + 4vw);
	margin-bottom: calc(1rem + 2vw);
	color: #555;
}

h5 {
	font-weight: 400;
	font-size: 1.125rem;
	margin: 1rem 0 0.5rem 0;
	line-height: 1.5rem;
	color: #fff;
}

img[slot="base"]:hover {
	border-radius: 0.5em;
	box-shadow: 0px 0px 6px 1px #009bda;
}

img[slot="1"]:hover, img[slot="2"]:hover, img[slot="3"]:hover {
	filter:brightness(120%);
}

table {
	border: 1px solid #444;
	border-collapse: collapse;
	min-width: 200px;
	margin-top: 32px;
}

th, td {
	padding: 8px;
	white-space: nowrap;
	font-size: 1em;
}

th {
	background-color: #555;
	color: white;
	font-weight: 400;
}

td {
	border: 1px solid #ccc;
	background-color: #fafafa;
	overflow: hidden;
	vertical-align: text-top;
}

td.center {
	text-align: center;
}

details.content div.devType {
	margin-top: 32px!important;
}

ul {
	color: #555;
}

li {
	line-height: 1.5em;
	margin-bottom: 8px;
}

.custom-button {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	background: -moz-linear-gradient(top, #fafafa 0%, #dfdfdf 100%);
	background: -webkit-linear-gradient(top, #fafafa 0%, #dfdfdf 100%);
	background: linear-gradient(to bottom, #fafafa 0%, #dfdfdf 100%);
	border-radius: 0px;
	border: 1px solid #bbb;
	padding: .5rem 1rem;
	line-height: 1.5em;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	font-size: 1rem;
	font-family: 'Open Sans', sans-serif;
}

.custom-button:hover {
	color: black;
	border-color: #555;
}

.custom-button:active {
	transform: translateY(1px);
}

.custom-button:disabled,
.custom-button[disabled] {
	opacity: .5;
	color: #777;
	border: 1px solid #ddd;
	background: -moz-linear-gradient(top, #fafafa 0%, #dfdfdf 100%);
	background: -webkit-linear-gradient(top, #fafafa 0%, #dfdfdf 100%);
	background: linear-gradient(to bottom, #fafafa 0%, #dfdfdf 100%);
	transform: none;
}

.custom-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 1rem;
	border-radius: 0px;
	border: 1px solid #ccc;
	background-color: #fefefe;
	color: #333;
	line-height: 1.5;
	padding: .375rem 2.25rem .375rem .75rem;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
}

details {
	background-color: #fafafa;
	border: 1px solid #ccc;
	border-radius: 0px;
	padding: 0px;
	margin: 16px 0;
}

details[open] {
	margin-bottom: 48px;
	border: 2px solid #ccc;
}

summary {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	font-size: 1.125rem;
	color: #555;
	line-height: 1.125em;
	padding: 12px 16px;
	cursor: pointer;
}

summary:hover {
	background-color: #eee;
}

.details-content {
	margin: 0;
	padding: 16px 32px;
	background-color: #fafafa;
	overflow: hidden;
}

.details-content button {
	display: block;
	min-width: 200px;
	margin: 16px 0;
}

.details-content p {
	display: block;
	margin-top: 0;
	margin-bottom: 16px;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	color: #555;
}

label {
	/*-webkit-appearance: none;  /* for webkit (safari, chrome) compatibility */
	/*-moz-appearance: none; /* for firefox compatibility */
	/*appearance: none;*/
	font-family: 'Open Sans', sans-serif;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	font-size: 1rem;
	font-weight: 400;
	color: #555;
	line-height: 1.5rem;
}

input[type='radio'], input[type='checkbox'] {
	margin: 0.5rem 0.25rem;
	font-size: 1rem;
}

.base-container {
	position: relative;
	width: 100%;
	margin-top: calc(1rem + 2vw);
	margin-bottom: calc(1rem + 4vw);
	border-radius: 0.7em;
	box-shadow: 2px 2px 10px 2px #ccc;
	min-height: 1.6em;
}

.slot-base, .slot-base-b {
	width: 100%;
	vertical-align: middle;
	height: auto;
}

.slot-1, .slot-2, .slot-3 {
	position: absolute;
	top: 0px;
	width: 22.8%;
	height: 100%;
}
.slot-1 {
	left: 5.72%;
}

.slot-2 {
	left: 27.36%;
}

.slot-3 {
	left: 48.99%;
}

.slot-3-b, .slot-2-b, .slot-1-b {
	position: absolute;
	top: 4.3%;
	width: 22.8%;
	height: 91%;
}
.slot-3-b {
	left: 28.45%;
}

.slot-2-b {
	left: 50.07%;
}

.slot-1-b {
	left: 71.73%;
}

area {
	cursor: pointer;
}

.modal {
	display: none;
	position: fixed;
	z-index: 3;
	padding-top: 32px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background-color: #fefefe;
	padding: 0;
	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.5s;
	animation-name: animatetop;
	animation-duration: 0.5s;
	min-width: 250px;
	/*in a box:*/
	margin: 0 auto;
	position: absolute;
	top: 32px;
	left: 50%;
	transform: translate(-50%, 10%);
}

@-webkit-keyframes animatetop {
	from {
		top: -200px;
		opacity: 0
	}
	to {
		top: 32px;
		opacity: 1
	}
}

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

.close {
	color: white;
	float: right;
	font-size: 2rem;
	font-weight: 400;
}

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

.modal-header {
	padding: 8px 16px 2px 16px;
	background-color: #009bda;
	color: white;
}

.modal-body {
	padding: 16px 16px;
	background-color: #fff;
}

.modal-footer {
	padding: 2px 16px;
	background-color: #eee;
	color: dimgray;
}

.slotoption {
	cursor: pointer;
	border: 1px solid #ccc;
	padding: 8px 16px;
	border-top: none;
	font-size: 1rem;
	color: #444;
}

.slotoption:hover {
	cursor: pointer;
	background-color: #ddd;
	color: #111
}

@media print {
	.add::before,
	.remove::before {
		display: none;
	}
}

@media only screen and (max-width: 1200px) {
	.headertext {
		font-size: 24px;
	}
}

@media only screen and (max-width: 992px) {
	.headertext {
		font-size: 24px;
	}
}

@media only screen and (max-width: 768px) {
	.headertext {
		font-size: 24px;
	}
}

@media only screen and (max-width: 576px) {
	.headertext {
		font-size: 22px;
	}

	footer a {
		font-size: 14px;
	}

	#applySettings, #applyView, details button, table {
		width: 100%;
	}
}