.ohp-tab {
    position:relative;
}
.ohp-tab > .tab {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
	flex-wrap: nowrap;
}
.ohp-tab > .tab li {
	margin: 0 5px;
	padding: 0;
	list-style: none;
}
.ohp-tab > .tab li a {
	background: #eee;
    border: solid 1px #ccc;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
	padding: 20px 20px 5px 20px;
    margin-top: 15px;
	display: block;
    color: #000;
    font-size: 1.4em;
    text-decoration: none;
	transition: 0.2s;
}
.ohp-tab > .tab li a[aria-selected=true] ,
.ohp-tab > .tab li a:hover {
	background: #fff;
    padding: 20px;
    margin: 0;
    position: relative;
    bottom: -1px;
}

.ohp-tab > .tabpanel {
	margin: 0;
    padding: 20px;
    background: #fff;
    border-top: solid 1px #ccc;
}
.ohp-tab > .tabpanel [aria-hidden=true] {
	display:none;
}
