.customize-control.customize-control-apura-tabs {
	width: calc(100% + 24px);
	margin-inline: -12px;
	margin-block: -1px 0;
	+ .customize-control {
		border-top: 0;
	}
}



.apura-tabs {
	border-top: 1px solid var(--ap-customizer-border-color);
	&__tab {
		position: relative;
		width: 100%;
		justify-content: center;
		padding: .75em .5em;
		background: var(--ap-color-base);
		color: #aaa;
		border: 0;
		font-size: 16px;
		cursor: pointer;
		&::before {
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 3px;
			background: var(--ap-customizer-theme-color);
			content: '';
			opacity: 0;
		}

		&.is-active {
			color: var(--ap-customizer-theme-color);
			font-weight: 600;
			&::before {
				opacity: 1;
			}
		}

	}
}
