/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}
progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}
h1{font-size:2em;}  hr{box-sizing:content-box;height:0}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}
sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}
button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}
button,select{text-transform:none}
[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,
button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,
													 [type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}
legend{color:inherit;display:table;max-width:100%;white-space:normal}
textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
summary{display:list-item}[hidden],template{display:none}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	max-width: 100%;
}

img.as_block {
	display: block;
}

img.full_height {
	display: block;
	height: 100%;
	width: auto;
}

img.fit_cover,
video.fit_cover {
	object-fit: cover;
}

.display_block {
	display: block;
}

.bg_img_cover,
.bg_img_full {
	background-position: center;
	background-repeat: no-repeat;
}

.bg_img_cover {
	background-size: cover;
}

.bg_img_full {
	background-size: 100%;
}

.wrapper {
	position: relative;
}

.full_wrapper {
	position: relative;
	height: 100%;
	width: 100%;
}

.absolute_center {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}

.absolute_full {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.align_base {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.align_center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align_end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.align_start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.align_stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

.auto_scroll_x {
	overflow-x: auto;
}

.auto_scroll_y {
	overflow-y: auto;
}

.bg_img {
	background-position: center;
	background-repeat: no-repeat;
}

.bg_img.contain {
	background-size: contain;
}

.bg_img.cover {
	background-size: cover;
}

.text_bold {
	font-weight: bold;
}

.text_italic {
	font-style: italic;
}

.text_capitalize {
	text-transform: capitalize;
}

.text_lowercase {
	text-transform: lowercase;
}

.text_uppercase {
	text-transform: uppercase;
}

.text_gradient {
	background-attachment: fixed;
	-webkit-background-clip: text;
	background-size: cover;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex_column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex_reverse_row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.flex_grow {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.flex_shrink {
	-ms-flex-negative: 1;
	flex-shrink: 1;
}

.flex_wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.grid {
	display: grid;
}

.grid_column_1 {
	grid-column: 1;
}

.grid_row_2 {
	grid-row: 1 / 3;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.justify_between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.justify_center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify_end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.justify_even {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}

.justify_start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.cursor_link {
	cursor: pointer;
}

.cursor_default {
	cursor: default;
}

.no_scrollbar {
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
}

.no_scrollbar::-webkit-scrollbar {
	display: none;
}

.no_select {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.no_shrink {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.no_wrap {
	white-space: nowrap;
}

.pointer {
	cursor: pointer;
}

.self_center {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.self_end {
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.self_start {
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.text_center {
	text-align: center;
}

.text_left {
	text-align: left;
}

.text_right {
	text-align: right;
}

.text_justify {
	text-align: justify;
}

.text_truncate {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text_truncate.multi_line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.text_vertical {
	text-orientation: mixed;
	writing-mode: vertical-rl;
}

.full_height {
	height: 100%;
}

.half_height {
	height: 50%;
}

.two_third_height {
	height: calc(100% / 3 * 2);
}

.one_third_height {
	height: calc(100% / 3);
}

.quarter_height {
	width: calc(100% / 4);
}

.full_width {
	width: 100%;
}

.full_width_block {
	display: block;
	width: 100%;
}

.half_width {
	width: 50%;
}

.two_third_width {
	width: calc(100% / 3 * 2);
}

.one_third_width {
	width: calc(100% / 3);
}

.quarter_width {
	width: calc(100% / 4);
}

.flow_hidden {
	overflow: hidden;
}

.flow_hidden_x {
	overflow-x: hidden;
}

.flow_hidden_y {
	overflow-y: hidden;
}

.flow_auto {
	overflow: auto;
}

.flow_auto_x {
	overflow-x: auto;
}

.flow_auto_y {
	overflow-y: auto;
}

.hidden {
	display: none;
}

.no_padding {
	padding: 0;
}

.no_margin {
	margin: 0;
}

.no_margin_top {
	margin-top: 0;
}

.no_margin_bottom {
	margin-bottom: 0;
}

.full_round_corners {
	border-radius: 9999vmax;
}

.letter_spacing_50 {
	letter-spacing: .05em;
}

.letter_spacing_100 {
	letter-spacing: .1em;
}

.letter_spacing_200 {
	letter-spacing: .2em;
}

.letter_spacing_300 {
	letter-spacing: .3em;
}
