/**
 * Container Block Styles
 *
 * Minimal structural styles only.
 */

.ta-container {
	position: relative;
	box-sizing: border-box;
}

.ta-container__bg-media {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ta-container__bg-media-image,
.ta-container__video-bg,
.ta-container__bg-media-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ta-container__bg-media-image,
.ta-container__video-bg {
	display: block;
	object-fit: cover;
}

.ta-container__content,
.ta-container__content-inner,
.ta-container > .container {
	position: relative;
	z-index: 1;
}

/* spacing */
.ta-container {
	padding-top: var(--ta-container-padding-top);
	padding-bottom: var(--ta-container-padding-bottom);
}

@media screen and (max-width: 1023px) {
	.ta-container {
		padding-top: var(--ta-container-padding-top-mobile);
		padding-bottom: var(--ta-container-padding-bottom-mobile);
	}
}

/* background */

.ta-container--bg-color {
	background-color: var(--ta-container-background-color);
}

.ta-container--bg-has-overlay .ta-container__bg-media-overlay {
	background-color: var(--ta-container-overlay-color);
}

/* width */
.ta-container--width-custom {
	width: var(--ta-container-width);
	max-width: 100%;
}

@media screen and (max-width: 1023px) {
	.ta-container--width-mobile-full {
		width: 100%;
	}

	.ta-container--width-mobile-custom {
		width: var(--ta-container-width-mobile);
		max-width: 100%;
	}
} 

/* height */

.ta-container--height-full-screen {
	height: 100vh;
}

.ta-container--height-custom {
	height: var(--ta-container-height);
}

@media screen and (max-width: 1023px) {
	.ta-container--height-mobile-auto {
		height: auto;
	}

	.ta-container--height-mobile-full-screen {
		height: 100vh;
	}

	.ta-container--height-mobile-custom {
		height: var(--ta-container-height-mobile);
	}
}

/* HORIZONTAL POSITION */

.ta-container--width-custom {
	display: block;
}

.ta-container--h-left.ta-container--width-custom {
	margin: 0 auto 0 0;
}

.ta-container--h-center.ta-container--width-custom {
	margin: 0 auto;
}

.ta-container--h-right.ta-container--width-custom {
	margin: 0 0 0 auto;
}

@media screen and (max-width: 1023px) {
	.ta-container--h-mobile-left.ta-container--width-custom {
		margin: 0 auto 0 0;
	}

	.ta-container--h-mobile-center.ta-container--width-custom {
		margin: 0 auto;
	}

	.ta-container--h-mobile-right.ta-container--width-custom {
		margin: 0 0 0 auto;
	}
}

/* VERTICAL ALIGNMENT */

.ta-container--v-center {
	display: flex;
    align-items: center;
}

.ta-container--v-bottom {
	display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 1023px) {
	.ta-container--v-mobile-top {
		display: flex;
		align-items: flex-start;
	}

	.ta-container--v-mobile-center {
		display: flex;
		align-items: center;
	}

	.ta-container--v-mobile-bottom {
		display: flex;
		align-items: flex-end;
	}
}