| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 | 
							- .column {
 
- 	flex-basis: 0;
 
- 	flex-grow: 1;
 
- 	flex-shrink: 1;
 
- 	padding: 10px;
 
- 	.columns.is-mobile > &.is-narrow {
 
- 		flex: none;
 
- 	}
 
- 	.columns.is-mobile > &.is-full {
 
- 		flex: none;
 
- 		width: 100%;
 
- 	}
 
- 	.columns.is-mobile > &.is-three-quarters {
 
- 		flex: none;
 
- 		width: 75%;
 
- 	}
 
- 	.columns.is-mobile > &.is-two-thirds {
 
- 		flex: none;
 
- 		width: 66.6666%;
 
- 	}
 
- 	.columns.is-mobile > &.is-half {
 
- 		flex: none;
 
- 		width: 50%;
 
- 	}
 
- 	.columns.is-mobile > &.is-one-third {
 
- 		flex: none;
 
- 		width: 33.3333%;
 
- 	}
 
- 	.columns.is-mobile > &.is-one-quarter {
 
- 		flex: none;
 
- 		width: 25%;
 
- 	}
 
- 	.columns.is-mobile > &.is-offset-three-quarters {
 
- 		margin-left: 75%;
 
- 	}
 
- 	.columns.is-mobile > &.is-offset-two-thirds {
 
- 		margin-left: 66.6666%;
 
- 	}
 
- 	.columns.is-mobile > &.is-offset-half {
 
- 		margin-left: 50%;
 
- 	}
 
- 	.columns.is-mobile > &.is-offset-one-third {
 
- 		margin-left: 33.3333%;
 
- 	}
 
- 	.columns.is-mobile > &.is-offset-one-quarter {
 
- 		margin-left: 25%;
 
- 	}
 
- 	@for $i from 1 through 12 {
 
- 		.columns.is-mobile > &.is-#{$i} {
 
- 			flex: none;
 
- 			width: $i / 12 * 100%;
 
- 		}
 
- 		.columns.is-mobile > &.is-offset-#{$i} {
 
- 			margin-left: $i / 12 * 100%;
 
- 		}
 
- 	}
 
- 	@include mobile {
 
- 		&.is-narrow-mobile {
 
- 			flex: none;
 
- 		}
 
- 		&.is-full-mobile {
 
- 			flex: none;
 
- 			width: 100%;
 
- 		}
 
- 		&.is-three-quarters-mobile {
 
- 			flex: none;
 
- 			width: 75%;
 
- 		}
 
- 		&.is-two-thirds-mobile {
 
- 			flex: none;
 
- 			width: 66.6666%;
 
- 		}
 
- 		&.is-half-mobile {
 
- 			flex: none;
 
- 			width: 50%;
 
- 		}
 
- 		&.is-one-third-mobile {
 
- 			flex: none;
 
- 			width: 33.3333%;
 
- 		}
 
- 		&.is-one-quarter-mobile {
 
- 			flex: none;
 
- 			width: 25%;
 
- 		}
 
- 		&.is-offset-three-quarters-mobile {
 
- 			margin-left: 75%;
 
- 		}
 
- 		&.is-offset-two-thirds-mobile {
 
- 			margin-left: 66.6666%;
 
- 		}
 
- 		&.is-offset-half-mobile {
 
- 			margin-left: 50%;
 
- 		}
 
- 		&.is-offset-one-third-mobile {
 
- 			margin-left: 33.3333%;
 
- 		}
 
- 		&.is-offset-one-quarter-mobile {
 
- 			margin-left: 25%;
 
- 		}
 
- 		@for $i from 1 through 12 {
 
- 			&.is-#{$i}-mobile {
 
- 				flex: none;
 
- 				width: $i / 12 * 100%;
 
- 			}
 
- 			&.is-offset-#{$i}-mobile {
 
- 				margin-left: $i / 12 * 100%;
 
- 			}
 
- 		}
 
- 	}
 
- 	@include tablet {
 
- 		&.is-narrow,
 
- 		&.is-narrow-tablet {
 
- 			flex: none;
 
- 		}
 
- 		&.is-full,
 
- 		&.is-full-tablet {
 
- 			flex: none;
 
- 			width: 100%;
 
- 		}
 
- 		&.is-three-quarters,
 
- 		&.is-three-quarters-tablet {
 
- 			flex: none;
 
- 			width: 75%;
 
- 		}
 
- 		&.is-two-thirds,
 
- 		&.is-two-thirds-tablet {
 
- 			flex: none;
 
- 			width: 66.6666%;
 
- 		}
 
- 		&.is-half,
 
- 		&.is-half-tablet {
 
- 			flex: none;
 
- 			width: 50%;
 
- 		}
 
- 		&.is-one-third,
 
- 		&.is-one-third-tablet {
 
- 			flex: none;
 
- 			width: 33.3333%;
 
- 		}
 
- 		&.is-one-quarter,
 
- 		&.is-one-quarter-tablet {
 
- 			flex: none;
 
- 			width: 25%;
 
- 		}
 
- 		&.is-offset-three-quarters,
 
- 		&.is-offset-three-quarters-tablet {
 
- 			margin-left: 75%;
 
- 		}
 
- 		&.is-offset-two-thirds,
 
- 		&.is-offset-two-thirds-tablet {
 
- 			margin-left: 66.6666%;
 
- 		}
 
- 		&.is-offset-half,
 
- 		&.is-offset-half-tablet {
 
- 			margin-left: 50%;
 
- 		}
 
- 		&.is-offset-one-third,
 
- 		&.is-offset-one-third-tablet {
 
- 			margin-left: 33.3333%;
 
- 		}
 
- 		&.is-offset-one-quarter,
 
- 		&.is-offset-one-quarter-tablet {
 
- 			margin-left: 25%;
 
- 		}
 
- 		@for $i from 1 through 12 {
 
- 			&.is-#{$i},
 
- 			&.is-#{$i}-tablet {
 
- 				flex: none;
 
- 				width: $i / 12 * 100%;
 
- 			}
 
- 			&.is-offset-#{$i},
 
- 			&.is-offset-#{$i}-tablet {
 
- 				margin-left: $i / 12 * 100%;
 
- 			}
 
- 		}
 
- 	}
 
- 	@include desktop {
 
- 		&.is-narrow-desktop {
 
- 			flex: none;
 
- 		}
 
- 		&.is-full-desktop {
 
- 			flex: none;
 
- 			width: 100%;
 
- 		}
 
- 		&.is-three-quarters-desktop {
 
- 			flex: none;
 
- 			width: 75%;
 
- 		}
 
- 		&.is-two-thirds-desktop {
 
- 			flex: none;
 
- 			width: 66.6666%;
 
- 		}
 
- 		&.is-half-desktop {
 
- 			flex: none;
 
- 			width: 50%;
 
- 		}
 
- 		&.is-one-third-desktop {
 
- 			flex: none;
 
- 			width: 33.3333%;
 
- 		}
 
- 		&.is-one-quarter-desktop {
 
- 			flex: none;
 
- 			width: 25%;
 
- 		}
 
- 		&.is-offset-three-quarters-desktop {
 
- 			margin-left: 75%;
 
- 		}
 
- 		&.is-offset-two-thirds-desktop {
 
- 			margin-left: 66.6666%;
 
- 		}
 
- 		&.is-offset-half-desktop {
 
- 			margin-left: 50%;
 
- 		}
 
- 		&.is-offset-one-third-desktop {
 
- 			margin-left: 33.3333%;
 
- 		}
 
- 		&.is-offset-one-quarter-desktop {
 
- 			margin-left: 25%;
 
- 		}
 
- 		@for $i from 1 through 12 {
 
- 			&.is-#{$i}-desktop {
 
- 				flex: none;
 
- 				width: $i / 12 * 100%;
 
- 			}
 
- 			&.is-offset-#{$i}-desktop {
 
- 				margin-left: $i / 12 * 100%;
 
- 			}
 
- 		}
 
- 	}
 
- 	@include widescreen {
 
- 		&.is-narrow-widescreen {
 
- 			flex: none;
 
- 		}
 
- 		&.is-full-widescreen {
 
- 			flex: none;
 
- 			width: 100%;
 
- 		}
 
- 		&.is-three-quarters-widescreen {
 
- 			flex: none;
 
- 			width: 75%;
 
- 		}
 
- 		&.is-two-thirds-widescreen {
 
- 			flex: none;
 
- 			width: 66.6666%;
 
- 		}
 
- 		&.is-half-widescreen {
 
- 			flex: none;
 
- 			width: 50%;
 
- 		}
 
- 		&.is-one-third-widescreen {
 
- 			flex: none;
 
- 			width: 33.3333%;
 
- 		}
 
- 		&.is-one-quarter-widescreen {
 
- 			flex: none;
 
- 			width: 25%;
 
- 		}
 
- 		&.is-offset-three-quarters-widescreen {
 
- 			margin-left: 75%;
 
- 		}
 
- 		&.is-offset-two-thirds-widescreen {
 
- 			margin-left: 66.6666%;
 
- 		}
 
- 		&.is-offset-half-widescreen {
 
- 			margin-left: 50%;
 
- 		}
 
- 		&.is-offset-one-third-widescreen {
 
- 			margin-left: 33.3333%;
 
- 		}
 
- 		&.is-offset-one-quarter-widescreen {
 
- 			margin-left: 25%;
 
- 		}
 
- 		@for $i from 1 through 12 {
 
- 			&.is-#{$i}-widescreen {
 
- 				flex: none;
 
- 				width: $i / 12 * 100%;
 
- 			}
 
- 			&.is-offset-#{$i}-widescreen {
 
- 				margin-left: $i / 12 * 100%;
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- .columns {
 
- 	margin-left: -10px;
 
- 	margin-right: -10px;
 
- 	margin-top: -10px;
 
- 	&:last-child {
 
- 		margin-bottom: -10px;
 
- 	}
 
- 	&:not(:last-child) {
 
- 		margin-bottom: 10px;
 
- 	}
 
- 	// Modifiers
 
- 	&.is-centered {
 
- 		justify-content: center;
 
- 	}
 
- 	&.is-gapless {
 
- 		margin-left: 0;
 
- 		margin-right: 0;
 
- 		margin-top: 0;
 
- 		&:last-child {
 
- 			margin-bottom: 0;
 
- 		}
 
- 		&:not(:last-child) {
 
- 			margin-bottom: 20px;
 
- 		}
 
- 		& > .column {
 
- 			margin: 0;
 
- 			padding: 0;
 
- 		}
 
- 	}
 
- 	&.is-stretched {
 
- 		flex-grow: 1;
 
- 		align-items: stretch;
 
- 		align-self: stretch;
 
- 	}
 
- 	&.is-grid {
 
- 		// Responsiveness
 
- 		@include tablet {
 
- 			flex-wrap: wrap;
 
- 			& > .column {
 
- 				max-width: 33.3333%;
 
- 				padding: 10px;
 
- 				width: 33.3333%;
 
- 				& + .column {
 
- 					margin-left: 0;
 
- 				}
 
- 			}
 
- 		}
 
- 	}
 
- 	&.is-mobile {
 
- 		display: flex;
 
- 	}
 
- 	&.is-multiline {
 
- 		flex-wrap: wrap;
 
- 	}
 
- 	&.is-vcentered {
 
- 		align-items: center;
 
- 	}
 
- 	// Responsiveness
 
- 	@include tablet {
 
- 		&:not(.is-desktop) {
 
- 			display: flex;
 
- 		}
 
- 	}
 
- 	@include desktop {
 
- 		// Modifiers
 
- 		&.is-desktop {
 
- 			display: flex;
 
- 		}
 
- 	}
 
- }
 
- .tile {
 
- 	align-items: stretch;
 
- 	flex-basis: auto;
 
- 	flex-grow: 1;
 
- 	flex-shrink: 1;
 
- 	min-height: min-content;
 
- 	// Modifiers
 
- 	&.is-ancestor {
 
- 		margin-left: -10px;
 
- 		margin-right: -10px;
 
- 		margin-top: -10px;
 
- 		&:last-child {
 
- 			margin-bottom: -10px;
 
- 		}
 
- 		&:not(:last-child) {
 
- 			margin-bottom: 10px;
 
- 		}
 
- 	}
 
- 	&.is-child {
 
- 		margin: 0 !important;
 
- 	}
 
- 	&.is-parent {
 
- 		padding: 10px;
 
- 	}
 
- 	&.is-vertical {
 
- 		flex-direction: column;
 
- 		& > .tile.is-child:not(:last-child) {
 
- 			margin-bottom: 20px !important;
 
- 		}
 
- 	}
 
- 	// Responsiveness
 
- 	@include tablet {
 
- 		&:not(.is-child) {
 
- 			display: flex;
 
- 		}
 
- 		@for $i from 1 through 12 {
 
- 			&.is-#{$i} {
 
- 				flex: none;
 
- 				width: $i / 12 * 100%;
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- .column.is-white {
 
- 	background-color: #FFF;
 
- }
 
 
  |