/*
 CSS for the main interaction
*/
.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;
}


.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
	background: #27AAC5;
	border:2px solid #27AAC5;
	color: white;
}

input:focus-visible + label {
  border-radius: 3px;
}

.tabset > label:hover,
.tabset > input:focus + label,
.tabset > input:checked + label {
  color: white;
}

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

.tabset > input:checked + label {
  border-color: #27AAC5;
  margin-bottom: -1px;
	background: white;
	color: #27AAC5;
}

.tab-panel {
  padding: 30px 0;
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.tab-panel div{
	width: 22%;
	margin: 0 1%;
	display: inline-table;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.tab-panel div strong{
	font-size: 18px;
	line-height: 17px;
}

.tabset {
  max-width: 65em;
}


@media only screen and (min-width:0px) and (max-width:450px){
	.tab-panel div{
	width: 45%;
	margin: 0 1%;
	font-size: 12px;
		line-height: 17px;
}
	.tab-panel div img{
		width: 40px;
	}
	
}


@media only screen and (min-width:451px) and (max-width:767px){
	.tab-panel div{
	width: 19%;
	margin: 0 1%;
	font-size: 12px;
}

}



@media only screen and (min-width:768px) and (max-width:1023px){
	.tab-panel div{
	width: 20%;
	margin: 0 1%;
	font-size: 14px;
}
	
}


@media only screen and (min-width:1024px) and (max-width:1300px){
	.tab-panel div{
	width: 21%;
	margin: 0 1%;
	font-size: 14px;
}
	
}
