@import "mixins-transform";

.gambit-row-fullheight {
	height: 100vh !important;
	max-height: 100%;
	position: relative;
	> * {
		position: relative;
	}
	&.gambit-row-height-location-center > * {
		top: 50%;
		@include transform(translateY(-50%));
	}
	&.gambit-row-height-location-top > * {
		top: 30px;
	}
	&.gambit-row-height-location-bottom > * {
		top: calc( 100% - 30px );
		@include transform(translateY(-100%));
	}
	> [class*="gambit"] {
		@include transform(none);
	}
}