div[class^='athemes-addons-custom-'] {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;	
}

.athemes-addons-custom-header[data-header-type="transparent"] {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
}

.athemes-addons-custom-header[data-header-type="sticky"] {
	position: fixed;
	width: 100%;
	top: -200px;
	z-index: 999;
	opacity: 0;
	transition: top 0.4s, opacity 0.4s;
}

.athemes-addons-custom-header[data-header-type="sticky"].is-sticky {
	top: 0;
	opacity: 1;
}

.admin-bar .athemes-addons-custom-header[data-header-type="sticky"].is-sticky {
	top: 32px;
}