////
/// Wrap component.
///
/// @group  Components
/// @author Lee Anthony <seothemeswp@gmail.com>
/// @link   https://CustomizePro.com/
////

.wrap {

	@include margin(null auto);

	@include mq(m) {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	// Sub wrap.
	.wrap {
		width: 100%;
		max-width: 100%;
	}
}
