.tabify .tab-names {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color: white;
	border-bottom: 1px solid #e3e3e3;
	border-left: 15px solid white;
	border-right: 15px solid white;
	text-align: center;
	width: 100%;
    z-index: 10;
}

.tabify .tab-name {
	border-radius: 15px 15px 0 0;
    border: 1px solid #eeeeee;
    border-bottom: none;
	margin-left: .5rem;
	margin-right: .5rem;
	background: transparent;
	color: black;
	padding: 1rem 1.5rem;
	outline: none;
	transition: none;
}

.tabify .tab-name .fa {
	margin-right: .4em;
    width: 1em;
}

.tabify .tab-name:first-child {
	margin-left: 0;
}

.tabify .tab-name:last-child {
	margin-right: 0;
}

.tabify .tab-name.active {
	border: 1px solid #e3e3e3;
    border-bottom: 1px solid #ffffff;
    margin-bottom: -1px;
}

.tabify .tab-contents {
	margin-top: -1px;
	border: 1px solid #e3e3e3;
	padding: 20px;
	width: 100%;
	z-index: 1;
	border-radius: 10px;
	margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    .tabify .tab-name {
        font-size: 0;
	}

	.tabify .tab-name .fa {
		font-size: 1rem;
		margin-right: 0;
    }
}