blockquote {
  	font-size: 14px;
  	font-family: Roboto;
  	color: #282A36;
  	margin: 20px 0px 10px 0px;
  	padding: 1.0em 15px 0.85em 15px;
  	border-left: 5px solid #4B6CDC;
  	line-height: 1.3;
  	position: relative;
  	background: #E5EBFF;
  	border-radius: 4px;
}

.warning {
	border: 1px solid #F47F0C;
  	border-left: 5px solid #F47F0C;
  	background: #FDE5CE;
}

.main-grid {
	display: grid;
	grid-template-columns: 10% 80% 10%;
	gap: 0px;
	grid-auto-rows: minmax(100px, auto);
	/*background: yellow;*/
}
.main-grid-left {

}

.main-grid-center {
	min-height: 800px;
	min-width: 500px;
}

.main-grid-right {

}

.shadow-container {
	box-shadow: 0px 0px 5px lightgray;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.gradient-bar {
	opacity: 1;
	background-image: linear-gradient(45deg, rgba(40, 78, 207, 1) 0%, rgba(0, 188, 148, 1) 100%);
	width: auto;
	height: 8px;
}

.banner {
	display: grid;
	grid-template-columns: 80% 20%;
	gap: 0px;
	grid-auto-rows: minmax(200px, auto);
	background-color: rgba(40,42,54, 1);
}

.banner-title {
	opacity: 1;
	color: rgba(255,255,255,1);
	font-family: "Roboto";
	font-size: 48px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0px;
	text-align: left;
	line-height: 52px;
	margin: auto;
	padding-left: 24px;
	height: auto;
}

.banner-image {
	text-align: right;
}

.alert-bar {
	display: grid;
	grid-template-columns: 100%;
	gap: 0px;
	grid-auto-rows: minmax(100px, auto);
}

.key-value {
	display: grid;
	grid-template-columns: 20% 80%;
	gap: 0px;
	grid-auto-rows: minmax(20px, auto);
}

.content {
	padding: 16px;
}

.tabset > input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/
body {
  font: 14px/1.5em "Roboto", "Open Sans", Helvetica, sans-serif;
  color: #333;
}

.tabset > label {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border-top: 4px solid transparent;
  border-radius: 4px 4px 0px 0px;
  border-bottom: 0;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
  background-color: #F2F2F3;
  color: #282A36;
  margin-left: 10px;
  margin-right: 0px;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 0px;
  background: #8d8d8d;
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: #4B6CDC;
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #4B6CDC;
  border-left: 1px solid #CACCCE;
  border-right: 1px solid #CACCCE;
  border-bottom: 1px solid #fff;
  margin-bottom: -1px;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 -8px 10px 0 rgba(0,0,0,0.1);
  background-color: #FFFFFF;
  color: #4B6CDC;
  font-weight: bold;
}

.tab-panel {
  padding: 24px 24px;
  border-top: 1px solid #ccc;
  background-color: #FFFFFF;
}

.task-panel {
	border-radius: 4px;
	opacity: 1;
	background-color: rgba(242,242,243, 1);
	padding: 16px;
	margin-bottom: 32px;
}

.step {
	margin-top: 24px;
}

h4 {
	font-family: Roboto;
  	color: #282A36;
  	opacity: 1;
	color: rgba(40,42,54,1);
	font-size: 24px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0px;
	text-align: left;
}

.body {
	font-size: 14px;
	font-family: Roboto;
  	color: #282A36;
}

.body-header {
	font-weight: bold;
	font-size: 16px;
	font-family: Roboto;
  	color: #282A36;
}

.body-title {
	font-weight: bold;
	font-size: 14px;
	font-family: Roboto;
  	color: #282A36;
}

