.tabbed a {
	color: #21D4FD; 
	transition: all 1s;
}

.tabbed a:hover {
	color: #B721FF;
}

.tabbed {
	overflow-x: hidden;
	margin:  0 0 32px 0;
	padding-bottom: 16px;
	border-bottom: 1px solid #ccc;
}

.tabbed [type="radio"] {
	display: none;
    transition: all 1s;
}

.tabbed h4 {
	margin-top: 0px;
}

.tabs {
	display: flex;
    flex-wrap: wrap;
	align-items: stretch;
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #ccc;
}

.tab > label {
  
	display: block;
	margin-bottom: -3px;
	padding: 10px 10px;
	border: 1px solid #ccc;
    border-top-width: 3px;
	background: #eee;
	color: #666;
	font-size: 12px; 
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;	
	transition: all 0.3s;
}

.tab > label a {
    text-decoration: none;
    color: #666;
}

.tab:hover label {
	border-top-color: #333;
	color: #333;
}

.tab-content {
	display: none;
	color: #777;
	padding: 1rem;
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.tabbed [type="radio"]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(5) label,
.tabbed [type="radio"]:nth-of-type(6):checked ~ .tabs .tab:nth-of-type(6) label, 
.tabbed [type="radio"]:nth-of-type(7):checked ~ .tabs .tab:nth-of-type(7) label,
.tabbed [type="radio"]:nth-of-type(8):checked ~ .tabs .tab:nth-of-type(8) label, 
.tabbed [type="radio"]:nth-of-type(9):checked ~ .tabs .tab:nth-of-type(9) label,
.tabbed [type="radio"]:nth-of-type(10):checked ~ .tabs .tab:nth-of-type(10) label, 
.tabbed [type="radio"]:nth-of-type(11):checked ~ .tabs .tab:nth-of-type(11) label,
.tabbed [type="radio"]:nth-of-type(12):checked ~ .tabs .tab:nth-of-type(12) label, 
.tabbed [type="radio"]:nth-of-type(13):checked ~ .tabs .tab:nth-of-type(13) label, 
.tabbed [type="radio"]:nth-of-type(14):checked ~ .tabs .tab:nth-of-type(14) label, 
.tabbed [type="radio"]:nth-of-type(15):checked ~ .tabs .tab:nth-of-type(15) label 
{
	border-bottom-color: #fff;
	border-top-color: #944B94;
	background: #fff;
    border-top-width: 3px;
	color: #222;
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(4),
.tabbed [type="radio"]:nth-of-type(5):checked ~ .tab-content:nth-of-type(5),
.tabbed [type="radio"]:nth-of-type(6):checked ~ .tab-content:nth-of-type(6),
.tabbed [type="radio"]:nth-of-type(7):checked ~ .tab-content:nth-of-type(7),
.tabbed [type="radio"]:nth-of-type(8):checked ~ .tab-content:nth-of-type(8),
.tabbed [type="radio"]:nth-of-type(9):checked ~ .tab-content:nth-of-type(9),
.tabbed [type="radio"]:nth-of-type(10):checked ~ .tab-content:nth-of-type(10),
.tabbed [type="radio"]:nth-of-type(11):checked ~ .tab-content:nth-of-type(11),
.tabbed [type="radio"]:nth-of-type(12):checked ~ .tab-content:nth-of-type(12),
.tabbed [type="radio"]:nth-of-type(13):checked ~ .tab-content:nth-of-type(13),
.tabbed [type="radio"]:nth-of-type(14):checked ~ .tab-content:nth-of-type(14),
.tabbed [type="radio"]:nth-of-type(15):checked ~ .tab-content:nth-of-type(15) {
	display: flex;
}

.tab-content {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1.5rem;
	box-sizing: border-box;
    min-height: 150px;
}

.tab-content h4 {
	width: 100%;
}

.tab-content .content-box h3 {
	width: 100%;
	margin: 0;
	border-bottom: 1px solid lightgrey;	
}

.content-box {
        border-width: 1px;
    	border-color: var(--shadow);
    	border-style: solid;
    	background-color: #ffffffed;
    	box-shadow: 0 0 4px var(--shadow);
		padding: 1rem;
    	border-radius: 0.5rem;
   	overflow: hidden;
}

.content-box h3 {
    margin-top: 0rem;
}

.content-box-no-border {
    border-width: 0;
    box-shadow: none;
}

.content-box img {
    max-width: 100%;
}

.content-box-small {
	flex-grow: 1;
	min-width: 200px;
	width:30%;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.70);
}

.content-box-medium {
	flex-grow: 1;
	min-width: 200px;
	width:40%;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.70);
}

.content-box-large {
	flex-grow: 1;
	min-width: 200px;
	width:100%;
	padding: 10px;
	box-sizing: border-box;
	transition: all 0.5s;
	background-color: rgba(255, 255, 255, 0.70);
}



/* Tri Column Layout */
.layout-tri {
    width: 100%;
    min-width: 200px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
}

.layout-tri-child {
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 200px;
    flex-grow: 1;
    flex-basis: 0;
    gap: 1.5rem;
    display: flex;
}

/* two Column Layout */
.layout-two {
    width: 100%;
    min-width: 200px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}

.layout-two-child {
    flex-direction: column;
    flex-wrap: wrap;
    min-width: 250px;
    flex-grow: 1;
    flex-basis: 0;
    gap: 1.5rem;
    display: flex;
    max-width: 50%;
}

.layout-flex {
    display: flex;
     flex-direction: row;
    flex-wrap: wrap;
    min-width: 200px;
    flex-grow: 1;
    flex-basis: 0;
    gap: 1.5rem;
}

div.layout-flex::after { 
    
}

.layout-fixed-height {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2rem;
	box-sizing: border-box;
}

.layout-fixed-child {
	min-height: 100px;
	width: calc(33.3% - 2rem);
	min-width: 200px;
    border-width: 1px;
    	border-color: var(--shadow);
    	border-style: solid;
    	background-color: #ffffffed;
    	box-shadow: 0 0 4px var(--shadow);
		padding: 1rem;
    	border-radius: 0.5rem;
   	overflow: hidden;
    box-sizing: border-box;
}