
.guten-tabs {
	overflow: hidden;
}

.guten-tabs .tab-heading {
	display: flex;
	flex-direction: row;
}

.guten-tabs .tab-heading .tab-heading-item {
	border: 2px solid transparent;
	cursor: pointer;
	padding: 20px 25px;
	position: relative;
}

.guten-tabs .tab-heading .tab-heading-item:after, .guten-tabs .tab-heading .tab-heading-item:before {
	border-bottom: solid;
	border-color: transparent;
	border-width: 2px;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	top: 100%;
	width: 999em;
}

.guten-tabs .tab-heading .tab-heading-item:after {
	left: 100%;
}

.guten-tabs .tab-heading .tab-heading-item:before {
	right: 100%;
}

.guten-tabs .tab-heading .tab-heading-item.active {
	border-color: #ddd;
	cursor: inherit;
}

.guten-tabs .tab-heading .tab-heading-item.active:after, .guten-tabs .tab-heading .tab-heading-item.active:before {
	border-color: #ddd;
}

.guten-tabs .tab-heading-mobile {
	border: 2px solid #ddd;
	display: none;
	padding: 20px;
	position: relative;
	text-align: center;
}

.guten-tabs .tab-heading-mobile .gutenverse-icon-svg {
	height: 16px;
	position: relative;
	width: 16px;
}

.guten-tabs .tab-heading-mobile .gutenverse-icon-svg .chevron-up-icon {
	display: none;
}

.guten-tabs .tab-heading-mobile .tab-title {
	align-items: center;
	cursor: pointer;
	display: flex;
	justify-content: center;
	margin: 20px;
}

.guten-tabs .tab-heading-mobile .tab-title span {
	margin-right: 20px;
}

.guten-tabs .tab-heading-mobile .tab-title .tab-dropdown-icon:after {
	content: "";
}

.guten-tabs .tab-heading-mobile .tab-option {
	background: #fff;
	border: 2px solid #ddd;
	border-top-color: transparent !important;
	display: none;
	left: 50%;
	position: absolute;
	top: 100%;
	transform: translate(-50%);
	width: 80%;
	z-index: 999;
}

.guten-tabs .tab-heading-mobile .tab-option .tab-option-item {
	cursor: pointer;
	line-height: 2em;
	padding: 10px 0;
}

.guten-tabs .tab-heading-mobile.open .gutenverse-icon-svg .chevron-up-icon, .guten-tabs .tab-heading-mobile.open .tab-option {
	display: block;
}

.guten-tabs .tab-heading-mobile.open .gutenverse-icon-svg .chevron-down-icon {
	display: none;
}

.guten-tabs .tab-heading-mobile.open .tab-title .tab-dropdown-icon:after {
	content: "";
}

.guten-tabs .tab-body {
	border: 2px solid #ddd;
	border-top-style: none;
	overflow: hidden;
	padding: 20px;
}

.guten-tabs .tab-body .tab-body-item {
	display: none;
}

.guten-tabs .tab-body .tab-body-item.active {
	display: block;
}

.guten-tabs.horizontal-center .tab-heading {
	justify-content: center;
}

.guten-tabs.horizontal-center .tab-heading .tab-heading-item.active {
	border-bottom-color: transparent !important;
}

.guten-tabs.horizontal-right .tab-heading {
	justify-content: flex-end;
}

.guten-tabs.horizontal .tab-heading .tab-heading-item.active, .guten-tabs.horizontal-right .tab-heading .tab-heading-item.active {
	border-bottom-color: transparent !important;
}

.guten-tabs.vertical {
	display: flex;
}

.guten-tabs.vertical .tab-heading {
	flex-direction: column;
	width: 25%;
}

.guten-tabs.vertical .tab-heading .tab-heading-item {
	border-right-color: transparent !important;
}

.guten-tabs.vertical .tab-heading .tab-heading-item:after, .guten-tabs.vertical .tab-heading .tab-heading-item:before {
	border-bottom-style: none;
	border-right-style: solid;
	bottom: auto;
	height: 999em;
	right: -2px;
	width: 0;
}

.guten-tabs.vertical .tab-heading .tab-heading-item:after {
	top: 100%;
}

.guten-tabs.vertical .tab-heading .tab-heading-item:before {
	bottom: 100%;
	left: 100%;
	top: auto;
}

.guten-tabs.vertical .tab-heading .tab-heading-item.active {
	border-bottom-color: #ddd;
}

.guten-tabs.vertical .tab-body {
	border-left-style: none;
	border-top-style: solid;
	flex-grow: 1;
	width: 75%;
}

@media (max-width:781px) {
	.guten-tabs {
		display: block;
		flex-direction: column;
		overflow: visible;
	}
	
	.guten-tabs .tab-heading {
		display: none;
	}
	
	.guten-tabs .tab-heading-mobile {
		display: block;
		margin: 0;
		padding: 0;
	}
	
	.guten-tabs.vertical .tab-body {
		width: 100%;
	}
}
