@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=IBM+Plex+Sans:200,300,600&display=swap);
.flex-row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}
.flex-row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.flex-column-reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}
.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex-nowrap {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.flex-justify-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.flex-justify-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.flex-justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-justify-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-justify-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.flex-items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.flex-items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.flex-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-items-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.flex-items-stretch {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.flex-content-start {
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.flex-content-end {
	-ms-flex-line-pack: end;
	align-content: flex-end;
}
.flex-content-center {
	-ms-flex-line-pack: center;
	align-content: center;
}
.flex-content-between {
	-ms-flex-line-pack: justify;
	align-content: space-between;
}
.flex-content-around {
	-ms-flex-line-pack: distribute;
	align-content: space-around;
}
.flex-content-stretch {
	-ms-flex-line-pack: stretch;
	align-content: stretch;
}
.flex-auto {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.flex-shrink-0 {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.flex-self-auto {
	-ms-flex-item-align: auto;
	align-self: auto;
}
.flex-self-start {
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.flex-self-end {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.flex-self-center {
	-ms-flex-item-align: center;
	align-self: center;
}
.flex-self-baseline {
	-ms-flex-item-align: baseline;
	align-self: baseline;
}
.flex-self-stretch {
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
.flex-item-equal {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
}
@media only screen and (min-width: 0) {
	.flex-xs-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-xs-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-xs-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-xs-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-xs-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-xs-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-xs-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-xs-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-xs-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-xs-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-xs-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-xs-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-xs-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-xs-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-xs-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-xs-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-xs-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-xs-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-xs-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-xs-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-xs-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-xs-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-xs-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-xs-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-xs-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-xs-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-xs-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-xs-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-xs-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-xs-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-xs-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
@media only screen and (min-width: 480px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-sm-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-sm-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-sm-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-sm-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-sm-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-sm-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-sm-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-sm-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-sm-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-sm-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-sm-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-sm-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-sm-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-sm-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-sm-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-sm-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-sm-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-sm-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-sm-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-sm-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-sm-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-sm-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-sm-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-sm-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-sm-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-sm-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-sm-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-sm-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
@media only screen and (min-width: 768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-md-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-md-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-md-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-md-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-md-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-md-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-md-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-md-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-md-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-md-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-md-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-md-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-md-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-md-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-md-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-md-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-md-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-md-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-md-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-md-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-md-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-md-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-md-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-md-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-md-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-md-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-md-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-md-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-md-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-md-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
@media only screen and (min-width: 1024px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-lg-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-lg-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-lg-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-lg-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-lg-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-lg-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-lg-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-lg-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-lg-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-lg-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-lg-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-lg-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-lg-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-lg-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-lg-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-lg-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-lg-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-lg-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-lg-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-lg-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-lg-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-lg-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-lg-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-lg-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-lg-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-lg-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-lg-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-lg-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
@media only screen and (min-width: 1280px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-xl-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-xl-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-xl-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-xl-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-xl-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-xl-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-xl-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-xl-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-xl-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-xl-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-xl-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-xl-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-xl-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-xl-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-xl-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-xl-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-xl-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-xl-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-xl-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-xl-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-xl-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-xl-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-xl-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-xl-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-xl-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-xl-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-xl-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-xl-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
@media only screen and (min-width: 1440px) {
	.flex-xl-wide-row {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
	.flex-xl-wide-row-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
	.flex-xl-wide-column {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.flex-xl-wide-column-reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	.flex-xl-wide-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex-xl-wide-nowrap {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.flex-xl-wide-justify-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.flex-xl-wide-justify-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.flex-xl-wide-justify-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.flex-xl-wide-justify-between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.flex-xl-wide-justify-around {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.flex-xl-wide-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.flex-xl-wide-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.flex-xl-wide-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.flex-xl-wide-items-baseline {
		-webkit-box-align: baseline;
		-ms-flex-align: baseline;
		align-items: baseline;
	}
	.flex-xl-wide-items-stretch {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
	.flex-xl-wide-content-start {
		-ms-flex-line-pack: start;
		align-content: flex-start;
	}
	.flex-xl-wide-content-end {
		-ms-flex-line-pack: end;
		align-content: flex-end;
	}
	.flex-xl-wide-content-center {
		-ms-flex-line-pack: center;
		align-content: center;
	}
	.flex-xl-wide-content-between {
		-ms-flex-line-pack: justify;
		align-content: space-between;
	}
	.flex-xl-wide-content-around {
		-ms-flex-line-pack: distribute;
		align-content: space-around;
	}
	.flex-xl-wide-content-stretch {
		-ms-flex-line-pack: stretch;
		align-content: stretch;
	}
	.flex-xl-wide-auto {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
	}
	.flex-xl-wide-shrink-0 {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}
	.flex-xl-wide-self-auto {
		-ms-flex-item-align: auto;
		align-self: auto;
	}
	.flex-xl-wide-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.flex-xl-wide-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
	.flex-xl-wide-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.flex-xl-wide-self-baseline {
		-ms-flex-item-align: baseline;
		align-self: baseline;
	}
	.flex-xl-wide-self-stretch {
		-ms-flex-item-align: stretch;
		align-self: stretch;
	}
	.flex-xl-wide-item-equal {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
	}
}
.col-1 {
	width: 8.33333%;
}
.col-2 {
	width: 16.66667%;
}
.col-3 {
	width: 25%;
}
.col-4 {
	width: 33.33333%;
}
.col-5 {
	width: 41.66667%;
}
.col-6 {
	width: 50%;
}
.col-7 {
	width: 58.33333%;
}
.col-8 {
	width: 66.66667%;
}
.col-9 {
	width: 75%;
}
.col-10 {
	width: 83.33333%;
}
.col-11 {
	width: 91.66667%;
}
.col-12 {
	width: 100%;
}
@media only screen and (min-width: 0) {
	.col-xs-1 {
		width: 8.33333%;
	}
	.col-xs-2 {
		width: 16.66667%;
	}
	.col-xs-3 {
		width: 25%;
	}
	.col-xs-4 {
		width: 33.33333%;
	}
	.col-xs-5 {
		width: 41.66667%;
	}
	.col-xs-6 {
		width: 50%;
	}
	.col-xs-7 {
		width: 58.33333%;
	}
	.col-xs-8 {
		width: 66.66667%;
	}
	.col-xs-9 {
		width: 75%;
	}
	.col-xs-10 {
		width: 83.33333%;
	}
	.col-xs-11 {
		width: 91.66667%;
	}
	.col-xs-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 480px) {
	.col-sm-1 {
		width: 8.33333%;
	}
	.col-sm-2 {
		width: 16.66667%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-4 {
		width: 33.33333%;
	}
	.col-sm-5 {
		width: 41.66667%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-7 {
		width: 58.33333%;
	}
	.col-sm-8 {
		width: 66.66667%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-10 {
		width: 83.33333%;
	}
	.col-sm-11 {
		width: 91.66667%;
	}
	.col-sm-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 768px) {
	.col-md-1 {
		width: 8.33333%;
	}
	.col-md-2 {
		width: 16.66667%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-4 {
		width: 33.33333%;
	}
	.col-md-5 {
		width: 41.66667%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-7 {
		width: 58.33333%;
	}
	.col-md-8 {
		width: 66.66667%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-10 {
		width: 83.33333%;
	}
	.col-md-11 {
		width: 91.66667%;
	}
	.col-md-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1024px) {
	.col-lg-1 {
		width: 8.33333%;
	}
	.col-lg-2 {
		width: 16.66667%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-4 {
		width: 33.33333%;
	}
	.col-lg-5 {
		width: 41.66667%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-7 {
		width: 58.33333%;
	}
	.col-lg-8 {
		width: 66.66667%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-10 {
		width: 83.33333%;
	}
	.col-lg-11 {
		width: 91.66667%;
	}
	.col-lg-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1280px) {
	.col-xl-1 {
		width: 8.33333%;
	}
	.col-xl-2 {
		width: 16.66667%;
	}
	.col-xl-3 {
		width: 25%;
	}
	.col-xl-4 {
		width: 33.33333%;
	}
	.col-xl-5 {
		width: 41.66667%;
	}
	.col-xl-6 {
		width: 50%;
	}
	.col-xl-7 {
		width: 58.33333%;
	}
	.col-xl-8 {
		width: 66.66667%;
	}
	.col-xl-9 {
		width: 75%;
	}
	.col-xl-10 {
		width: 83.33333%;
	}
	.col-xl-11 {
		width: 91.66667%;
	}
	.col-xl-12 {
		width: 100%;
	}
}
@media only screen and (min-width: 1440px) {
	.col-xl-wide-1 {
		width: 8.33333%;
	}
	.col-xl-wide-2 {
		width: 16.66667%;
	}
	.col-xl-wide-3 {
		width: 25%;
	}
	.col-xl-wide-4 {
		width: 33.33333%;
	}
	.col-xl-wide-5 {
		width: 41.66667%;
	}
	.col-xl-wide-6 {
		width: 50%;
	}
	.col-xl-wide-7 {
		width: 58.33333%;
	}
	.col-xl-wide-8 {
		width: 66.66667%;
	}
	.col-xl-wide-9 {
		width: 75%;
	}
	.col-xl-wide-10 {
		width: 83.33333%;
	}
	.col-xl-wide-11 {
		width: 91.66667%;
	}
	.col-xl-wide-12 {
		width: 100%;
	}
}
.gutter {
	margin-right: -4px;
	margin-left: -4px;
}
.gutter > [class*='col-'] {
	padding-right: 4px !important;
	padding-left: 4px !important;
}
.gutter-1 {
	margin-right: -8px;
	margin-left: -8px;
}
.gutter-1 > [class*='col-'] {
	padding-right: 8px !important;
	padding-left: 8px !important;
}
.gutter-2 {
	margin-right: -16px;
	margin-left: -16px;
}
.gutter-2 > [class*='col-'] {
	padding-right: 16px !important;
	padding-left: 16px !important;
}
@media only screen and (min-width: 0) {
	.gutter-xs {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-xs > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-xs-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-xs-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-xs-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-xs-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
@media only screen and (min-width: 480px) {
	.gutter-sm {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-sm > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-sm-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-sm-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-sm-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-sm-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
@media only screen and (min-width: 768px) {
	.gutter-md {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-md > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-md-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-md-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-md-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-md-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.gutter-lg {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-lg > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-lg-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-lg-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-lg-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-lg-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.gutter-xl {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-xl > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-xl-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-xl-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-xl-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-xl-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.gutter-xl-wide {
		margin-right: -4px;
		margin-left: -4px;
	}
	.gutter-xl-wide > [class*='col-'] {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.gutter-xl-wide-1 {
		margin-right: -8px;
		margin-left: -8px;
	}
	.gutter-xl-wide-1 > [class*='col-'] {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.gutter-xl-wide-2 {
		margin-right: -16px;
		margin-left: -16px;
	}
	.gutter-xl-wide-2 > [class*='col-'] {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
}
html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
	display: block;
}
summary {
	display: list-item;
}
audio,
canvas,
progress,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
progress {
	vertical-align: baseline;
}
[hidden],
template {
	display: none;
}
a {
	background-color: transparent;
}
a:active,
a:hover {
	outline-width: 0;
}
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}
b,
strong {
	font-weight: inherit;
}
b,
strong {
	font-weight: bolder;
}
dfn {
	font-style: italic;
}
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
mark {
	background-color: #ff0;
	color: #000;
}
small {
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
img {
	border-style: none;
}
svg:not(:root) {
	overflow: hidden;
}
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}
figure {
	margin: 1em 40px;
}
hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
button,
input,
select,
textarea {
	font: inherit;
	margin: 0;
}
optgroup {
	font-weight: 700;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
[type='reset'],
[type='submit'],
button,
html [type='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: 1px dotted ButtonText;
}
fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}
legend {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}
textarea {
	overflow: auto;
}
[type='checkbox'],
[type='radio'] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
}
[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-cancel-button,
[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-input-placeholder {
	color: inherit;
	opacity: 0.54;
}
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizelegibility;
	font-family: 'IBM Plex Sans', Arial, sans-serif;
	line-height: 1.4;
	color: #505052;
	font-weight: 300;
}
p {
	margin: 0;
}
small {
	font-size: 12px;
}
blockquote {
	margin: 0;
}
b,
strong {
	font-weight: 600;
}
a {
	color: #e94e19;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:focus {
	outline: 0;
}
li,
ul {
	margin: 0;
	padding: 0;
}
::-moz-selection {
	background: #dcdee0;
}
::selection {
	background: #dcdee0;
}
img::-moz-selection {
	background: 0 0;
}
img::selection {
	background: 0 0;
}
body {
	-webkit-tap-highlight-color: transparent !important;
}
hr {
	height: 0;
	margin: 16px 0;
	overflow: hidden;
	background: 0 0;
	border: 0;
	border-bottom: 1px #dcdee0 solid;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
td,
th {
	padding: 0;
}
.accordion h2 {
	border-bottom: 1px #dcdee0 solid;
	padding-bottom: 16px;
}
.accordion-wrap {
	border-bottom: 1px solid #dcdee0;
	position: relative;
}
.accordion-wrap:hover {
	border-color: #c1c5c8;
}
.accordion-wrap a {
	border-color: 1px #dcdee0 solid;
	display: block;
	padding: 24px 0;
	position: relative;
	padding-right: 24px;
	color: #262628;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.accordion-wrap a:after {
	content: '';
	position: absolute;
	top: 45%;
	right: 0;
	width: 14px;
	height: 8px;
	background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' width='14' height='8' fill='%23687281' xml:space='preserve'%3E%3Cpath d='M13 1V0h-1v1h-1v1h-1v1H9v1H8v1H6V4H5V3H4V2H3V1H2V0H1v1H0v1h1v1h1v1h1v1h1v1h1v1h1v1h2V7h1V6h1V5h1V4h1V3h1V2h1V1z'/%3E%3C/svg%3E")
		no-repeat right center;
	-webkit-transition: all 150ms ease;
	-o-transition: all 150ms ease;
	transition: all 150ms ease;
}
.accordion-wrap a:hover {
	color: #e94e19;
	text-decoration: none;
}
.accordion-wrap a:active {
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.accordion-wrap a.active:after {
	background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' width='14' height='8' fill='%231d2731' xml:space='preserve'%3E%3Cpath d='M13 1V0h-1v1h-1v1h-1v1H9v1H8v1H6V4H5V3H4V2H3V1H2V0H1v1H0v1h1v1h1v1h1v1h1v1h1v1h1v1h2V7h1V6h1V5h1V4h1V3h1V2h1V1z'/%3E%3C/svg%3E")
		no-repeat right center;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.accordion-hide-content {
	display: none;
	padding: 8px 0 24px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.border {
	border: 1px #dcdee0 solid !important;
}
.border-top {
	border-top: 1px #dcdee0 solid !important;
}
.border-right {
	border-right: 1px #dcdee0 solid !important;
}
.border-bottom {
	border-bottom: 1px #dcdee0 solid !important;
}
.border-left {
	border-left: 1px #dcdee0 solid !important;
}
.border-y {
	border-top: 1px #dcdee0 solid !important;
	border-bottom: 1px #dcdee0 solid !important;
}
.border-dashed {
	border-style: dashed !important;
}
.border-gray-light {
	border-color: #f5f5f5 !important;
}
.border-gray-dark {
	border-color: #505052 !important;
}
.border-black {
	border-color: #262628 !important;
}
.border-fade {
	border-color: rgba(255, 255, 255, 0.2) !important;
}
.border-size-1 {
	border-width: 2px !important;
}
.border-size-2 {
	border-width: 4px !important;
}
.border-0 {
	border: 0 !important;
}
.border-top-0 {
	border-top: 0 !important;
}
.border-right-0 {
	border-right: 0 !important;
}
.border-bottom-0 {
	border-bottom: 0 !important;
}
.border-left-0 {
	border-left: 0 !important;
}
.rounded-1 {
	border-radius: 4px !important;
}
.rounded-2 {
	border-radius: 8px !important;
}
.circle {
	border-radius: 50% !important;
}
.border-xl-right {
	border-bottom: 1px #dcdee0 solid;
}
@media only screen and (min-width: 768px) {
	.border-xl-right {
		border-bottom: none;
		border-right: 1px #dcdee0 solid;
	}
}
.breadcrumb-item {
	display: inline-block;
	white-space: nowrap;
	list-style: none;
}
.breadcrumb-item:after {
	padding-right: 8px;
	padding-left: 8px;
	color: #bec0c2;
	content: '/';
}
.breadcrumb-item:first-child {
	margin-left: 0;
}
.breadcrumb-item.color-white a {
	color: #fff;
}
.breadcrumb-item.color-white:after {
	color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item-selected::after {
	content: none;
}
.breadcrumb-item-selected.color-white {
	color: rgba(255, 255, 255, 0.5);
}
.btn,
.wpcf7-submit {
	display: inline-block;
	padding: 0.375em 1.5625em;
	height: auto;
	text-transform: uppercase;
	font-size: 16 !important;
	font-size: 16px;
	white-space: nowrap;
	text-align: center;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 600;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn:after,
.wpcf7-submit:after {
	content: '';
	margin-left: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.614' height='9.228'%3E%3Cpath d='M1.414 1.414l3.2 3.2-3.2 3.2' fill='none' stroke='rgb(255, 255, 255)' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
	width: 5.614px;
	height: 9.228px;
	margin-bottom: 1px;
}
.btn:hover,
.wpcf7-submit:hover {
	text-decoration: none;
	background-repeat: repeat-x;
}
.btn:focus,
.wpcf7-submit:focus {
	outline: 0;
}
.btn.disabled,
.btn:disabled,
.disabled.wpcf7-submit,
.wpcf7-submit:disabled {
	cursor: default;
}
.btn.selected,
.btn:active,
.selected.wpcf7-submit,
.wpcf7-submit:active {
	background-image: none;
}
.btn svg,
.wpcf7-submit svg {
	fill: currentColor;
	stroke: currentColor;
}
.btn,
.wpcf7-submit {
	color: #fff;
	background-color: #e94e19;
	-webkit-box-shadow: inset 0 0 0 1px #d64c1d;
	box-shadow: inset 0 0 0 1px #d64c1d;
}
.btn.hover,
.btn:hover,
.hover.wpcf7-submit,
.wpcf7-submit:hover {
	background-color: #d64c1d;
	background-image: none;
}
.btn.selected,
.btn:active,
.selected.wpcf7-submit,
.wpcf7-submit:active,
[open] > .btn,
[open] > .wpcf7-submit {
	background-color: #18540a;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	color: rgba(255, 255, 255, 0.9);
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn.focus,
.btn:focus,
.focus.wpcf7-submit,
.wpcf7-submit:focus {
	-webkit-box-shadow: 0 0 0 3px rgba(35, 120, 15, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
	box-shadow: 0 0 0 3px rgba(35, 120, 15, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
}
.btn.disabled,
.btn:disabled,
.disabled.wpcf7-submit,
.wpcf7-submit:disabled {
	color: #bec0c2;
	background-color: #f5f5f5;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn-solid-white {
	color: #1e1e23;
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #f5f5f5;
	box-shadow: inset 0 0 0 1px #f5f5f5;
}
.btn-solid-white.hover,
.btn-solid-white:hover {
	background-color: #f5f5f5;
	background-image: none;
}
.btn-solid-white.selected,
.btn-solid-white:active,
[open] > .btn-solid-white {
	background-color: #ebebeb;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	color: rgba(30, 30, 35, 0.9);
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn-solid-white.focus,
.btn-solid-white:focus {
	-webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
}
.btn-solid-white.disabled,
.btn-solid-white:disabled {
	color: #bec0c2;
	background-color: #f5f5f5;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn-solid-white:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.614' height='9.228'%3E%3Cpath d='M1.414 1.414l3.2 3.2-3.2 3.2' fill='none' stroke='rgb(38, 38, 40)' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}
.btn-outline-green {
	color: #e94e19;
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 0 2px #e94e19;
	box-shadow: inset 0 0 0 2px #e94e19;
}
.btn-outline-green.hover,
.btn-outline-green:hover {
	color: #fff;
	background-color: #e94e19;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn-outline-green.selected,
.btn-outline-green:active,
[open] > .btn-outline-green {
	-webkit-box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	background-color: #1c610c;
	background-image: none;
	color: rgba(255, 255, 255, 0.9);
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn-outline-green.focus,
.btn-outline-green:focus {
	-webkit-box-shadow: 0 0 0 3px rgba(35, 120, 15, 0.35), inset 0 0 0 1px rgba(35, 120, 15, 0.6);
	box-shadow: 0 0 0 3px rgba(35, 120, 15, 0.35), inset 0 0 0 1px rgba(35, 120, 15, 0.6);
}
.btn-outline-green.disabled,
.btn-outline-green:disabled {
	color: #bec0c2;
	background-color: #f5f5f5;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn-outline-green:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.614' height='9.228'%3E%3Cpath d='M1.414 1.414l3.2 3.2-3.2 3.2' fill='none' stroke='rgb(38, 38, 40)' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}
.btn-outline-green:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5.614' height='9.228'%3E%3Cpath d='M1.414 1.414l3.2 3.2-3.2 3.2' fill='none' stroke='rgb(255, 255, 255)' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
}
.btn-solid-red,
.wpcf7-submit {
	color: #fff;
	background-color: #be0a32;
	-webkit-box-shadow: inset 0 0 0 1px #ab092d;
	box-shadow: inset 0 0 0 1px #ab092d;
}
.btn-solid-red.hover,
.btn-solid-red:hover,
.hover.wpcf7-submit,
.wpcf7-submit:hover {
	background-color: #ab092d;
	background-image: none;
}
.btn-solid-red.selected,
.btn-solid-red:active,
.selected.wpcf7-submit,
.wpcf7-submit:active,
[open] > .btn-solid-red,
[open] > .wpcf7-submit {
	background-color: #970828;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	box-shadow: inset 0 0 0 1px rgba(30, 30, 35, 0.2);
	color: rgba(255, 255, 255, 0.9);
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn-solid-red.focus,
.btn-solid-red:focus,
.focus.wpcf7-submit,
.wpcf7-submit:focus {
	-webkit-box-shadow: 0 0 0 3px rgba(190, 10, 50, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
	box-shadow: 0 0 0 3px rgba(190, 10, 50, 0.35), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
}
.btn-solid-red.disabled,
.btn-solid-red:disabled,
.disabled.wpcf7-submit,
.wpcf7-submit:disabled {
	color: #bec0c2;
	background-color: #f5f5f5;
	background-image: none;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn-transparent {
	color: #fff;
	background-color: transparent;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.btn-transparent.hover,
.btn-transparent:hover {
	color: #1e1e23;
	background-color: #fff;
	background-image: none;
}
.btn-transparent.selected,
.btn-transparent:active,
[open] > .btn-transparent {
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #1e1e23;
	background-color: rgba(255, 255, 255, 0.8);
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn-transparent.focus,
.btn-transparent:focus {
	-webkit-box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(30, 30, 35, 0.1);
}
.btn-transparent.disabled,
.btn-transparent:disabled {
	color: rgba(30, 30, 35, 0.6);
	background-color: rgba(255, 255, 255, 0.3);
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: not-allowed;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}
.btn-sm {
	padding: 0.5em 0.875em;
	max-height: 28px;
	font-size: 14px;
	line-height: 1;
}
.btn-large,
.wpcf7-submit {
	padding: 1em 1.25em;
}
.btn-link {
	display: inline-block;
	padding: 0;
	font-size: inherit;
	color: #e94e19;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	outline: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-decoration: none;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #e94e19 !important;
}
.btn-link.hover,
.btn-link:hover {
	text-decoration: underline;
}
.btn-link.selected,
.btn-link:active,
[open] > .btn-link {
	-webkit-transform: translateY(1px);
	-ms-transform: translateY(1px);
	transform: translateY(1px);
}
.btn-link.focus,
.btn-link:focus {
	background-color: rgba(220, 222, 224, 0.2);
	border-radius: 4px;
}
.btn-link.disabled,
.btn-link:disabled {
	color: #bec0c2;
	cursor: default;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	background-color: transparent;
}
.btn-link svg {
	fill: currentColor;
}
.link-invert {
	color: #262628;
}
.link-invert:hover {
	color: #e94e19 !important;
}
.link-gray {
	color: #767678 !important;
}
.link-gray:hover {
	color: #e94e19 !important;
}
.link-muted {
	color: inherit;
}
.link-muted:hover {
	color: #e94e19 !important;
}
.link-none {
	color: inherit;
}
.link-none:hover {
	color: inherit;
	text-decoration: none;
}
.btn-link-red {
	color: #be0a32 !important;
}
.btn-link-white {
	color: #fff !important;
}
.btn-link-white:focus {
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 4px;
}
.brand-orange {
	background-color: #e94e19 !important;
}
.white {
	background-color: #fff !important;
}
.black {
	background-color: #1e1e23 !important;
}
.gray-000 {
	background-color: #f5f5f5 !important;
}
.gray-100 {
	background-color: #dcdee0 !important;
}
.gray-200 {
	background-color: #bec0c2 !important;
}
.gray-300 {
	background-color: #969698 !important;
}
.gray-400 {
	background-color: #767678 !important;
}
.gray-500 {
	background-color: #505052 !important;
}
.gray-600 {
	background-color: #262628 !important;
}
.s-blue {
	background-color: #0f91d7 !important;
}
.s-green {
	background-color: #e94e19 !important;
}
.s-yellow {
	background-color: #b4a014 !important;
}
.s-yellow-fade {
	background-color: rgba(180, 160, 20, 0.1) !important;
}
.s-red {
	background-color: #be0a32 !important;
}
.text-white {
	color: #fff !important;
}
.text-black {
	color: #262628 !important;
}
.text-disable {
	color: #bec0c2 !important;
}
.text-light {
	color: #969698 !important;
}
.text-gray {
	color: #767678 !important;
}
.text-dark {
	color: #505052 !important;
}
.text-blue {
	color: #0f91d7 !important;
}
.text-green {
	color: #e94e19 !important;
}
.text-yellow {
	color: #b4a014 !important;
}
.text-red {
	color: #be0a32 !important;
}
.text-orange {
	color: #e94e19 !important;
}
.container-md {
	width: 100%;
	max-width: 768px;
	margin-right: auto;
	margin-left: auto;
}
.container-lg {
	width: 100%;
	max-width: 1024px;
	margin-right: auto;
	margin-left: auto;
}
.container-xl {
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
}
.container-xl-wide {
	width: 100%;
	max-width: 1440px;
	margin-right: auto;
	margin-left: auto;
}
.form,
.form-select,
.mapplic-levels .mapplic-levels-select,
.wpcf7-form-control-wrap:not(.checkbox-251) input {
	padding: 0.375em 0.75em;
	height: auto;
	color: #505052;
	background-color: #fff;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-box-shadow: inset 0 0 0 1px #ced1d4;
	box-shadow: inset 0 0 0 1px #ced1d4;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	caret-color: #e94e19;
	border-radius: 0;
}
.form-select.hover,
.form-select:hover,
.form.hover,
.form:hover,
.mapplic-levels .hover.mapplic-levels-select,
.mapplic-levels .mapplic-levels-select:hover,
.wpcf7-form-control-wrap:not(.checkbox-251) input.hover,
.wpcf7-form-control-wrap:not(.checkbox-251) input:hover {
	-webkit-box-shadow: inset 0 0 0 1px #bec0c2, inset 0 3px 0 0 #f5f5f5;
	box-shadow: inset 0 0 0 1px #bec0c2, inset 0 3px 0 0 #f5f5f5;
}
.form-select.focus,
.form-select:focus,
.form.focus,
.form:focus,
.mapplic-levels .focus.mapplic-levels-select,
.mapplic-levels .mapplic-levels-select:focus,
.wpcf7-form-control-wrap:not(.checkbox-251) input.focus,
.wpcf7-form-control-wrap:not(.checkbox-251) input:focus {
	outline: 0;
	background-color: #fff !important;
	-webkit-box-shadow: 0 0 0 3px #b8e3fa, inset 0 0 0 1px rgba(15, 145, 215, 0.6);
	box-shadow: 0 0 0 3px #b8e3fa, inset 0 0 0 1px rgba(15, 145, 215, 0.6);
}
.form-select.disabled,
.form-select:disabled,
.form.disabled,
.form:disabled,
.mapplic-levels .disabled.mapplic-levels-select,
.mapplic-levels .mapplic-levels-select:disabled,
.wpcf7-form-control-wrap:not(.checkbox-251) input.disabled,
.wpcf7-form-control-wrap:not(.checkbox-251) input:disabled {
	color: #bec0c2;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	cursor: not-allowed;
	opacity: 1;
	background: #f5f5f5
		url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' fill='%23d0d3d6' width='6' height='8' xml:space='preserve'%3e%3cpath d='M5 3V0H1v3H0v5h6V3H5zM2 1h2v2H2V1z' /%3e%3c/svg%3e")
		no-repeat right 0.75em top 0.625em;
}
@media only screen and (min-width: 768px) {
	.form,
	.form-select,
	.mapplic-levels .mapplic-levels-select,
	.wpcf7-form-control-wrap:not(.checkbox-251) input {
		font-size: 16;
	}
}
.form-select.mutted,
.form.mutted,
.mapplic-levels .mutted.mapplic-levels-select,
.wpcf7-form-control-wrap:not(.checkbox-251) input.mutted {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	background-position: right 0 center;
}
.form-select.border-circle,
.form.border-circle,
.mapplic-levels .border-circle.mapplic-levels-select,
.wpcf7-form-control-wrap:not(.checkbox-251) input.border-circle {
	border-radius: 1.25em !important;
}
.form-select {
	display: inline-block;
	padding-right: 48px !important;
	background: #fff
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath data-name='Path 382' d='M12 5L7.5 9.5 3 5' stroke='%23505052' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M14.5.5v14H.5V.5z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat;
	background-size: 15px 15px;
	background-position: right 0.625em center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.form-select::-ms-expand {
	opacity: 0;
}
.form-select[multiple] {
	height: auto;
}
.input-sm {
	height: 1.75em;
	min-height: 28px;
	padding: 0.375em 0.75em;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1;
}
.input-sm::-webkit-input-placeholder {
	padding-top: 2px;
}
.input-sm::-moz-placeholder {
	padding-top: 2px;
}
.input-sm:-ms-input-placeholder {
	padding-top: 2px;
}
.input-sm::-ms-input-placeholder {
	padding-top: 2px;
}
.input-sm::placeholder {
	padding-top: 2px;
}
.input-large {
	height: 3em;
	min-height: 48px;
	padding: 1em 1em;
	line-height: 1;
}
.select-sm {
	height: 1.75em;
	min-height: 28px;
	padding: 0.375em 3.125em 0.375em 0.75em;
	font-size: 14px;
	line-height: 1;
}
.select-sm[multiple] {
	height: auto;
	min-height: 0;
}
.select-large {
	height: 3em;
	min-height: 48px;
	padding: 1em 3.125em 1em 1em;
	line-height: 1;
}
.select-large[multiple] {
	height: auto;
	min-height: 0;
}
.form-group label {
	font-size: 12px;
	font-weight: 500;
}
.input-lock-icon {
	background: #fff
		url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' fill='%23d0d3d6' width='6' height='8' xml:space='preserve'%3e%3cpath d='M5 3V0H1v3H0v5h6V3H5zM2 1h2v2H2V1z' /%3e%3c/svg%3e")
		no-repeat right 0.75em top 0.625em;
}
.input-date-icon {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath data-name='Path 388' d='M4.554 4h10.892A1.554 1.554 0 0117 5.553v10.889A1.555 1.555 0 0115.446 18H4.554A1.555 1.555 0 013 16.442V5.553A1.554 1.554 0 014.554 4z' stroke='%23505052' stroke-width='2'/%3E%3Cpath data-name='Line 76' stroke='%23505052' stroke-width='2' d='M3 9h14'/%3E%3Cpath data-name='Line 77' stroke='%23505052' stroke-width='2' d='M7 2v4'/%3E%3Cpath data-name='Line 78' stroke='%23505052' stroke-width='2' d='M13 2v4'/%3E%3Cpath data-name='Line 79' stroke='%23505052' stroke-width='2' d='M7 15h0'/%3E%3Cpath data-name='Line 80' stroke='%23505052' stroke-width='2' d='M10 15h0'/%3E%3Cpath data-name='Line 81' stroke='%23505052' stroke-width='2' d='M13 15h0'/%3E%3Cpath data-name='Line 82' stroke='%23505052' stroke-width='2' d='M7 12h0'/%3E%3Cpath data-name='Line 83' stroke='%23505052' stroke-width='2' d='M10 12h0'/%3E%3Cpath data-name='Line 84' stroke='%23505052' stroke-width='2' d='M13 12h0'/%3E%3Cpath data-name='Rectangle 72' d='M0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat right 0.75em center;
}
.input-search-icon {
	background: #fff
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='none' d='M0 0h20v20H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath data-name='Line 111' stroke='%2346464b' stroke-width='2' d='M12.236 12.236L18 18'/%3E%3Ccircle data-name='Ellipse 45' cx='6' cy='6' r='6' transform='translate(2 2)' stroke-width='2' stroke='%23505052'/%3E%3Cpath data-name='Rectangle 106' d='M0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat left 0.75em center;
	padding-left: 40px;
}
.input-search-icon:focus {
	background: 0 0;
	background-position: left center;
	padding-left: 0.75em;
}
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}
textarea {
	width: 100%;
	height: 200px;
	min-height: 200px;
}
::-webkit-input-placeholder {
	color: #bec0c2;
	opacity: 1;
}
::-moz-placeholder {
	color: #bec0c2;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #bec0c2;
	opacity: 1;
}
::-ms-input-placeholder {
	color: #bec0c2;
	opacity: 1;
}
::placeholder {
	color: #bec0c2;
	opacity: 1;
}
input[type='password'] {
	font-family: Arial;
	letter-spacing: 2px;
}
input[type='password']::-webkit-input-placeholder {
	font-family: 'IBM Plex Sans', Arial, sans-serif;
	letter-spacing: 0;
}
.form-label-scale {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
}
.form-label-scale .form,
.form-label-scale .form-select,
.form-label-scale .mapplic-levels .mapplic-levels-select,
.form-label-scale .wpcf7-form-control-wrap:not(.checkbox-251) input,
.mapplic-levels .form-label-scale .mapplic-levels-select,
.wpcf7-form-control-wrap:not(.checkbox-251) .form-label-scale input {
	padding: 0.5em 0;
	-webkit-box-shadow: inset 0 -1px 0 0 #dcdee0;
	box-shadow: inset 0 -1px 0 0 #dcdee0;
	border-radius: 0;
}
.form-label-scale .form-select:hover,
.form-label-scale .form:hover,
.form-label-scale .mapplic-levels .mapplic-levels-select:hover,
.form-label-scale .wpcf7-form-control-wrap:not(.checkbox-251) input:hover,
.mapplic-levels .form-label-scale .mapplic-levels-select:hover,
.wpcf7-form-control-wrap:not(.checkbox-251) .form-label-scale input:hover {
	-webkit-box-shadow: inset 0 -2px 0 0 #bec0c2;
	box-shadow: inset 0 -2px 0 0 #bec0c2;
}
.form-label-scale .form-select:focus,
.form-label-scale .form:focus,
.form-label-scale .mapplic-levels .mapplic-levels-select:focus,
.form-label-scale .wpcf7-form-control-wrap:not(.checkbox-251) input:focus,
.mapplic-levels .form-label-scale .mapplic-levels-select:focus,
.wpcf7-form-control-wrap:not(.checkbox-251) .form-label-scale input:focus {
	outline: 0;
	-webkit-box-shadow: inset 0 -2px 0 0 #0f91d7;
	box-shadow: inset 0 -2px 0 0 #0f91d7;
}
.form-label-scale ::-webkit-input-placeholder {
	color: #bec0c2;
	opacity: 0;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.form-label-scale ::-moz-placeholder {
	color: #bec0c2;
	opacity: 0;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.form-label-scale :-ms-input-placeholder {
	color: #bec0c2;
	opacity: 0;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.form-label-scale ::-ms-input-placeholder {
	color: #bec0c2;
	opacity: 0;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.form-label-scale ::placeholder {
	color: #bec0c2;
	opacity: 0;
	-webkit-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
}
.form-label-scale input:focus::-webkit-input-placeholder {
	opacity: 1;
}
.form-label-scale label {
	display: inline-block;
	font-weight: 300;
	font-size: 12px;
}
.form-label-scale input,
.form-label-scale label {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}
.form-label-scale input:placeholder-shown + label {
	cursor: text;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: translate(0, 1.8rem) scale(1.2);
	-ms-transform: translate(0, 1.8rem) scale(1.2);
	transform: translate(0, 1.8rem) scale(1.2);
}
@media only screen and (min-width: 768px) {
	.form-label-scale input:placeholder-shown + label {
		-webkit-transform: translate(0, 1.5rem) scale(1.2);
		-ms-transform: translate(0, 1.5rem) scale(1.2);
		transform: translate(0, 1.5rem) scale(1.2);
	}
}
.form-label-scale input:focus + label,
.form-label-scale input:not(:placeholder-shown) + label {
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
	cursor: pointer;
	font-weight: 500;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}
.custom-control {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 1.5rem;
	padding-left: 1.5rem;
	margin: 8px 0;
}
.custom-control--box {
	-webkit-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	padding: 0 16px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 8px;
}
.custom-control--box:hover {
	-webkit-box-shadow: 0 0 0 1px #ced1d4;
	box-shadow: 0 0 0 1px #ced1d4;
}
.custom-control--box.is-active {
	-webkit-box-shadow: 0 0 0 2px #e94e19;
	box-shadow: 0 0 0 2px #e94e19;
	color: #262628;
}
.custom-control--box .custom-control-label {
	cursor: pointer !important;
	padding: 16px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.custom-control--box .custom-control-input:hover ~ .custom-control-label::before {
	background-color: #f5f5f5;
}
.custom-control-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin: 15px 15px 0 0;
}
.custom-control-inline:last-child {
	margin-right: 0;
}
.custom-control-input {
	position: absolute;
	opacity: 0;
}
.custom-control-input:hover ~ .custom-control-label::before {
	background-color: rgba(80, 80, 82, 0.1);
}
.custom-control-input:focus ~ .custom-control-label::before {
	-webkit-box-shadow: inset 0 0 0 1px rgba(35, 120, 15, 0.6), 0 0 0 3px #dcdee0;
	box-shadow: inset 0 0 0 1px rgba(35, 120, 15, 0.6), 0 0 0 3px #dcdee0;
}
.custom-control-input:active ~ .custom-control-label::before {
	background-color: #e94e19 !important;
}
.custom-control-input:disabled ~ .custom-control-label {
	color: #bec0c2;
}
.custom-control-input:disabled ~ .custom-control-label::before {
	background-color: #f5f5f5;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
}
.custom-control-label {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.custom-control-label:before {
	position: absolute;
	top: calc(50% - 8px);
	left: -1.5rem;
	width: 16px;
	height: 16px;
	content: '';
	-webkit-box-shadow: inset 0 0 0 1px #ced1d4;
	box-shadow: inset 0 0 0 1px #ced1d4;
	mix-blend-mode: multiply;
	background: #fff;
}
.custom-control-label:after {
	position: absolute;
	top: calc(50% - 8px);
	left: -1.5rem;
	width: 16px;
	height: 16px;
	content: '';
}
.custom-control-label.align-top {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}
.custom-control-label.align-top:before {
	top: 2px;
}
.custom-control-label.align-top:after {
	top: 2px;
}
.custom-checkbox .custom-control-label::before {
	border-radius: 4px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
	background-color: #e94e19;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17'%3E%3Cg data-name='Group 11186' fill='none' stroke-linejoin='round'%3E%3Cpath data-name='Path 390' d='M12 6l-4.508 5L5 8.461' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cpath data-name='Rectangle 73' stroke='rgba(0,0,0,0)' stroke-linecap='square' d='M.5.5h16v16H.5z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat;
	background-size: 16px 16px;
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
	background-color: rgba(35, 120, 15, 0.6);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.custom-radio .custom-control-label::before {
	border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
	background-color: #e94e19;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
	background: url("data:image/svg+xml;charset=UTF-8,%3csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' fill='%23fff' width='16' height='16' xml:space='preserve'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3cpath fill='none' d='M0 0h16v16H0z'/%3e%3c/svg%3e")
		no-repeat;
	background-size: 16px 16px;
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
	background-color: rgba(35, 120, 15, 0.6);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.d-block {
	display: block !important;
}
.d-inline {
	display: inline !important;
}
.d-inline-block {
	display: inline-block !important;
}
.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
}
.d-none {
	display: none !important;
}
@media only screen and (min-width: 0) {
	.d-xs-block {
		display: block !important;
	}
	.d-xs-inline {
		display: inline !important;
	}
	.d-xs-inline-block {
		display: inline-block !important;
	}
	.d-xs-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-xs-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-xs-none {
		display: none !important;
	}
}
@media only screen and (min-width: 480px) {
	.d-sm-block {
		display: block !important;
	}
	.d-sm-inline {
		display: inline !important;
	}
	.d-sm-inline-block {
		display: inline-block !important;
	}
	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-sm-none {
		display: none !important;
	}
}
@media only screen and (min-width: 768px) {
	.d-md-block {
		display: block !important;
	}
	.d-md-inline {
		display: inline !important;
	}
	.d-md-inline-block {
		display: inline-block !important;
	}
	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-md-none {
		display: none !important;
	}
}
@media only screen and (min-width: 1024px) {
	.d-lg-block {
		display: block !important;
	}
	.d-lg-inline {
		display: inline !important;
	}
	.d-lg-inline-block {
		display: inline-block !important;
	}
	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-lg-none {
		display: none !important;
	}
}
@media only screen and (min-width: 1280px) {
	.d-xl-block {
		display: block !important;
	}
	.d-xl-inline {
		display: inline !important;
	}
	.d-xl-inline-block {
		display: inline-block !important;
	}
	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-xl-none {
		display: none !important;
	}
}
@media only screen and (min-width: 1440px) {
	.d-xl-wide-block {
		display: block !important;
	}
	.d-xl-wide-inline {
		display: inline !important;
	}
	.d-xl-wide-inline-block {
		display: inline-block !important;
	}
	.d-xl-wide-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-xl-wide-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
	.d-xl-wide-none {
		display: none !important;
	}
}
.hamburger {
	padding: 4px 4px;
	display: inline-block;
	cursor: pointer;
	-webkit-transition-property: opacity, -webkit-filter;
	transition-property: opacity, -webkit-filter;
	-o-transition-property: opacity, filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: 0.1s;
	-o-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:focus {
	outline: 0;
}
.hamburger:hover {
	-webkit-filter: opacity(70%);
	filter: opacity(70%);
}
.hamburger-box {
	width: 22px;
	height: 14px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
}
.hamburger-inner,
.hamburger-inner::after,
.hamburger-inner::before {
	width: 22px;
	height: 2px;
	background-color: #1e1e23;
	border-radius: 0;
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.1s;
	-o-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
.hamburger-inner::after,
.hamburger-inner::before {
	content: '';
	display: block;
}
.hamburger-inner::before {
	top: -8px;
}
.hamburger-inner::after {
	bottom: -8px;
}
.hamburger--3dx .hamburger-box {
	-webkit-perspective: 44px;
	perspective: 44px;
}
.hamburger--3dx .hamburger-inner {
	-webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
		-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
		-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
		background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
		-webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::after,
.hamburger--3dx .hamburger-inner::before {
	-webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
		-webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
	background-color: transparent;
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
	-webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
	transform: translate3d(0, 8px, 0) rotate(45deg);
	background-color: #1e1e23;
}
.hamburger--3dx.is-active .hamburger-inner::after {
	-webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
	transform: translate3d(0, -8px, 0) rotate(-45deg);
	background-color: #1e1e23;
}
.hamburger--squeeze .hamburger-inner {
	-webkit-transition-duration: 0.1s;
	-o-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
	-webkit-transition: top 0.1s 0.12s ease, opacity 0.1s ease;
	-o-transition: top 0.1s 0.12s ease, opacity 0.1s ease;
	transition: top 0.1s 0.12s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
	-webkit-transition: bottom 0.1s 0.12s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.12s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition: bottom 0.1s 0.12s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.12s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.12s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
		-webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: 0.12s;
	-o-transition-delay: 0.12s;
	transition-delay: 0.12s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #1e1e23;
}
.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	-webkit-transition: top 0.1s ease, opacity 0.1s 0.12s ease;
	-o-transition: top 0.1s ease, opacity 0.1s 0.12s ease;
	transition: top 0.1s ease, opacity 0.1s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease, -webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: bottom 0.1s ease, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
		-webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #1e1e23;
}
.hamburger--spin .hamburger-inner {
	-webkit-transition-duration: 0.1s;
	-o-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
	-webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	-o-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
	transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
	-webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-o-transition: bottom 0.1s 0.25s ease-in, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.25s ease-in, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
		-webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
	-webkit-transition-delay: 0.12s;
	-o-transition-delay: 0.12s;
	transition-delay: 0.12s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #1e1e23;
}
.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	-webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	-o-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
	transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, -webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: bottom 0.1s ease-out, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease-out, transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
		-webkit-transform 0.1s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	background-color: #1e1e23;
}
.label {
	display: inline-block;
	font-size: 12px;
	padding: 5px 8px;
	color: #fff;
}
.label:hover {
	text-decoration: none;
}
.label-close {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding-right: 16px;
	color: #505052;
}
.label-close button {
	margin-left: 8px;
	opacity: 0.3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.label-close button:hover {
	opacity: 1;
}
.label-close button::after {
	content: '';
	position: absolute;
	background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' width='10' fill='%23464b55' height='10' xml:space='preserve'%3E%3Cpath opacity='.7' d='M4 3h2v1H4zM6 4h1v2H6zM4 6h2v1H4zM3 4h1v2H3z'/%3E%3Cpath d='M5 4H4v2h2V4zM3 2V1H2V0H1v1H0v1h1v1h1v1h2V2zM8 4V3h1V2h1V1H9V0H8v1H7v1H6v2h1zM7 8v1h1v1h1V9h1V8H9V7H8V6H6v2zM2 6v1H1v1H0v1h1v1h1V9h1V8h1V6H3z'/%3E%3C/svg%3E")
		no-repeat;
	width: 10px;
	height: 10px;
}
.label-close button:active {
	-webkit-transform: translateY(1px) !important;
	-ms-transform: translateY(1px) !important;
	transform: translateY(1px) !important;
}
.label-gray {
	color: #767678;
	background-color: #dcdee0;
}
.label-black {
	color: #fff;
	background-color: #1e1e23;
}
.label-blue {
	color: #fff;
	background-color: #0f91d7;
}
.label-yellow {
	background-color: #b4a014;
}
.label-red {
	background-color: #be0a32;
}
.label-green {
	background-color: #e94e19;
}
.label-orange {
	background-color: #e94e19;
}
.label-outline {
	color: #767678;
	-webkit-box-shadow: 0 0 0 1px #dcdee0;
	box-shadow: 0 0 0 1px #dcdee0;
}
.markdown-no-margin p {
	margin: 0 !important;
}
.m-0 {
	margin: 0 !important;
}
.mt-0 {
	margin-top: 0 !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.mx-0 {
	margin-right: 0 !important;
	margin-left: 0 !important;
}
.my-0 {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}
.m-1 {
	margin: 4px !important;
}
.mt-1 {
	margin-top: 4px !important;
}
.mr-1 {
	margin-right: 4px !important;
}
.mb-1 {
	margin-bottom: 4px !important;
}
.ml-1 {
	margin-left: 4px !important;
}
.mx-1 {
	margin-right: 4px !important;
	margin-left: 4px !important;
}
.my-1 {
	margin-top: 4px !important;
	margin-bottom: 4px !important;
}
.m-2 {
	margin: 8px !important;
}
.mt-2 {
	margin-top: 8px !important;
}
.mr-2 {
	margin-right: 8px !important;
}
.mb-2 {
	margin-bottom: 8px !important;
}
.ml-2 {
	margin-left: 8px !important;
}
.mx-2 {
	margin-right: 8px !important;
	margin-left: 8px !important;
}
.my-2 {
	margin-top: 8px !important;
	margin-bottom: 8px !important;
}
.m-3 {
	margin: 16px !important;
}
.mt-3 {
	margin-top: 16px !important;
}
.mr-3 {
	margin-right: 16px !important;
}
.mb-3 {
	margin-bottom: 16px !important;
}
.ml-3 {
	margin-left: 16px !important;
}
.mx-3 {
	margin-right: 16px !important;
	margin-left: 16px !important;
}
.my-3 {
	margin-top: 16px !important;
	margin-bottom: 16px !important;
}
.m-4 {
	margin: 24px !important;
}
.mt-4 {
	margin-top: 24px !important;
}
.mr-4 {
	margin-right: 24px !important;
}
.mb-4 {
	margin-bottom: 24px !important;
}
.ml-4 {
	margin-left: 24px !important;
}
.mx-4 {
	margin-right: 24px !important;
	margin-left: 24px !important;
}
.my-4 {
	margin-top: 24px !important;
	margin-bottom: 24px !important;
}
.m-5 {
	margin: 32px !important;
}
.mt-5 {
	margin-top: 32px !important;
}
.mr-5 {
	margin-right: 32px !important;
}
.mb-5 {
	margin-bottom: 32px !important;
}
.ml-5 {
	margin-left: 32px !important;
}
.mx-5 {
	margin-right: 32px !important;
	margin-left: 32px !important;
}
.my-5 {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}
.m-6 {
	margin: 40px !important;
}
.mt-6 {
	margin-top: 40px !important;
}
.mr-6 {
	margin-right: 40px !important;
}
.mb-6 {
	margin-bottom: 40px !important;
}
.ml-6 {
	margin-left: 40px !important;
}
.mx-6 {
	margin-right: 40px !important;
	margin-left: 40px !important;
}
.my-6 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}
.mx-auto {
	margin-right: auto !important;
	margin-left: auto !important;
}
@media only screen and (min-width: 0) {
	.m-xs-0 {
		margin: 0 !important;
	}
	.mt-xs-0 {
		margin-top: 0 !important;
	}
	.mr-xs-0 {
		margin-right: 0 !important;
	}
	.mb-xs-0 {
		margin-bottom: 0 !important;
	}
	.ml-xs-0 {
		margin-left: 0 !important;
	}
	.mx-xs-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-xs-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-1 {
		margin: 4px !important;
	}
	.mt-xs-1 {
		margin-top: 4px !important;
	}
	.mr-xs-1 {
		margin-right: 4px !important;
	}
	.mb-xs-1 {
		margin-bottom: 4px !important;
	}
	.ml-xs-1 {
		margin-left: 4px !important;
	}
	.mx-xs-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-xs-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-2 {
		margin: 8px !important;
	}
	.mt-xs-2 {
		margin-top: 8px !important;
	}
	.mr-xs-2 {
		margin-right: 8px !important;
	}
	.mb-xs-2 {
		margin-bottom: 8px !important;
	}
	.ml-xs-2 {
		margin-left: 8px !important;
	}
	.mx-xs-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-xs-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-3 {
		margin: 16px !important;
	}
	.mt-xs-3 {
		margin-top: 16px !important;
	}
	.mr-xs-3 {
		margin-right: 16px !important;
	}
	.mb-xs-3 {
		margin-bottom: 16px !important;
	}
	.ml-xs-3 {
		margin-left: 16px !important;
	}
	.mx-xs-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-xs-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-4 {
		margin: 24px !important;
	}
	.mt-xs-4 {
		margin-top: 24px !important;
	}
	.mr-xs-4 {
		margin-right: 24px !important;
	}
	.mb-xs-4 {
		margin-bottom: 24px !important;
	}
	.ml-xs-4 {
		margin-left: 24px !important;
	}
	.mx-xs-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-xs-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-5 {
		margin: 32px !important;
	}
	.mt-xs-5 {
		margin-top: 32px !important;
	}
	.mr-xs-5 {
		margin-right: 32px !important;
	}
	.mb-xs-5 {
		margin-bottom: 32px !important;
	}
	.ml-xs-5 {
		margin-left: 32px !important;
	}
	.mx-xs-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-xs-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 0) {
	.m-xs-6 {
		margin: 40px !important;
	}
	.mt-xs-6 {
		margin-top: 40px !important;
	}
	.mr-xs-6 {
		margin-right: 40px !important;
	}
	.mb-xs-6 {
		margin-bottom: 40px !important;
	}
	.ml-xs-6 {
		margin-left: 40px !important;
	}
	.mx-xs-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-xs-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-0 {
		margin: 0 !important;
	}
	.mt-sm-0 {
		margin-top: 0 !important;
	}
	.mr-sm-0 {
		margin-right: 0 !important;
	}
	.mb-sm-0 {
		margin-bottom: 0 !important;
	}
	.ml-sm-0 {
		margin-left: 0 !important;
	}
	.mx-sm-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-sm-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-1 {
		margin: 4px !important;
	}
	.mt-sm-1 {
		margin-top: 4px !important;
	}
	.mr-sm-1 {
		margin-right: 4px !important;
	}
	.mb-sm-1 {
		margin-bottom: 4px !important;
	}
	.ml-sm-1 {
		margin-left: 4px !important;
	}
	.mx-sm-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-sm-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-2 {
		margin: 8px !important;
	}
	.mt-sm-2 {
		margin-top: 8px !important;
	}
	.mr-sm-2 {
		margin-right: 8px !important;
	}
	.mb-sm-2 {
		margin-bottom: 8px !important;
	}
	.ml-sm-2 {
		margin-left: 8px !important;
	}
	.mx-sm-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-sm-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-3 {
		margin: 16px !important;
	}
	.mt-sm-3 {
		margin-top: 16px !important;
	}
	.mr-sm-3 {
		margin-right: 16px !important;
	}
	.mb-sm-3 {
		margin-bottom: 16px !important;
	}
	.ml-sm-3 {
		margin-left: 16px !important;
	}
	.mx-sm-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-sm-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-4 {
		margin: 24px !important;
	}
	.mt-sm-4 {
		margin-top: 24px !important;
	}
	.mr-sm-4 {
		margin-right: 24px !important;
	}
	.mb-sm-4 {
		margin-bottom: 24px !important;
	}
	.ml-sm-4 {
		margin-left: 24px !important;
	}
	.mx-sm-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-sm-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-5 {
		margin: 32px !important;
	}
	.mt-sm-5 {
		margin-top: 32px !important;
	}
	.mr-sm-5 {
		margin-right: 32px !important;
	}
	.mb-sm-5 {
		margin-bottom: 32px !important;
	}
	.ml-sm-5 {
		margin-left: 32px !important;
	}
	.mx-sm-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-sm-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 480px) {
	.m-sm-6 {
		margin: 40px !important;
	}
	.mt-sm-6 {
		margin-top: 40px !important;
	}
	.mr-sm-6 {
		margin-right: 40px !important;
	}
	.mb-sm-6 {
		margin-bottom: 40px !important;
	}
	.ml-sm-6 {
		margin-left: 40px !important;
	}
	.mx-sm-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-sm-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}
	.mt-md-0 {
		margin-top: 0 !important;
	}
	.mr-md-0 {
		margin-right: 0 !important;
	}
	.mb-md-0 {
		margin-bottom: 0 !important;
	}
	.ml-md-0 {
		margin-left: 0 !important;
	}
	.mx-md-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-md-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-1 {
		margin: 4px !important;
	}
	.mt-md-1 {
		margin-top: 4px !important;
	}
	.mr-md-1 {
		margin-right: 4px !important;
	}
	.mb-md-1 {
		margin-bottom: 4px !important;
	}
	.ml-md-1 {
		margin-left: 4px !important;
	}
	.mx-md-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-md-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-2 {
		margin: 8px !important;
	}
	.mt-md-2 {
		margin-top: 8px !important;
	}
	.mr-md-2 {
		margin-right: 8px !important;
	}
	.mb-md-2 {
		margin-bottom: 8px !important;
	}
	.ml-md-2 {
		margin-left: 8px !important;
	}
	.mx-md-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-md-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-3 {
		margin: 16px !important;
	}
	.mt-md-3 {
		margin-top: 16px !important;
	}
	.mr-md-3 {
		margin-right: 16px !important;
	}
	.mb-md-3 {
		margin-bottom: 16px !important;
	}
	.ml-md-3 {
		margin-left: 16px !important;
	}
	.mx-md-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-md-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-4 {
		margin: 24px !important;
	}
	.mt-md-4 {
		margin-top: 24px !important;
	}
	.mr-md-4 {
		margin-right: 24px !important;
	}
	.mb-md-4 {
		margin-bottom: 24px !important;
	}
	.ml-md-4 {
		margin-left: 24px !important;
	}
	.mx-md-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-md-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-5 {
		margin: 32px !important;
	}
	.mt-md-5 {
		margin-top: 32px !important;
	}
	.mr-md-5 {
		margin-right: 32px !important;
	}
	.mb-md-5 {
		margin-bottom: 32px !important;
	}
	.ml-md-5 {
		margin-left: 32px !important;
	}
	.mx-md-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-md-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 768px) {
	.m-md-6 {
		margin: 40px !important;
	}
	.mt-md-6 {
		margin-top: 40px !important;
	}
	.mr-md-6 {
		margin-right: 40px !important;
	}
	.mb-md-6 {
		margin-bottom: 40px !important;
	}
	.ml-md-6 {
		margin-left: 40px !important;
	}
	.mx-md-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-md-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-0 {
		margin: 0 !important;
	}
	.mt-lg-0 {
		margin-top: 0 !important;
	}
	.mr-lg-0 {
		margin-right: 0 !important;
	}
	.mb-lg-0 {
		margin-bottom: 0 !important;
	}
	.ml-lg-0 {
		margin-left: 0 !important;
	}
	.mx-lg-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-lg-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-1 {
		margin: 4px !important;
	}
	.mt-lg-1 {
		margin-top: 4px !important;
	}
	.mr-lg-1 {
		margin-right: 4px !important;
	}
	.mb-lg-1 {
		margin-bottom: 4px !important;
	}
	.ml-lg-1 {
		margin-left: 4px !important;
	}
	.mx-lg-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-lg-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-2 {
		margin: 8px !important;
	}
	.mt-lg-2 {
		margin-top: 8px !important;
	}
	.mr-lg-2 {
		margin-right: 8px !important;
	}
	.mb-lg-2 {
		margin-bottom: 8px !important;
	}
	.ml-lg-2 {
		margin-left: 8px !important;
	}
	.mx-lg-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-lg-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-3 {
		margin: 16px !important;
	}
	.mt-lg-3 {
		margin-top: 16px !important;
	}
	.mr-lg-3 {
		margin-right: 16px !important;
	}
	.mb-lg-3 {
		margin-bottom: 16px !important;
	}
	.ml-lg-3 {
		margin-left: 16px !important;
	}
	.mx-lg-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-lg-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-4 {
		margin: 24px !important;
	}
	.mt-lg-4 {
		margin-top: 24px !important;
	}
	.mr-lg-4 {
		margin-right: 24px !important;
	}
	.mb-lg-4 {
		margin-bottom: 24px !important;
	}
	.ml-lg-4 {
		margin-left: 24px !important;
	}
	.mx-lg-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-lg-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-5 {
		margin: 32px !important;
	}
	.mt-lg-5 {
		margin-top: 32px !important;
	}
	.mr-lg-5 {
		margin-right: 32px !important;
	}
	.mb-lg-5 {
		margin-bottom: 32px !important;
	}
	.ml-lg-5 {
		margin-left: 32px !important;
	}
	.mx-lg-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-lg-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.m-lg-6 {
		margin: 40px !important;
	}
	.mt-lg-6 {
		margin-top: 40px !important;
	}
	.mr-lg-6 {
		margin-right: 40px !important;
	}
	.mb-lg-6 {
		margin-bottom: 40px !important;
	}
	.ml-lg-6 {
		margin-left: 40px !important;
	}
	.mx-lg-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-lg-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-0 {
		margin: 0 !important;
	}
	.mt-xl-0 {
		margin-top: 0 !important;
	}
	.mr-xl-0 {
		margin-right: 0 !important;
	}
	.mb-xl-0 {
		margin-bottom: 0 !important;
	}
	.ml-xl-0 {
		margin-left: 0 !important;
	}
	.mx-xl-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-xl-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-1 {
		margin: 4px !important;
	}
	.mt-xl-1 {
		margin-top: 4px !important;
	}
	.mr-xl-1 {
		margin-right: 4px !important;
	}
	.mb-xl-1 {
		margin-bottom: 4px !important;
	}
	.ml-xl-1 {
		margin-left: 4px !important;
	}
	.mx-xl-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-xl-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-2 {
		margin: 8px !important;
	}
	.mt-xl-2 {
		margin-top: 8px !important;
	}
	.mr-xl-2 {
		margin-right: 8px !important;
	}
	.mb-xl-2 {
		margin-bottom: 8px !important;
	}
	.ml-xl-2 {
		margin-left: 8px !important;
	}
	.mx-xl-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-xl-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-3 {
		margin: 16px !important;
	}
	.mt-xl-3 {
		margin-top: 16px !important;
	}
	.mr-xl-3 {
		margin-right: 16px !important;
	}
	.mb-xl-3 {
		margin-bottom: 16px !important;
	}
	.ml-xl-3 {
		margin-left: 16px !important;
	}
	.mx-xl-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-xl-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-4 {
		margin: 24px !important;
	}
	.mt-xl-4 {
		margin-top: 24px !important;
	}
	.mr-xl-4 {
		margin-right: 24px !important;
	}
	.mb-xl-4 {
		margin-bottom: 24px !important;
	}
	.ml-xl-4 {
		margin-left: 24px !important;
	}
	.mx-xl-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-xl-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-5 {
		margin: 32px !important;
	}
	.mt-xl-5 {
		margin-top: 32px !important;
	}
	.mr-xl-5 {
		margin-right: 32px !important;
	}
	.mb-xl-5 {
		margin-bottom: 32px !important;
	}
	.ml-xl-5 {
		margin-left: 32px !important;
	}
	.mx-xl-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-xl-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.m-xl-6 {
		margin: 40px !important;
	}
	.mt-xl-6 {
		margin-top: 40px !important;
	}
	.mr-xl-6 {
		margin-right: 40px !important;
	}
	.mb-xl-6 {
		margin-bottom: 40px !important;
	}
	.ml-xl-6 {
		margin-left: 40px !important;
	}
	.mx-xl-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-xl-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-0 {
		margin: 0 !important;
	}
	.mt-xl-wide-0 {
		margin-top: 0 !important;
	}
	.mr-xl-wide-0 {
		margin-right: 0 !important;
	}
	.mb-xl-wide-0 {
		margin-bottom: 0 !important;
	}
	.ml-xl-wide-0 {
		margin-left: 0 !important;
	}
	.mx-xl-wide-0 {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
	.my-xl-wide-0 {
		margin-top: 0 !important;
		margin-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-1 {
		margin: 4px !important;
	}
	.mt-xl-wide-1 {
		margin-top: 4px !important;
	}
	.mr-xl-wide-1 {
		margin-right: 4px !important;
	}
	.mb-xl-wide-1 {
		margin-bottom: 4px !important;
	}
	.ml-xl-wide-1 {
		margin-left: 4px !important;
	}
	.mx-xl-wide-1 {
		margin-right: 4px !important;
		margin-left: 4px !important;
	}
	.my-xl-wide-1 {
		margin-top: 4px !important;
		margin-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-2 {
		margin: 8px !important;
	}
	.mt-xl-wide-2 {
		margin-top: 8px !important;
	}
	.mr-xl-wide-2 {
		margin-right: 8px !important;
	}
	.mb-xl-wide-2 {
		margin-bottom: 8px !important;
	}
	.ml-xl-wide-2 {
		margin-left: 8px !important;
	}
	.mx-xl-wide-2 {
		margin-right: 8px !important;
		margin-left: 8px !important;
	}
	.my-xl-wide-2 {
		margin-top: 8px !important;
		margin-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-3 {
		margin: 16px !important;
	}
	.mt-xl-wide-3 {
		margin-top: 16px !important;
	}
	.mr-xl-wide-3 {
		margin-right: 16px !important;
	}
	.mb-xl-wide-3 {
		margin-bottom: 16px !important;
	}
	.ml-xl-wide-3 {
		margin-left: 16px !important;
	}
	.mx-xl-wide-3 {
		margin-right: 16px !important;
		margin-left: 16px !important;
	}
	.my-xl-wide-3 {
		margin-top: 16px !important;
		margin-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-4 {
		margin: 24px !important;
	}
	.mt-xl-wide-4 {
		margin-top: 24px !important;
	}
	.mr-xl-wide-4 {
		margin-right: 24px !important;
	}
	.mb-xl-wide-4 {
		margin-bottom: 24px !important;
	}
	.ml-xl-wide-4 {
		margin-left: 24px !important;
	}
	.mx-xl-wide-4 {
		margin-right: 24px !important;
		margin-left: 24px !important;
	}
	.my-xl-wide-4 {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-5 {
		margin: 32px !important;
	}
	.mt-xl-wide-5 {
		margin-top: 32px !important;
	}
	.mr-xl-wide-5 {
		margin-right: 32px !important;
	}
	.mb-xl-wide-5 {
		margin-bottom: 32px !important;
	}
	.ml-xl-wide-5 {
		margin-left: 32px !important;
	}
	.mx-xl-wide-5 {
		margin-right: 32px !important;
		margin-left: 32px !important;
	}
	.my-xl-wide-5 {
		margin-top: 32px !important;
		margin-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.m-xl-wide-6 {
		margin: 40px !important;
	}
	.mt-xl-wide-6 {
		margin-top: 40px !important;
	}
	.mr-xl-wide-6 {
		margin-right: 40px !important;
	}
	.mb-xl-wide-6 {
		margin-bottom: 40px !important;
	}
	.ml-xl-wide-6 {
		margin-left: 40px !important;
	}
	.mx-xl-wide-6 {
		margin-right: 40px !important;
		margin-left: 40px !important;
	}
	.my-xl-wide-6 {
		margin-top: 40px !important;
		margin-bottom: 40px !important;
	}
}
.mt-n1 {
	margin-top: -4px !important;
}
.mr-n1 {
	margin-right: -4px !important;
}
.mb-n1 {
	margin-bottom: -4px !important;
}
.ml-n1 {
	margin-left: -4px !important;
}
.mt-n2 {
	margin-top: -8px !important;
}
.mr-n2 {
	margin-right: -8px !important;
}
.mb-n2 {
	margin-bottom: -8px !important;
}
.ml-n2 {
	margin-left: -8px !important;
}
.mt-n3 {
	margin-top: -16px !important;
}
.mr-n3 {
	margin-right: -16px !important;
}
.mb-n3 {
	margin-bottom: -16px !important;
}
.ml-n3 {
	margin-left: -16px !important;
}
.mt-n4 {
	margin-top: -24px !important;
}
.mr-n4 {
	margin-right: -24px !important;
}
.mb-n4 {
	margin-bottom: -24px !important;
}
.ml-n4 {
	margin-left: -24px !important;
}
.mt-n5 {
	margin-top: -32px !important;
}
.mr-n5 {
	margin-right: -32px !important;
}
.mb-n5 {
	margin-bottom: -32px !important;
}
.ml-n5 {
	margin-left: -32px !important;
}
.mt-n6 {
	margin-top: -40px !important;
}
.mr-n6 {
	margin-right: -40px !important;
}
.mb-n6 {
	margin-bottom: -40px !important;
}
.ml-n6 {
	margin-left: -40px !important;
}
@media only screen and (min-width: 0) {
	.mt-xs-n1 {
		margin-top: -4px !important;
	}
	.mr-xs-n1 {
		margin-right: -4px !important;
	}
	.mb-xs-n1 {
		margin-bottom: -4px !important;
	}
	.ml-xs-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-n2 {
		margin-top: -8px !important;
	}
	.mr-xs-n2 {
		margin-right: -8px !important;
	}
	.mb-xs-n2 {
		margin-bottom: -8px !important;
	}
	.ml-xs-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-n3 {
		margin-top: -16px !important;
	}
	.mr-xs-n3 {
		margin-right: -16px !important;
	}
	.mb-xs-n3 {
		margin-bottom: -16px !important;
	}
	.ml-xs-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-n4 {
		margin-top: -24px !important;
	}
	.mr-xs-n4 {
		margin-right: -24px !important;
	}
	.mb-xs-n4 {
		margin-bottom: -24px !important;
	}
	.ml-xs-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-n5 {
		margin-top: -32px !important;
	}
	.mr-xs-n5 {
		margin-right: -32px !important;
	}
	.mb-xs-n5 {
		margin-bottom: -32px !important;
	}
	.ml-xs-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-n6 {
		margin-top: -40px !important;
	}
	.mr-xs-n6 {
		margin-right: -40px !important;
	}
	.mb-xs-n6 {
		margin-bottom: -40px !important;
	}
	.ml-xs-n6 {
		margin-left: -40px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n1 {
		margin-top: -4px !important;
	}
	.mr-sm-n1 {
		margin-right: -4px !important;
	}
	.mb-sm-n1 {
		margin-bottom: -4px !important;
	}
	.ml-sm-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n2 {
		margin-top: -8px !important;
	}
	.mr-sm-n2 {
		margin-right: -8px !important;
	}
	.mb-sm-n2 {
		margin-bottom: -8px !important;
	}
	.ml-sm-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n3 {
		margin-top: -16px !important;
	}
	.mr-sm-n3 {
		margin-right: -16px !important;
	}
	.mb-sm-n3 {
		margin-bottom: -16px !important;
	}
	.ml-sm-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n4 {
		margin-top: -24px !important;
	}
	.mr-sm-n4 {
		margin-right: -24px !important;
	}
	.mb-sm-n4 {
		margin-bottom: -24px !important;
	}
	.ml-sm-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n5 {
		margin-top: -32px !important;
	}
	.mr-sm-n5 {
		margin-right: -32px !important;
	}
	.mb-sm-n5 {
		margin-bottom: -32px !important;
	}
	.ml-sm-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-n6 {
		margin-top: -40px !important;
	}
	.mr-sm-n6 {
		margin-right: -40px !important;
	}
	.mb-sm-n6 {
		margin-bottom: -40px !important;
	}
	.ml-sm-n6 {
		margin-left: -40px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n1 {
		margin-top: -4px !important;
	}
	.mr-md-n1 {
		margin-right: -4px !important;
	}
	.mb-md-n1 {
		margin-bottom: -4px !important;
	}
	.ml-md-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n2 {
		margin-top: -8px !important;
	}
	.mr-md-n2 {
		margin-right: -8px !important;
	}
	.mb-md-n2 {
		margin-bottom: -8px !important;
	}
	.ml-md-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n3 {
		margin-top: -16px !important;
	}
	.mr-md-n3 {
		margin-right: -16px !important;
	}
	.mb-md-n3 {
		margin-bottom: -16px !important;
	}
	.ml-md-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n4 {
		margin-top: -24px !important;
	}
	.mr-md-n4 {
		margin-right: -24px !important;
	}
	.mb-md-n4 {
		margin-bottom: -24px !important;
	}
	.ml-md-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n5 {
		margin-top: -32px !important;
	}
	.mr-md-n5 {
		margin-right: -32px !important;
	}
	.mb-md-n5 {
		margin-bottom: -32px !important;
	}
	.ml-md-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-n6 {
		margin-top: -40px !important;
	}
	.mr-md-n6 {
		margin-right: -40px !important;
	}
	.mb-md-n6 {
		margin-bottom: -40px !important;
	}
	.ml-md-n6 {
		margin-left: -40px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n1 {
		margin-top: -4px !important;
	}
	.mr-lg-n1 {
		margin-right: -4px !important;
	}
	.mb-lg-n1 {
		margin-bottom: -4px !important;
	}
	.ml-lg-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n2 {
		margin-top: -8px !important;
	}
	.mr-lg-n2 {
		margin-right: -8px !important;
	}
	.mb-lg-n2 {
		margin-bottom: -8px !important;
	}
	.ml-lg-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n3 {
		margin-top: -16px !important;
	}
	.mr-lg-n3 {
		margin-right: -16px !important;
	}
	.mb-lg-n3 {
		margin-bottom: -16px !important;
	}
	.ml-lg-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n4 {
		margin-top: -24px !important;
	}
	.mr-lg-n4 {
		margin-right: -24px !important;
	}
	.mb-lg-n4 {
		margin-bottom: -24px !important;
	}
	.ml-lg-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n5 {
		margin-top: -32px !important;
	}
	.mr-lg-n5 {
		margin-right: -32px !important;
	}
	.mb-lg-n5 {
		margin-bottom: -32px !important;
	}
	.ml-lg-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-n6 {
		margin-top: -40px !important;
	}
	.mr-lg-n6 {
		margin-right: -40px !important;
	}
	.mb-lg-n6 {
		margin-bottom: -40px !important;
	}
	.ml-lg-n6 {
		margin-left: -40px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n1 {
		margin-top: -4px !important;
	}
	.mr-xl-n1 {
		margin-right: -4px !important;
	}
	.mb-xl-n1 {
		margin-bottom: -4px !important;
	}
	.ml-xl-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n2 {
		margin-top: -8px !important;
	}
	.mr-xl-n2 {
		margin-right: -8px !important;
	}
	.mb-xl-n2 {
		margin-bottom: -8px !important;
	}
	.ml-xl-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n3 {
		margin-top: -16px !important;
	}
	.mr-xl-n3 {
		margin-right: -16px !important;
	}
	.mb-xl-n3 {
		margin-bottom: -16px !important;
	}
	.ml-xl-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n4 {
		margin-top: -24px !important;
	}
	.mr-xl-n4 {
		margin-right: -24px !important;
	}
	.mb-xl-n4 {
		margin-bottom: -24px !important;
	}
	.ml-xl-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n5 {
		margin-top: -32px !important;
	}
	.mr-xl-n5 {
		margin-right: -32px !important;
	}
	.mb-xl-n5 {
		margin-bottom: -32px !important;
	}
	.ml-xl-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-n6 {
		margin-top: -40px !important;
	}
	.mr-xl-n6 {
		margin-right: -40px !important;
	}
	.mb-xl-n6 {
		margin-bottom: -40px !important;
	}
	.ml-xl-n6 {
		margin-left: -40px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n1 {
		margin-top: -4px !important;
	}
	.mr-xl-wide-n1 {
		margin-right: -4px !important;
	}
	.mb-xl-wide-n1 {
		margin-bottom: -4px !important;
	}
	.ml-xl-wide-n1 {
		margin-left: -4px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n2 {
		margin-top: -8px !important;
	}
	.mr-xl-wide-n2 {
		margin-right: -8px !important;
	}
	.mb-xl-wide-n2 {
		margin-bottom: -8px !important;
	}
	.ml-xl-wide-n2 {
		margin-left: -8px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n3 {
		margin-top: -16px !important;
	}
	.mr-xl-wide-n3 {
		margin-right: -16px !important;
	}
	.mb-xl-wide-n3 {
		margin-bottom: -16px !important;
	}
	.ml-xl-wide-n3 {
		margin-left: -16px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n4 {
		margin-top: -24px !important;
	}
	.mr-xl-wide-n4 {
		margin-right: -24px !important;
	}
	.mb-xl-wide-n4 {
		margin-bottom: -24px !important;
	}
	.ml-xl-wide-n4 {
		margin-left: -24px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n5 {
		margin-top: -32px !important;
	}
	.mr-xl-wide-n5 {
		margin-right: -32px !important;
	}
	.mb-xl-wide-n5 {
		margin-bottom: -32px !important;
	}
	.ml-xl-wide-n5 {
		margin-left: -32px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-n6 {
		margin-top: -40px !important;
	}
	.mr-xl-wide-n6 {
		margin-right: -40px !important;
	}
	.mb-xl-wide-n6 {
		margin-bottom: -40px !important;
	}
	.ml-xl-wide-n6 {
		margin-left: -40px !important;
	}
}
.mt-7 {
	margin-top: 48px !important;
}
.mb-7 {
	margin-bottom: 48px !important;
}
.my-7 {
	margin-top: 48px !important;
	margin-bottom: 48px !important;
}
.mt-8 {
	margin-top: 64px !important;
}
.mb-8 {
	margin-bottom: 64px !important;
}
.my-8 {
	margin-top: 64px !important;
	margin-bottom: 64px !important;
}
.mt-9 {
	margin-top: 80px !important;
}
.mb-9 {
	margin-bottom: 80px !important;
}
.my-9 {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}
.mt-10 {
	margin-top: 96px !important;
}
.mb-10 {
	margin-bottom: 96px !important;
}
.my-10 {
	margin-top: 96px !important;
	margin-bottom: 96px !important;
}
.mt-11 {
	margin-top: 112px !important;
}
.mb-11 {
	margin-bottom: 112px !important;
}
.my-11 {
	margin-top: 112px !important;
	margin-bottom: 112px !important;
}
.mt-12 {
	margin-top: 128px !important;
}
.mb-12 {
	margin-bottom: 128px !important;
}
.my-12 {
	margin-top: 128px !important;
	margin-bottom: 128px !important;
}
@media only screen and (min-width: 0) {
	.mt-xs-7 {
		margin-top: 48px !important;
	}
	.mb-xs-7 {
		margin-bottom: 48px !important;
	}
	.my-xs-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-8 {
		margin-top: 64px !important;
	}
	.mb-xs-8 {
		margin-bottom: 64px !important;
	}
	.my-xs-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-9 {
		margin-top: 80px !important;
	}
	.mb-xs-9 {
		margin-bottom: 80px !important;
	}
	.my-xs-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-10 {
		margin-top: 96px !important;
	}
	.mb-xs-10 {
		margin-bottom: 96px !important;
	}
	.my-xs-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-11 {
		margin-top: 112px !important;
	}
	.mb-xs-11 {
		margin-bottom: 112px !important;
	}
	.my-xs-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 0) {
	.mt-xs-12 {
		margin-top: 128px !important;
	}
	.mb-xs-12 {
		margin-bottom: 128px !important;
	}
	.my-xs-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-7 {
		margin-top: 48px !important;
	}
	.mb-sm-7 {
		margin-bottom: 48px !important;
	}
	.my-sm-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-8 {
		margin-top: 64px !important;
	}
	.mb-sm-8 {
		margin-bottom: 64px !important;
	}
	.my-sm-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-9 {
		margin-top: 80px !important;
	}
	.mb-sm-9 {
		margin-bottom: 80px !important;
	}
	.my-sm-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-10 {
		margin-top: 96px !important;
	}
	.mb-sm-10 {
		margin-bottom: 96px !important;
	}
	.my-sm-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-11 {
		margin-top: 112px !important;
	}
	.mb-sm-11 {
		margin-bottom: 112px !important;
	}
	.my-sm-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 480px) {
	.mt-sm-12 {
		margin-top: 128px !important;
	}
	.mb-sm-12 {
		margin-bottom: 128px !important;
	}
	.my-sm-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-7 {
		margin-top: 48px !important;
	}
	.mb-md-7 {
		margin-bottom: 48px !important;
	}
	.my-md-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-8 {
		margin-top: 64px !important;
	}
	.mb-md-8 {
		margin-bottom: 64px !important;
	}
	.my-md-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-9 {
		margin-top: 80px !important;
	}
	.mb-md-9 {
		margin-bottom: 80px !important;
	}
	.my-md-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-10 {
		margin-top: 96px !important;
	}
	.mb-md-10 {
		margin-bottom: 96px !important;
	}
	.my-md-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-11 {
		margin-top: 112px !important;
	}
	.mb-md-11 {
		margin-bottom: 112px !important;
	}
	.my-md-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 768px) {
	.mt-md-12 {
		margin-top: 128px !important;
	}
	.mb-md-12 {
		margin-bottom: 128px !important;
	}
	.my-md-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-7 {
		margin-top: 48px !important;
	}
	.mb-lg-7 {
		margin-bottom: 48px !important;
	}
	.my-lg-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-8 {
		margin-top: 64px !important;
	}
	.mb-lg-8 {
		margin-bottom: 64px !important;
	}
	.my-lg-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-9 {
		margin-top: 80px !important;
	}
	.mb-lg-9 {
		margin-bottom: 80px !important;
	}
	.my-lg-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-10 {
		margin-top: 96px !important;
	}
	.mb-lg-10 {
		margin-bottom: 96px !important;
	}
	.my-lg-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-11 {
		margin-top: 112px !important;
	}
	.mb-lg-11 {
		margin-bottom: 112px !important;
	}
	.my-lg-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.mt-lg-12 {
		margin-top: 128px !important;
	}
	.mb-lg-12 {
		margin-bottom: 128px !important;
	}
	.my-lg-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-7 {
		margin-top: 48px !important;
	}
	.mb-xl-7 {
		margin-bottom: 48px !important;
	}
	.my-xl-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-8 {
		margin-top: 64px !important;
	}
	.mb-xl-8 {
		margin-bottom: 64px !important;
	}
	.my-xl-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-9 {
		margin-top: 80px !important;
	}
	.mb-xl-9 {
		margin-bottom: 80px !important;
	}
	.my-xl-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-10 {
		margin-top: 96px !important;
	}
	.mb-xl-10 {
		margin-bottom: 96px !important;
	}
	.my-xl-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-11 {
		margin-top: 112px !important;
	}
	.mb-xl-11 {
		margin-bottom: 112px !important;
	}
	.my-xl-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.mt-xl-12 {
		margin-top: 128px !important;
	}
	.mb-xl-12 {
		margin-bottom: 128px !important;
	}
	.my-xl-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-7 {
		margin-top: 48px !important;
	}
	.mb-xl-wide-7 {
		margin-bottom: 48px !important;
	}
	.my-xl-wide-7 {
		margin-top: 48px !important;
		margin-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-8 {
		margin-top: 64px !important;
	}
	.mb-xl-wide-8 {
		margin-bottom: 64px !important;
	}
	.my-xl-wide-8 {
		margin-top: 64px !important;
		margin-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-9 {
		margin-top: 80px !important;
	}
	.mb-xl-wide-9 {
		margin-bottom: 80px !important;
	}
	.my-xl-wide-9 {
		margin-top: 80px !important;
		margin-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-10 {
		margin-top: 96px !important;
	}
	.mb-xl-wide-10 {
		margin-bottom: 96px !important;
	}
	.my-xl-wide-10 {
		margin-top: 96px !important;
		margin-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-11 {
		margin-top: 112px !important;
	}
	.mb-xl-wide-11 {
		margin-bottom: 112px !important;
	}
	.my-xl-wide-11 {
		margin-top: 112px !important;
		margin-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.mt-xl-wide-12 {
		margin-top: 128px !important;
	}
	.mb-xl-wide-12 {
		margin-bottom: 128px !important;
	}
	.my-xl-wide-12 {
		margin-top: 128px !important;
		margin-bottom: 128px !important;
	}
}
.p-0 {
	padding: 0 !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.px-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}
.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.p-1 {
	padding: 4px !important;
}
.pt-1 {
	padding-top: 4px !important;
}
.pr-1 {
	padding-right: 4px !important;
}
.pb-1 {
	padding-bottom: 4px !important;
}
.pl-1 {
	padding-left: 4px !important;
}
.px-1 {
	padding-right: 4px !important;
	padding-left: 4px !important;
}
.py-1 {
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}
.p-2 {
	padding: 8px !important;
}
.pt-2 {
	padding-top: 8px !important;
}
.pr-2 {
	padding-right: 8px !important;
}
.pb-2 {
	padding-bottom: 8px !important;
}
.pl-2 {
	padding-left: 8px !important;
}
.px-2 {
	padding-right: 8px !important;
	padding-left: 8px !important;
}
.py-2 {
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}
.p-3 {
	padding: 16px !important;
}
.pt-3 {
	padding-top: 16px !important;
}
.pr-3 {
	padding-right: 16px !important;
}
.pb-3 {
	padding-bottom: 16px !important;
}
.pl-3 {
	padding-left: 16px !important;
}
.px-3 {
	padding-right: 16px !important;
	padding-left: 16px !important;
}
.py-3 {
	padding-top: 16px !important;
	padding-bottom: 16px !important;
}
.p-4 {
	padding: 24px !important;
}
.pt-4 {
	padding-top: 24px !important;
}
.pr-4 {
	padding-right: 24px !important;
}
.pb-4 {
	padding-bottom: 24px !important;
}
.pl-4 {
	padding-left: 24px !important;
}
.px-4 {
	padding-right: 24px !important;
	padding-left: 24px !important;
}
.py-4 {
	padding-top: 24px !important;
	padding-bottom: 24px !important;
}
.p-5 {
	padding: 32px !important;
}
.pt-5 {
	padding-top: 32px !important;
}
.pr-5 {
	padding-right: 32px !important;
}
.pb-5 {
	padding-bottom: 32px !important;
}
.pl-5 {
	padding-left: 32px !important;
}
.px-5 {
	padding-right: 32px !important;
	padding-left: 32px !important;
}
.py-5 {
	padding-top: 32px !important;
	padding-bottom: 32px !important;
}
.p-6 {
	padding: 40px !important;
}
.pt-6 {
	padding-top: 40px !important;
}
.pr-6 {
	padding-right: 40px !important;
}
.pb-6 {
	padding-bottom: 40px !important;
}
.pl-6 {
	padding-left: 40px !important;
}
.px-6 {
	padding-right: 40px !important;
	padding-left: 40px !important;
}
.py-6 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}
@media only screen and (min-width: 0) {
	.p-xs-0 {
		padding: 0 !important;
	}
	.pt-xs-0 {
		padding-top: 0 !important;
	}
	.pr-xs-0 {
		padding-right: 0 !important;
	}
	.pb-xs-0 {
		padding-bottom: 0 !important;
	}
	.pl-xs-0 {
		padding-left: 0 !important;
	}
	.px-xs-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-xs-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-1 {
		padding: 4px !important;
	}
	.pt-xs-1 {
		padding-top: 4px !important;
	}
	.pr-xs-1 {
		padding-right: 4px !important;
	}
	.pb-xs-1 {
		padding-bottom: 4px !important;
	}
	.pl-xs-1 {
		padding-left: 4px !important;
	}
	.px-xs-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-xs-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-2 {
		padding: 8px !important;
	}
	.pt-xs-2 {
		padding-top: 8px !important;
	}
	.pr-xs-2 {
		padding-right: 8px !important;
	}
	.pb-xs-2 {
		padding-bottom: 8px !important;
	}
	.pl-xs-2 {
		padding-left: 8px !important;
	}
	.px-xs-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-xs-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-3 {
		padding: 16px !important;
	}
	.pt-xs-3 {
		padding-top: 16px !important;
	}
	.pr-xs-3 {
		padding-right: 16px !important;
	}
	.pb-xs-3 {
		padding-bottom: 16px !important;
	}
	.pl-xs-3 {
		padding-left: 16px !important;
	}
	.px-xs-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-xs-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-4 {
		padding: 24px !important;
	}
	.pt-xs-4 {
		padding-top: 24px !important;
	}
	.pr-xs-4 {
		padding-right: 24px !important;
	}
	.pb-xs-4 {
		padding-bottom: 24px !important;
	}
	.pl-xs-4 {
		padding-left: 24px !important;
	}
	.px-xs-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-xs-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-5 {
		padding: 32px !important;
	}
	.pt-xs-5 {
		padding-top: 32px !important;
	}
	.pr-xs-5 {
		padding-right: 32px !important;
	}
	.pb-xs-5 {
		padding-bottom: 32px !important;
	}
	.pl-xs-5 {
		padding-left: 32px !important;
	}
	.px-xs-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-xs-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 0) {
	.p-xs-6 {
		padding: 40px !important;
	}
	.pt-xs-6 {
		padding-top: 40px !important;
	}
	.pr-xs-6 {
		padding-right: 40px !important;
	}
	.pb-xs-6 {
		padding-bottom: 40px !important;
	}
	.pl-xs-6 {
		padding-left: 40px !important;
	}
	.px-xs-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-xs-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-0 {
		padding: 0 !important;
	}
	.pt-sm-0 {
		padding-top: 0 !important;
	}
	.pr-sm-0 {
		padding-right: 0 !important;
	}
	.pb-sm-0 {
		padding-bottom: 0 !important;
	}
	.pl-sm-0 {
		padding-left: 0 !important;
	}
	.px-sm-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-1 {
		padding: 4px !important;
	}
	.pt-sm-1 {
		padding-top: 4px !important;
	}
	.pr-sm-1 {
		padding-right: 4px !important;
	}
	.pb-sm-1 {
		padding-bottom: 4px !important;
	}
	.pl-sm-1 {
		padding-left: 4px !important;
	}
	.px-sm-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-sm-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-2 {
		padding: 8px !important;
	}
	.pt-sm-2 {
		padding-top: 8px !important;
	}
	.pr-sm-2 {
		padding-right: 8px !important;
	}
	.pb-sm-2 {
		padding-bottom: 8px !important;
	}
	.pl-sm-2 {
		padding-left: 8px !important;
	}
	.px-sm-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-sm-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-3 {
		padding: 16px !important;
	}
	.pt-sm-3 {
		padding-top: 16px !important;
	}
	.pr-sm-3 {
		padding-right: 16px !important;
	}
	.pb-sm-3 {
		padding-bottom: 16px !important;
	}
	.pl-sm-3 {
		padding-left: 16px !important;
	}
	.px-sm-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-sm-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-4 {
		padding: 24px !important;
	}
	.pt-sm-4 {
		padding-top: 24px !important;
	}
	.pr-sm-4 {
		padding-right: 24px !important;
	}
	.pb-sm-4 {
		padding-bottom: 24px !important;
	}
	.pl-sm-4 {
		padding-left: 24px !important;
	}
	.px-sm-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-sm-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-5 {
		padding: 32px !important;
	}
	.pt-sm-5 {
		padding-top: 32px !important;
	}
	.pr-sm-5 {
		padding-right: 32px !important;
	}
	.pb-sm-5 {
		padding-bottom: 32px !important;
	}
	.pl-sm-5 {
		padding-left: 32px !important;
	}
	.px-sm-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-sm-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 480px) {
	.p-sm-6 {
		padding: 40px !important;
	}
	.pt-sm-6 {
		padding-top: 40px !important;
	}
	.pr-sm-6 {
		padding-right: 40px !important;
	}
	.pb-sm-6 {
		padding-bottom: 40px !important;
	}
	.pl-sm-6 {
		padding-left: 40px !important;
	}
	.px-sm-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-sm-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-0 {
		padding: 0 !important;
	}
	.pt-md-0 {
		padding-top: 0 !important;
	}
	.pr-md-0 {
		padding-right: 0 !important;
	}
	.pb-md-0 {
		padding-bottom: 0 !important;
	}
	.pl-md-0 {
		padding-left: 0 !important;
	}
	.px-md-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-md-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-1 {
		padding: 4px !important;
	}
	.pt-md-1 {
		padding-top: 4px !important;
	}
	.pr-md-1 {
		padding-right: 4px !important;
	}
	.pb-md-1 {
		padding-bottom: 4px !important;
	}
	.pl-md-1 {
		padding-left: 4px !important;
	}
	.px-md-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-md-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-2 {
		padding: 8px !important;
	}
	.pt-md-2 {
		padding-top: 8px !important;
	}
	.pr-md-2 {
		padding-right: 8px !important;
	}
	.pb-md-2 {
		padding-bottom: 8px !important;
	}
	.pl-md-2 {
		padding-left: 8px !important;
	}
	.px-md-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-md-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-3 {
		padding: 16px !important;
	}
	.pt-md-3 {
		padding-top: 16px !important;
	}
	.pr-md-3 {
		padding-right: 16px !important;
	}
	.pb-md-3 {
		padding-bottom: 16px !important;
	}
	.pl-md-3 {
		padding-left: 16px !important;
	}
	.px-md-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-md-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-4 {
		padding: 24px !important;
	}
	.pt-md-4 {
		padding-top: 24px !important;
	}
	.pr-md-4 {
		padding-right: 24px !important;
	}
	.pb-md-4 {
		padding-bottom: 24px !important;
	}
	.pl-md-4 {
		padding-left: 24px !important;
	}
	.px-md-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-md-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-5 {
		padding: 32px !important;
	}
	.pt-md-5 {
		padding-top: 32px !important;
	}
	.pr-md-5 {
		padding-right: 32px !important;
	}
	.pb-md-5 {
		padding-bottom: 32px !important;
	}
	.pl-md-5 {
		padding-left: 32px !important;
	}
	.px-md-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-md-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 768px) {
	.p-md-6 {
		padding: 40px !important;
	}
	.pt-md-6 {
		padding-top: 40px !important;
	}
	.pr-md-6 {
		padding-right: 40px !important;
	}
	.pb-md-6 {
		padding-bottom: 40px !important;
	}
	.pl-md-6 {
		padding-left: 40px !important;
	}
	.px-md-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-md-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-0 {
		padding: 0 !important;
	}
	.pt-lg-0 {
		padding-top: 0 !important;
	}
	.pr-lg-0 {
		padding-right: 0 !important;
	}
	.pb-lg-0 {
		padding-bottom: 0 !important;
	}
	.pl-lg-0 {
		padding-left: 0 !important;
	}
	.px-lg-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-lg-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-1 {
		padding: 4px !important;
	}
	.pt-lg-1 {
		padding-top: 4px !important;
	}
	.pr-lg-1 {
		padding-right: 4px !important;
	}
	.pb-lg-1 {
		padding-bottom: 4px !important;
	}
	.pl-lg-1 {
		padding-left: 4px !important;
	}
	.px-lg-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-lg-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-2 {
		padding: 8px !important;
	}
	.pt-lg-2 {
		padding-top: 8px !important;
	}
	.pr-lg-2 {
		padding-right: 8px !important;
	}
	.pb-lg-2 {
		padding-bottom: 8px !important;
	}
	.pl-lg-2 {
		padding-left: 8px !important;
	}
	.px-lg-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-lg-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-3 {
		padding: 16px !important;
	}
	.pt-lg-3 {
		padding-top: 16px !important;
	}
	.pr-lg-3 {
		padding-right: 16px !important;
	}
	.pb-lg-3 {
		padding-bottom: 16px !important;
	}
	.pl-lg-3 {
		padding-left: 16px !important;
	}
	.px-lg-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-lg-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-4 {
		padding: 24px !important;
	}
	.pt-lg-4 {
		padding-top: 24px !important;
	}
	.pr-lg-4 {
		padding-right: 24px !important;
	}
	.pb-lg-4 {
		padding-bottom: 24px !important;
	}
	.pl-lg-4 {
		padding-left: 24px !important;
	}
	.px-lg-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-lg-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-5 {
		padding: 32px !important;
	}
	.pt-lg-5 {
		padding-top: 32px !important;
	}
	.pr-lg-5 {
		padding-right: 32px !important;
	}
	.pb-lg-5 {
		padding-bottom: 32px !important;
	}
	.pl-lg-5 {
		padding-left: 32px !important;
	}
	.px-lg-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-lg-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.p-lg-6 {
		padding: 40px !important;
	}
	.pt-lg-6 {
		padding-top: 40px !important;
	}
	.pr-lg-6 {
		padding-right: 40px !important;
	}
	.pb-lg-6 {
		padding-bottom: 40px !important;
	}
	.pl-lg-6 {
		padding-left: 40px !important;
	}
	.px-lg-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-lg-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-0 {
		padding: 0 !important;
	}
	.pt-xl-0 {
		padding-top: 0 !important;
	}
	.pr-xl-0 {
		padding-right: 0 !important;
	}
	.pb-xl-0 {
		padding-bottom: 0 !important;
	}
	.pl-xl-0 {
		padding-left: 0 !important;
	}
	.px-xl-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-xl-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-1 {
		padding: 4px !important;
	}
	.pt-xl-1 {
		padding-top: 4px !important;
	}
	.pr-xl-1 {
		padding-right: 4px !important;
	}
	.pb-xl-1 {
		padding-bottom: 4px !important;
	}
	.pl-xl-1 {
		padding-left: 4px !important;
	}
	.px-xl-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-xl-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-2 {
		padding: 8px !important;
	}
	.pt-xl-2 {
		padding-top: 8px !important;
	}
	.pr-xl-2 {
		padding-right: 8px !important;
	}
	.pb-xl-2 {
		padding-bottom: 8px !important;
	}
	.pl-xl-2 {
		padding-left: 8px !important;
	}
	.px-xl-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-xl-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-3 {
		padding: 16px !important;
	}
	.pt-xl-3 {
		padding-top: 16px !important;
	}
	.pr-xl-3 {
		padding-right: 16px !important;
	}
	.pb-xl-3 {
		padding-bottom: 16px !important;
	}
	.pl-xl-3 {
		padding-left: 16px !important;
	}
	.px-xl-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-xl-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-4 {
		padding: 24px !important;
	}
	.pt-xl-4 {
		padding-top: 24px !important;
	}
	.pr-xl-4 {
		padding-right: 24px !important;
	}
	.pb-xl-4 {
		padding-bottom: 24px !important;
	}
	.pl-xl-4 {
		padding-left: 24px !important;
	}
	.px-xl-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-xl-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-5 {
		padding: 32px !important;
	}
	.pt-xl-5 {
		padding-top: 32px !important;
	}
	.pr-xl-5 {
		padding-right: 32px !important;
	}
	.pb-xl-5 {
		padding-bottom: 32px !important;
	}
	.pl-xl-5 {
		padding-left: 32px !important;
	}
	.px-xl-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-xl-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.p-xl-6 {
		padding: 40px !important;
	}
	.pt-xl-6 {
		padding-top: 40px !important;
	}
	.pr-xl-6 {
		padding-right: 40px !important;
	}
	.pb-xl-6 {
		padding-bottom: 40px !important;
	}
	.pl-xl-6 {
		padding-left: 40px !important;
	}
	.px-xl-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-xl-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-0 {
		padding: 0 !important;
	}
	.pt-xl-wide-0 {
		padding-top: 0 !important;
	}
	.pr-xl-wide-0 {
		padding-right: 0 !important;
	}
	.pb-xl-wide-0 {
		padding-bottom: 0 !important;
	}
	.pl-xl-wide-0 {
		padding-left: 0 !important;
	}
	.px-xl-wide-0 {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}
	.py-xl-wide-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-1 {
		padding: 4px !important;
	}
	.pt-xl-wide-1 {
		padding-top: 4px !important;
	}
	.pr-xl-wide-1 {
		padding-right: 4px !important;
	}
	.pb-xl-wide-1 {
		padding-bottom: 4px !important;
	}
	.pl-xl-wide-1 {
		padding-left: 4px !important;
	}
	.px-xl-wide-1 {
		padding-right: 4px !important;
		padding-left: 4px !important;
	}
	.py-xl-wide-1 {
		padding-top: 4px !important;
		padding-bottom: 4px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-2 {
		padding: 8px !important;
	}
	.pt-xl-wide-2 {
		padding-top: 8px !important;
	}
	.pr-xl-wide-2 {
		padding-right: 8px !important;
	}
	.pb-xl-wide-2 {
		padding-bottom: 8px !important;
	}
	.pl-xl-wide-2 {
		padding-left: 8px !important;
	}
	.px-xl-wide-2 {
		padding-right: 8px !important;
		padding-left: 8px !important;
	}
	.py-xl-wide-2 {
		padding-top: 8px !important;
		padding-bottom: 8px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-3 {
		padding: 16px !important;
	}
	.pt-xl-wide-3 {
		padding-top: 16px !important;
	}
	.pr-xl-wide-3 {
		padding-right: 16px !important;
	}
	.pb-xl-wide-3 {
		padding-bottom: 16px !important;
	}
	.pl-xl-wide-3 {
		padding-left: 16px !important;
	}
	.px-xl-wide-3 {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}
	.py-xl-wide-3 {
		padding-top: 16px !important;
		padding-bottom: 16px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-4 {
		padding: 24px !important;
	}
	.pt-xl-wide-4 {
		padding-top: 24px !important;
	}
	.pr-xl-wide-4 {
		padding-right: 24px !important;
	}
	.pb-xl-wide-4 {
		padding-bottom: 24px !important;
	}
	.pl-xl-wide-4 {
		padding-left: 24px !important;
	}
	.px-xl-wide-4 {
		padding-right: 24px !important;
		padding-left: 24px !important;
	}
	.py-xl-wide-4 {
		padding-top: 24px !important;
		padding-bottom: 24px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-5 {
		padding: 32px !important;
	}
	.pt-xl-wide-5 {
		padding-top: 32px !important;
	}
	.pr-xl-wide-5 {
		padding-right: 32px !important;
	}
	.pb-xl-wide-5 {
		padding-bottom: 32px !important;
	}
	.pl-xl-wide-5 {
		padding-left: 32px !important;
	}
	.px-xl-wide-5 {
		padding-right: 32px !important;
		padding-left: 32px !important;
	}
	.py-xl-wide-5 {
		padding-top: 32px !important;
		padding-bottom: 32px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.p-xl-wide-6 {
		padding: 40px !important;
	}
	.pt-xl-wide-6 {
		padding-top: 40px !important;
	}
	.pr-xl-wide-6 {
		padding-right: 40px !important;
	}
	.pb-xl-wide-6 {
		padding-bottom: 40px !important;
	}
	.pl-xl-wide-6 {
		padding-left: 40px !important;
	}
	.px-xl-wide-6 {
		padding-right: 40px !important;
		padding-left: 40px !important;
	}
	.py-xl-wide-6 {
		padding-top: 40px !important;
		padding-bottom: 40px !important;
	}
}
.pt-7 {
	padding-top: 48px !important;
}
.pb-7 {
	padding-bottom: 48px !important;
}
.p-7 {
	padding: 48px !important;
}
.py-7 {
	padding-top: 48px !important;
	padding-bottom: 48px !important;
}
.pt-8 {
	padding-top: 64px !important;
}
.pb-8 {
	padding-bottom: 64px !important;
}
.p-8 {
	padding: 64px !important;
}
.py-8 {
	padding-top: 64px !important;
	padding-bottom: 64px !important;
}
.pt-9 {
	padding-top: 80px !important;
}
.pb-9 {
	padding-bottom: 80px !important;
}
.p-9 {
	padding: 80px !important;
}
.py-9 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}
.pt-10 {
	padding-top: 96px !important;
}
.pb-10 {
	padding-bottom: 96px !important;
}
.p-10 {
	padding: 96px !important;
}
.py-10 {
	padding-top: 96px !important;
	padding-bottom: 96px !important;
}
.pt-11 {
	padding-top: 112px !important;
}
.pb-11 {
	padding-bottom: 112px !important;
}
.p-11 {
	padding: 112px !important;
}
.py-11 {
	padding-top: 112px !important;
	padding-bottom: 112px !important;
}
.pt-12 {
	padding-top: 128px !important;
}
.pb-12 {
	padding-bottom: 128px !important;
}
.p-12 {
	padding: 128px !important;
}
.py-12 {
	padding-top: 128px !important;
	padding-bottom: 128px !important;
}
@media only screen and (min-width: 0) {
	.pt-xs-7 {
		padding-top: 48px !important;
	}
	.pb-xs-7 {
		padding-bottom: 48px !important;
	}
	.p-xs-7 {
		padding: 48px !important;
	}
	.py-xs-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 0) {
	.pt-xs-8 {
		padding-top: 64px !important;
	}
	.pb-xs-8 {
		padding-bottom: 64px !important;
	}
	.p-xs-8 {
		padding: 64px !important;
	}
	.py-xs-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 0) {
	.pt-xs-9 {
		padding-top: 80px !important;
	}
	.pb-xs-9 {
		padding-bottom: 80px !important;
	}
	.p-xs-9 {
		padding: 80px !important;
	}
	.py-xs-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 0) {
	.pt-xs-10 {
		padding-top: 96px !important;
	}
	.pb-xs-10 {
		padding-bottom: 96px !important;
	}
	.p-xs-10 {
		padding: 96px !important;
	}
	.py-xs-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 0) {
	.pt-xs-11 {
		padding-top: 112px !important;
	}
	.pb-xs-11 {
		padding-bottom: 112px !important;
	}
	.p-xs-11 {
		padding: 112px !important;
	}
	.py-xs-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 0) {
	.pt-xs-12 {
		padding-top: 128px !important;
	}
	.pb-xs-12 {
		padding-bottom: 128px !important;
	}
	.p-xs-12 {
		padding: 128px !important;
	}
	.py-xs-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-7 {
		padding-top: 48px !important;
	}
	.pb-sm-7 {
		padding-bottom: 48px !important;
	}
	.p-sm-7 {
		padding: 48px !important;
	}
	.py-sm-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-8 {
		padding-top: 64px !important;
	}
	.pb-sm-8 {
		padding-bottom: 64px !important;
	}
	.p-sm-8 {
		padding: 64px !important;
	}
	.py-sm-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-9 {
		padding-top: 80px !important;
	}
	.pb-sm-9 {
		padding-bottom: 80px !important;
	}
	.p-sm-9 {
		padding: 80px !important;
	}
	.py-sm-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-10 {
		padding-top: 96px !important;
	}
	.pb-sm-10 {
		padding-bottom: 96px !important;
	}
	.p-sm-10 {
		padding: 96px !important;
	}
	.py-sm-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-11 {
		padding-top: 112px !important;
	}
	.pb-sm-11 {
		padding-bottom: 112px !important;
	}
	.p-sm-11 {
		padding: 112px !important;
	}
	.py-sm-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 480px) {
	.pt-sm-12 {
		padding-top: 128px !important;
	}
	.pb-sm-12 {
		padding-bottom: 128px !important;
	}
	.p-sm-12 {
		padding: 128px !important;
	}
	.py-sm-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-7 {
		padding-top: 48px !important;
	}
	.pb-md-7 {
		padding-bottom: 48px !important;
	}
	.p-md-7 {
		padding: 48px !important;
	}
	.py-md-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-8 {
		padding-top: 64px !important;
	}
	.pb-md-8 {
		padding-bottom: 64px !important;
	}
	.p-md-8 {
		padding: 64px !important;
	}
	.py-md-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-9 {
		padding-top: 80px !important;
	}
	.pb-md-9 {
		padding-bottom: 80px !important;
	}
	.p-md-9 {
		padding: 80px !important;
	}
	.py-md-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-10 {
		padding-top: 96px !important;
	}
	.pb-md-10 {
		padding-bottom: 96px !important;
	}
	.p-md-10 {
		padding: 96px !important;
	}
	.py-md-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-11 {
		padding-top: 112px !important;
	}
	.pb-md-11 {
		padding-bottom: 112px !important;
	}
	.p-md-11 {
		padding: 112px !important;
	}
	.py-md-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 768px) {
	.pt-md-12 {
		padding-top: 128px !important;
	}
	.pb-md-12 {
		padding-bottom: 128px !important;
	}
	.p-md-12 {
		padding: 128px !important;
	}
	.py-md-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-7 {
		padding-top: 48px !important;
	}
	.pb-lg-7 {
		padding-bottom: 48px !important;
	}
	.p-lg-7 {
		padding: 48px !important;
	}
	.py-lg-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-8 {
		padding-top: 64px !important;
	}
	.pb-lg-8 {
		padding-bottom: 64px !important;
	}
	.p-lg-8 {
		padding: 64px !important;
	}
	.py-lg-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-9 {
		padding-top: 80px !important;
	}
	.pb-lg-9 {
		padding-bottom: 80px !important;
	}
	.p-lg-9 {
		padding: 80px !important;
	}
	.py-lg-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-10 {
		padding-top: 96px !important;
	}
	.pb-lg-10 {
		padding-bottom: 96px !important;
	}
	.p-lg-10 {
		padding: 96px !important;
	}
	.py-lg-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-11 {
		padding-top: 112px !important;
	}
	.pb-lg-11 {
		padding-bottom: 112px !important;
	}
	.p-lg-11 {
		padding: 112px !important;
	}
	.py-lg-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1024px) {
	.pt-lg-12 {
		padding-top: 128px !important;
	}
	.pb-lg-12 {
		padding-bottom: 128px !important;
	}
	.p-lg-12 {
		padding: 128px !important;
	}
	.py-lg-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-7 {
		padding-top: 48px !important;
	}
	.pb-xl-7 {
		padding-bottom: 48px !important;
	}
	.p-xl-7 {
		padding: 48px !important;
	}
	.py-xl-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-8 {
		padding-top: 64px !important;
	}
	.pb-xl-8 {
		padding-bottom: 64px !important;
	}
	.p-xl-8 {
		padding: 64px !important;
	}
	.py-xl-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-9 {
		padding-top: 80px !important;
	}
	.pb-xl-9 {
		padding-bottom: 80px !important;
	}
	.p-xl-9 {
		padding: 80px !important;
	}
	.py-xl-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-10 {
		padding-top: 96px !important;
	}
	.pb-xl-10 {
		padding-bottom: 96px !important;
	}
	.p-xl-10 {
		padding: 96px !important;
	}
	.py-xl-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-11 {
		padding-top: 112px !important;
	}
	.pb-xl-11 {
		padding-bottom: 112px !important;
	}
	.p-xl-11 {
		padding: 112px !important;
	}
	.py-xl-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1280px) {
	.pt-xl-12 {
		padding-top: 128px !important;
	}
	.pb-xl-12 {
		padding-bottom: 128px !important;
	}
	.p-xl-12 {
		padding: 128px !important;
	}
	.py-xl-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-7 {
		padding-top: 48px !important;
	}
	.pb-xl-wide-7 {
		padding-bottom: 48px !important;
	}
	.p-xl-wide-7 {
		padding: 48px !important;
	}
	.py-xl-wide-7 {
		padding-top: 48px !important;
		padding-bottom: 48px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-8 {
		padding-top: 64px !important;
	}
	.pb-xl-wide-8 {
		padding-bottom: 64px !important;
	}
	.p-xl-wide-8 {
		padding: 64px !important;
	}
	.py-xl-wide-8 {
		padding-top: 64px !important;
		padding-bottom: 64px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-9 {
		padding-top: 80px !important;
	}
	.pb-xl-wide-9 {
		padding-bottom: 80px !important;
	}
	.p-xl-wide-9 {
		padding: 80px !important;
	}
	.py-xl-wide-9 {
		padding-top: 80px !important;
		padding-bottom: 80px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-10 {
		padding-top: 96px !important;
	}
	.pb-xl-wide-10 {
		padding-bottom: 96px !important;
	}
	.p-xl-wide-10 {
		padding: 96px !important;
	}
	.py-xl-wide-10 {
		padding-top: 96px !important;
		padding-bottom: 96px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-11 {
		padding-top: 112px !important;
	}
	.pb-xl-wide-11 {
		padding-bottom: 112px !important;
	}
	.p-xl-wide-11 {
		padding: 112px !important;
	}
	.py-xl-wide-11 {
		padding-top: 112px !important;
		padding-bottom: 112px !important;
	}
}
@media only screen and (min-width: 1440px) {
	.pt-xl-wide-12 {
		padding-top: 128px !important;
	}
	.pb-xl-wide-12 {
		padding-bottom: 128px !important;
	}
	.p-xl-wide-12 {
		padding: 128px !important;
	}
	.py-xl-wide-12 {
		padding-top: 128px !important;
		padding-bottom: 128px !important;
	}
}
.slide-tabs {
	height: calc(auto + 10px);
}
.slide-tabs-nav {
	position: relative;
	z-index: 1;
	border-radius: 30px;
	padding: 12px 24px 8px;
}
.slide-tabs-nav__item {
	margin: 0 24px 7px 0;
	display: inline-block;
	font-size: 14px;
}
.slide-tabs-nav__item:last-child {
	margin-right: 0;
}
.slide-tabs-nav__item.active .slide-tabs-nav__link {
	color: #e94e19;
}
.slide-tabs-nav__link {
	color: #505052;
	text-decoration: none;
	-webkit-transition: ease-in-out 0.2s;
	-o-transition: ease-in-out 0.2s;
	transition: ease-in-out 0.2s;
	border: none;
	outline: 0;
	font: inherit;
	background: 0 0;
	padding: 0;
	cursor: pointer;
}
.slide-tabs-nav__drag {
	margin-right: 24px;
	position: absolute;
	bottom: 0;
	border-bottom: 2px solid #e94e19;
	-webkit-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	transition-duration: 0.25s;
}
.slide-tabs-nav__drag.active {
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
.slide-tabs-content-wrap {
	margin-top: 24px;
	position: relative;
	overflow: hidden;
}
.slide-tab-content {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
.slide-tab-content.active {
	position: relative;
	opacity: 1;
}
.slide-tab-content.slide {
	display: none;
	opacity: 1;
	-webkit-animation-duration: 0.4s;
	animation-duration: 0.4s;
}
.slide-tab-content.slide.active {
	display: block;
}
.slide-tab-content.slide.moved {
	display: block;
	opacity: 0;
}
@-webkit-keyframes slideIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		opacity: 0;
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
@keyframes slideIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		opacity: 0;
		visibility: visible;
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}
.slideIn {
	-webkit-animation-name: slideIn;
	animation-name: slideIn;
	opacity: 1;
}
@-webkit-keyframes slideOut {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(40%, 0, 0);
		transform: translate3d(40%, 0, 0);
		opacity: 0;
	}
}
@keyframes slideOut {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(40%, 0, 0);
		transform: translate3d(40%, 0, 0);
		opacity: 0;
	}
}
.slideOut {
	-webkit-animation-name: slideOut;
	animation-name: slideOut;
	opacity: 1;
}
.tooltipped {
	position: relative;
}
.tooltipped:after {
	position: absolute;
	z-index: 1000000;
	display: none;
	padding: 4px 8px;
	font-size: 12px;
	-webkit-font-smoothing: subpixel-antialiased;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: break-word;
	white-space: pre;
	pointer-events: none;
	content: attr(data-title);
	background: #262628;
	border-radius: 4px;
	opacity: 0;
}
.tooltipped:before {
	position: absolute;
	z-index: 1000001;
	display: none;
	width: 0;
	height: 0;
	color: #262628;
	pointer-events: none;
	content: '';
	border: 6px solid transparent;
	opacity: 0;
}
@-webkit-keyframes tooltip-appear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes tooltip-appear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.tooltipped:active:after,
.tooltipped:active:before,
.tooltipped:focus:after,
.tooltipped:focus:before,
.tooltipped:hover:after,
.tooltipped:hover:before {
	display: inline-block;
	text-decoration: none;
	-webkit-animation-name: tooltip-appear;
	animation-name: tooltip-appear;
	-webkit-animation-duration: 0.1s;
	animation-duration: 0.1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.tooltipped-multiline:active:after,
.tooltipped-multiline:focus:after,
.tooltipped-multiline:hover:after {
	display: table-cell;
	text-align: left;
}
.tooltipped-b:after,
.tooltipped-bl:after,
.tooltipped-br:after {
	top: 100%;
	right: 50%;
	margin-top: 6px;
}
.tooltipped-b:before,
.tooltipped-bl:before,
.tooltipped-br:before {
	top: auto;
	right: 50%;
	bottom: -7px;
	margin-right: -6px;
	border-bottom-color: #262628;
}
.tooltipped-bl:after {
	right: auto;
	left: 50%;
	margin-left: -16px;
}
.tooltipped-br:after {
	margin-right: -16px;
}
.tooltipped-t:after,
.tooltipped-tl:after,
.tooltipped-tr:after {
	right: 50%;
	bottom: 100%;
	margin-bottom: 6px;
}
.tooltipped-t:before,
.tooltipped-tl:before,
.tooltipped-tr:before {
	top: -7px;
	right: 50%;
	bottom: auto;
	margin-right: -6px;
	border-top-color: #262628;
}
.tooltipped-tl:after {
	right: auto;
	left: 50%;
	margin-left: -16px;
}
.tooltipped-tr:after {
	margin-right: -16px;
}
.tooltipped-b:after,
.tooltipped-t:after {
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
}
.tooltipped-align-right:after {
	right: 0;
	margin-right: 0;
}
.tooltipped-align-right:before {
	right: 10px;
}
.tooltipped-align-left:after {
	left: 0;
	margin-left: 0;
}
.tooltipped-align-left:before {
	left: 5px;
}
.tooltipped-multiline:after {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	max-width: 250px;
	word-wrap: break-word;
	white-space: pre-line;
	border-collapse: separate;
}
.tooltipped-multiline.tooltipped-b:after,
.tooltipped-multiline.tooltipped-t:after {
	right: auto;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media screen and (min-width: 0\0) {
	.tooltipped-multiline:after {
		width: 250px;
	}
}
.tooltip-red:after {
	color: #fff;
	background: #be0a32;
}
.tooltip-red.tooltipped-b:before,
.tooltip-red.tooltipped-bl:before,
.tooltip-red.tooltipped-br:before {
	border-bottom-color: #be0a32;
}
.tooltip-red.tooltipped-t:before,
.tooltip-red.tooltipped-tl:before,
.tooltip-red.tooltipped-tr:before {
	border-top-color: #be0a32;
}
.accordion-wrap a,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
right-section .accordion-wrap a {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	color: #262628;
}
.h0 {
	font-size: 32px;
	letter-spacing: -0.5px;
}
@media only screen and (min-width: 768px) {
	.h0 {
		font-size: 40px;
	}
}
.h1,
h1 {
	font-size: 26px;
	letter-spacing: -0.4px;
}
@media only screen and (min-width: 768px) {
	.h1,
	h1 {
		font-size: 32px;
	}
}
.accordion-wrap a,
.h2,
h2 {
	font-size: 22px;
	letter-spacing: -0.3px;
}
@media only screen and (min-width: 768px) {
	.accordion-wrap a,
	.h2,
	h2 {
		font-size: 24px;
	}
}
.h3,
h3,
right-section .accordion-wrap a {
	font-size: 18px;
	letter-spacing: -0.2px;
}
@media only screen and (min-width: 768px) {
	.h3,
	h3,
	right-section .accordion-wrap a {
		font-size: 20px;
	}
}
.h4,
h4 {
	font-size: 16px;
}
.h5,
h5 {
	font-size: 14px;
}
.h6,
h6 {
	font-size: 12px;
}
#typography-style figcaption,
.custom-control--box,
.f0,
.f1,
.f2,
.f3,
.f4,
.f5,
.f6,
.grid-item p,
.header__wrap--menu.move-box,
.wood-sample--item .bg-img-content-wrap span {
	font-weight: 300;
	color: #262628;
}
.f0 {
	font-size: 32px;
	letter-spacing: -0.5px;
}
@media only screen and (min-width: 768px) {
	.f0 {
		font-size: 40px;
	}
}
.f1 {
	font-size: 26px;
	letter-spacing: -0.4px;
}
@media only screen and (min-width: 768px) {
	.f1 {
		font-size: 32px;
	}
}
.f2 {
	font-size: 22px;
	letter-spacing: -0.3px;
}
@media only screen and (min-width: 768px) {
	.f2 {
		font-size: 24px;
	}
}
.f3 {
	font-size: 18px;
	letter-spacing: -0.2px;
}
@media only screen and (min-width: 768px) {
	.f3 {
		font-size: 20px;
	}
}
.f4,
.header__wrap--menu.move-box {
	font-size: 16px;
}
.custom-control--box,
.f5,
.grid-item p {
	font-size: 14px;
}
#typography-style figcaption,
.f6,
.wood-sample--item .bg-img-content-wrap span {
	font-size: 12px;
}
.text-small {
	font-size: 12px !important;
}
.text-left {
	text-align: left;
}
@media only screen and (min-width: 768px) {
	.text-center {
		text-align: center;
	}
}
.text-uppercase {
	text-transform: uppercase;
}
#typography-style blockquote,
.lead {
	font-size: 20px;
	font-weight: 500;
}
.list-style-none {
	list-style: none !important;
}
.alt-h0 {
	line-height: 1.2;
	font-size: 54px;
	font-weight: 200;
	letter-spacing: -0.5px;
}
@media only screen and (min-width: 768px) {
	.alt-h0 {
		font-size: 72px;
	}
}
.alt-h1 {
	font-size: 36px;
	font-weight: 200;
	letter-spacing: -0.5px;
}
@media only screen and (min-width: 768px) {
	.alt-h1 {
		font-size: 48px;
	}
}
@media only screen and (min-width: 1024px) {
	.alt-h1 {
		font-size: 54px;
	}
}
.alt-h2 {
	font-size: 28px;
	font-weight: 300;
	letter-spacing: -0.5px;
}
@media only screen and (min-width: 768px) {
	.alt-h2 {
		font-size: 34px;
	}
}
@media only screen and (min-width: 1024px) {
	.alt-h2 {
		font-size: 38px;
	}
}
.alt-h3 {
	font-size: 18px;
	font-weight: 300;
}
@media only screen and (min-width: 768px) {
	.alt-h3 {
		font-size: 20px;
	}
}
@media only screen and (min-width: 1024px) {
	.alt-h3 {
		font-size: 22px;
	}
}
.alt-lead {
	font-size: 21px;
	font-weight: 300;
}
@media only screen and (min-width: 768px) {
	.alt-lead {
		font-size: 24px;
	}
}
@media only screen and (min-width: 1024px) {
	.alt-lead {
		font-size: 26px;
	}
}
.underlineTab,
.wpml-ls-statics-shortcode_actions ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-bottom: 1px #dcdee0 solid;
	margin-bottom: 0;
}
.wpml-ls-statics-shortcode_actions ul {
	list-style: none;
}
.wpml-ls-statics-shortcode_actions .wpml-ls-item {
	padding: 8px;
}
.wpml-ls-statics-shortcode_actions .wpml-ls-item a {
	color: #262628;
}
.wpml-ls-statics-shortcode_actions .wpml-ls-item a:hover {
	text-decoration: none;
}
.wpml-ls-statics-shortcode_actions .wpml-ls-item.wpml-ls-current-language a {
	color: #e94e19;
}
.underlineTab-item,
.wpml-ls-item {
	z-index: 5;
	padding: 8px 16px;
	margin-right: 8px;
	margin-bottom: -3px;
	color: #262628;
	text-align: center;
	border-bottom: 3px solid transparent;
}
@media only screen and (min-width: 480px) {
	.underlineTab-item,
	.wpml-ls-item {
		margin-right: 16px;
	}
}
.underlineTab-item:last-child,
.wpml-ls-item:last-child {
	margin-right: 0;
}
.underlineTab-item:focus,
.underlineTab-item:hover,
.wpml-ls-item:focus,
.wpml-ls-item:hover {
	color: #e94e19;
	text-decoration: none;
	border-bottom-color: rgba(35, 120, 15, 0.2);
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}
.underlineTab-item.selected,
.underlineTab-item.wpml-ls-current-language,
.wpml-ls-item.selected,
.wpml-ls-item.wpml-ls-current-language {
	font-weight: 600;
	color: #e94e19;
	border-bottom-color: #e94e19;
}
.underlineTab-item.disabled,
.wpml-ls-item.disabled {
	color: #bec0c2;
	border: none;
}
.underlineTab--no-border,
.wpml-ls-statics-shortcode_actions ul {
	border-bottom: none;
}
.underlineTab--center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.underlineTab--right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.underlineTab--white {
	border-bottom-color: rgba(255, 255, 255, 0.2);
}
.underlineTab--white .underlineTab-item {
	color: rgba(255, 255, 255, 0.5);
}
.underlineTab--white .underlineTab-item:focus,
.underlineTab--white .underlineTab-item:hover {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	border-bottom-color: rgba(255, 255, 255, 0.5);
}
.underlineTab--white .underlineTab-item.selected {
	color: #fff;
	border-bottom-color: #fff;
}
.tabNav {
	margin-top: 0;
	margin-bottom: 15px;
	-webkit-box-shadow: inset 0 -1px 0 0 #dcdee0;
	box-shadow: inset 0 -1px 0 0 #dcdee0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.tabNav-tab {
	display: inline-block;
	padding: 8px 16px;
	font-size: 14px;
	color: #767678;
	text-decoration: none;
	background: #f5f5f5;
	-webkit-box-shadow: inset 0 -1px 0 0 #dcdee0;
	box-shadow: inset 0 -1px 0 0 #dcdee0;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}
.tabNav-tab:first-child {
	margin-left: 0;
}
.tabNav-tab.selected {
	color: #262628;
	background-color: #fff;
	-webkit-box-shadow: 0 -3px 0 0 #1e1e23, inset 1px 0 0 0 #dcdee0, inset -1px 0 0 0 #dcdee0, inset 0 -1px 0 0 #fff;
	box-shadow: 0 -3px 0 0 #1e1e23, inset 1px 0 0 0 #dcdee0, inset -1px 0 0 0 #dcdee0, inset 0 -1px 0 0 #fff;
}
.tabNav-tab.selected:focus,
.tabNav-tab.selected:hover {
	background-color: #fff;
}
.tabNav-tab:focus,
.tabNav-tab:hover {
	color: #505052;
	background-color: #dcdee0;
	text-decoration: none;
}
.tabNav-step {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
@media only screen and (min-width: 768px) {
	.tabNav-step {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.tabNav-step .tabNav-tab {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	color: #262628;
	font-weight: 600;
	-webkit-box-shadow: inset 0 -1px 0 0 #dcdee0, 0 -1px 0 0 #dcdee0, -1px 0 0 0 #dcdee0, 1px 0 0 0 #dcdee0;
	box-shadow: inset 0 -1px 0 0 #dcdee0, 0 -1px 0 0 #dcdee0, -1px 0 0 0 #dcdee0, 1px 0 0 0 #dcdee0;
}
.tabNav-step .tabNav-tab:focus,
.tabNav-step .tabNav-tab:hover {
	background-color: #fff;
}
.tabNav-step .tabNav-tab:after {
	content: '';
	position: absolute;
	right: 16px;
	background: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' width='16' height='16' fill='%23959da5' xml:space='preserve'%3E%3Cpath d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm4 7h-1v1h-1v1H9v1H8v1H7v1H6v-1H5v-1H4V9h1V8h1v1h1V8h1V7h1V6h1V5h1v1h1v1z'/%3E%3C/svg%3E")
		no-repeat;
	width: 16px;
	height: 16px;
}
.tabNav-step .tabNav-tab.selected:after,
.tabNav-step .tabNav-tab.selected ~ :after {
	background: 0 0;
	font-weight: 300;
}
.tabNav-step .tabNav-tab.selected {
	color: #262628;
	-webkit-box-shadow: 0 -3px 0 0 #e94e19, -1px 0 0 0 #dcdee0, 1px 0 0 0 #dcdee0;
	box-shadow: 0 -3px 0 0 #e94e19, -1px 0 0 0 #dcdee0, 1px 0 0 0 #dcdee0;
}
@media only screen and (min-width: 768px) {
	.tabNav-step .tabNav-tab.selected {
		-webkit-box-shadow: 0 -3px 0 0 #e94e19, inset 1px 0 0 0 #dcdee0;
		box-shadow: 0 -3px 0 0 #e94e19, inset 1px 0 0 0 #dcdee0;
	}
}
.tabNav-step .tabNav-tab.selected:focus,
.tabNav-step .tabNav-tab.selected:hover {
	background-color: #fff;
}
.tabNav-step .tabNav-tab.selected ~ .tabNav-tab {
	color: #505052;
	font-weight: 300;
}
.header {
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 0 0;
	-webkit-box-shadow: 0 1px 3px -1px rgba(30, 30, 35, 0.4);
	box-shadow: 0 1px 3px -1px rgba(30, 30, 35, 0.4);
	-webkit-transition: all 0.4s ease-in-out 0s, -webkit-transform 0.3s ease-in 0.1s;
	transition: all 0.4s ease-in-out 0s, -webkit-transform 0.3s ease-in 0.1s;
	-o-transition: all 0.4s ease-in-out 0s, transform 0.3s ease-in 0.1s;
	transition: all 0.4s ease-in-out 0s, transform 0.3s ease-in 0.1s;
	transition: all 0.4s ease-in-out 0s, transform 0.3s ease-in 0.1s, -webkit-transform 0.3s ease-in 0.1s;
	height: 88px;
}
@media only screen and (max-width: 768px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
	}
	.header.scroll-up {
		-webkit-transform: translateY(-35px);
		-ms-transform: translateY(-35px);
		transform: translateY(-35px);
	}
}
.header__wrap {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media only screen and (min-width: 768px) {
	.header__wrap {
		padding: 16px 0;
	}
}
.header__wrap--logo {
	height: 55px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.header__wrap--logo svg {
	width: 126px;
	height: 34px;
}
@media only screen and (min-width: 768px) {
	.header__wrap--logo svg {
		width: 149.301px;
		height: 40px;
	}
}
.header__wrap--menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-flow: column-reverse;
	flex-flow: column-reverse;
	padding: 40px 24px 0;
}
.header__wrap--menu li {
	display: block;
	padding: 0 0 16px;
	border-bottom: 1px solid rgba(30, 30, 35, 0.2);
	font-weight: 600;
	-webkit-transition-delay: 0.8s;
	-o-transition-delay: 0.8s;
	transition-delay: 0.8s;
	line-height: 1;
}
.header__wrap--menu a {
	color: #262628;
}
.header.menu--opened {
	height: 100%;
	background: #fff;
	-webkit-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
}
.header.menu--opened .header__wrap--menu li {
	margin-top: 16px;
	-webkit-transition: opacity 0.2s ease, margin-top 0.4s;
	-o-transition: opacity 0.2s ease, margin-top 0.4s;
	transition: opacity 0.2s ease, margin-top 0.4s;
}
.header.menu--opened .header__wrap--menu li:nth-child(1) {
	-webkit-transition-delay: 0.22s;
	-o-transition-delay: 0.22s;
	transition-delay: 0.22s;
}
.header.menu--opened .header__wrap--menu li:nth-child(2) {
	-webkit-transition-delay: 0.24s;
	-o-transition-delay: 0.24s;
	transition-delay: 0.24s;
}
.header.menu--opened .header__wrap--menu li:nth-child(3) {
	-webkit-transition-delay: 0.26s;
	-o-transition-delay: 0.26s;
	transition-delay: 0.26s;
}
.header.menu--opened .header__wrap--menu li:nth-child(4) {
	-webkit-transition-delay: 0.28s;
	-o-transition-delay: 0.28s;
	transition-delay: 0.28s;
}
.header.menu--opened .header__wrap--menu li:nth-child(5) {
	-webkit-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.header.menu--opened .header__wrap--menu li:nth-child(6) {
	-webkit-transition-delay: 0.32s;
	-o-transition-delay: 0.32s;
	transition-delay: 0.32s;
}
.header.menu--opened .header__wrap--menu li:nth-child(7) {
	-webkit-transition-delay: 0.34s;
	-o-transition-delay: 0.34s;
	transition-delay: 0.34s;
}
.header.menu--opened .header__wrap--menu li a {
	display: block;
}
@media only screen and (min-width: 768px) {
	.header {
		overflow: visible;
		height: auto;
		padding: 0 0;
		background: #fff;
	}
	.header__wrap {
		width: 100%;
		margin: 0 auto;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header__wrap--logo {
		height: auto;
		margin-right: 32px;
	}
	.header__wrap--menu {
		height: auto;
		padding: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header__wrap--menu.move-box {
		font-size: 12px;
	}
	.header__wrap--menu li {
		display: inline-block;
		border-bottom: none;
		padding: 0;
		margin-left: 16px;
		-webkit-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all 0.5s ease;
		display: inline-block;
	}
	.header__wrap--menu a {
		text-decoration: none;
		-webkit-transition: border 0.2s ease-out;
		-o-transition: border 0.2s ease-out;
		transition: border 0.2s ease-out;
		color: #262628;
	}
	.header__wrap--menu a:hover {
		color: #e94e19;
	}
	.header .hamburger {
		display: none;
	}
}
.header-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	border-bottom: 1px #dcdee0 solid;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
	.header-top {
		margin-bottom: 0;
	}
}
.header-top .underlineTab .underlineTab-item {
	padding: 8px;
}
.move-box {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row;
	flex-flow: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
@media only screen and (min-width: 768px) {
	.move-box {
		padding-top: 8px;
	}
}
.move-box li {
	margin-right: 16px;
	margin-left: 0;
	border-bottom: none;
	padding: 0;
}
.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.footer-nav .footer-nav-item {
	width: 100%;
	padding-bottom: 16px;
}
@media only screen and (min-width: 480px) {
	.footer-nav .footer-nav-item {
		width: calc(100% / 2);
		padding-right: 16px;
	}
}
@media only screen and (min-width: 1024px) {
	.footer-nav .footer-nav-item {
		width: calc(100% / 3);
	}
}
@media only screen and (min-width: 1280px) {
	.footer-nav .footer-nav-item {
		width: calc(100% / 4);
	}
}
.footer-nav .footer-nav-item ul {
	line-height: 1.6;
}
.social-icon {
	width: 40px;
	height: 40px;
}
.footer-img {
	width: 125px;
	height: 150px;
}
@media only screen and (min-width: 768px) {
	.folder-download {
		min-width: 360px;
	}
}
.folder-download .footer-content {
	width: calc(100% - 125px);
}
#detect-IE {
	width: 100%;
	max-width: 660px;
	margin: 0 auto;
}
@media only screen and (max-width: 768px) {
	#container {
		margin-top: 88px;
	}
}
.aos {
	opacity: 0;
}
.h-100 {
	height: 100%;
}
.h-auto {
	height: auto !important;
}
.w-100 {
	width: 100%;
}
.pl-md-12 {
	padding: 0 12px;
}
.ml-md-12 {
	margin: 0 12px;
}
img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.wrap--padding {
	padding: 0 16px;
}
@media only screen and (min-width: 768px) {
	.wrap--padding {
		padding: 0 24px;
	}
}
.wrap--margin {
	margin: 0 16px;
}
@media only screen and (min-width: 768px) {
	.wrap--margin {
		margin: 0 24px;
	}
}
.wrap--padding-mob {
	padding: 0 16px;
}
@media only screen and (min-width: 768px) {
	.wrap--padding-mob {
		padding: 0 24px;
	}
}
@media only screen and (min-width: 1440px) {
	.wrap--padding-mob {
		padding: 0;
	}
}
.in-movie {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.in-movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
a:last-child span.comma {
	display: none;
}
.filter-item-count {
	position: absolute;
	right: 0;
}
.eu-log {
	max-height: 40px;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.eu-log--home {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	justify-items: start;
}
.eu-log--home img {
	max-height: 40px;
	max-width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	width: auto;
}
#footerContact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.landing-page-jgrag {
	position: relative;
	width: 100%;
}
.landing-page-jgrag .two-column {
	display: grid;
}
@media only screen and (min-width: 768px) {
	.landing-page-jgrag .two-column {
		grid-template-columns: 20% 70%;
		grid-gap: 5%;
	}
}
.landing-page-jgrag .four-column {
	display: grid;
}
@media only screen and (min-width: 768px) {
	.landing-page-jgrag .four-column {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px;
	}
}
@media only screen and (min-width: 1024px) {
	.landing-page-jgrag .four-column {
		grid-template-columns: repeat(4, 1fr);
	}
}
.landing-page-jgrag .four-column .column-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.landing-page-jgrag .four-column .column-item .number {
	width: 150px;
	height: 150px;
	border-radius: 100%;
	border: 1px solid #f0c882;
	padding-bottom: 8px;
}
.landing-page-jgrag .four-column .column-item .number.no-border {
	border: none;
}
.landing-page-jgrag .column-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.landing-page-jgrag .column-left img {
	width: 50%;
}
@media only screen and (min-width: 768px) {
	.landing-page-jgrag .column-left img {
		width: 80%;
	}
}
.landing-page-jgrag img {
	-o-object-fit: contain;
	object-fit: contain;
}
.landing-page-jgrag .jgraf-gray-bg {
	background: #262626;
}
.landing-page-jgrag .jgraf-gray-text {
	color: #262626;
}
.landing-page-jgrag .jgraf-gold-bg {
	background: #f0c882;
}
.landing-page-jgrag .jgraf-gold-text {
	color: #f0c882;
}
.landing-page-jgrag #slick-full-width img {
	-o-object-fit: cover;
	object-fit: cover;
}
.landing-page-jgrag #slick-full-width .slide-wrap {
	height: 250px !important;
}
@media only screen and (min-width: 768px) {
	.landing-page-jgrag #slick-full-width .slide-wrap {
		height: 750px !important;
	}
}
.wpcf7-form-control-wrap:not(.checkbox-251) p {
	color: #fff !important;
}
.wpcf7-form label {
	color: #fff !important;
}
.wpcf7-form p {
	margin-bottom: 20px;
}
.wpcf7-submit {
	margin-top: 20px;
}
.wpcf7-list-item-label {
	margin-left: 10px;
	margin-right: 10px;
}
#map {
	height: 400px;
	position: relative;
	top: -124px;
}
@media only screen and (min-width: 768px) {
	#map {
		height: 100%;
		width: 100%;
		position: absolute;
		top: 0;
	}
}
.bg-img-wrap,
.bg-img-wrap--block {
	position: relative;
	width: 100%;
}
.bg-img-wrap .bg-img,
.bg-img-wrap--block .bg-img {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.bg-img-wrap .bg-img.bg-layer:after,
.bg-img-wrap--block .bg-img.bg-layer:after {
	content: '';
	position: absolute;
	top: 0;
	background: rgba(30, 30, 35, 0.25);
	width: 100%;
	height: 100%;
}
.bg-img-wrap .bg-img.top-gradient:after,
.bg-img-wrap--block .bg-img.top-gradient:after {
	content: '';
	position: absolute;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-200%, #1e1e23), to(rgba(30, 30, 35, 0)));
	background: -o-linear-gradient(top, #1e1e23 -200%, rgba(30, 30, 35, 0) 100%);
	background: linear-gradient(180deg, #1e1e23 -200%, rgba(30, 30, 35, 0) 100%);
	width: 100%;
	height: 40%;
}
.bg-img-wrap .bg-img-content-wrap,
.bg-img-wrap--block .bg-img-content-wrap {
	z-index: 2;
}
.bg-img-wrap .bg-img-content-wrap.h-20,
.bg-img-wrap--block .bg-img-content-wrap.h-20 {
	height: 20%;
}
.bg-img-wrap .bg-img-content-wrap.h-20 a,
.bg-img-wrap--block .bg-img-content-wrap.h-20 a {
	color: #fff;
}
.bg-img-wrap .bg-img-content-wrap.h-20 li,
.bg-img-wrap--block .bg-img-content-wrap.h-20 li {
	color: rgba(255, 255, 255, 0.5);
}
.bg-img-wrap .bg-img-content-wrap.h-100 span,
.bg-img-wrap--block .bg-img-content-wrap.h-100 span {
	height: calc(100% - 40px);
}
.bg-img-wrap--block {
	height: auto;
}
@media only screen and (max-width: 768px) {
	.bg-img-wrap--block {
		padding: 0;
	}
}
@media only screen and (min-width: 768px) {
	.bg-img-wrap--block {
		height: 550px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.bg-img-wrap--block .bg-img img {
		height: 50vh;
	}
}
@media only screen and (min-width: 768px) {
	.bg-img-wrap--block .bg-img {
		position: absolute;
	}
}
@media only screen and (min-width: 768px) {
	.bg-img-wrap--block .bg-img-content-wrap span {
		background: rgba(255, 255, 255, 0.9);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}
.bg-img-wrap {
	height: 50vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media only screen and (min-width: 768px) {
	.bg-img-wrap {
		height: 550px;
	}
}
.bg-img-wrap .bg-img {
	position: absolute;
}
.hero-slider .slide-wrap {
	height: 65vh !important;
}
@media only screen and (min-width: 768px) {
	.hero-slider .slide-wrap {
		height: calc(100vh - 122px) !important;
	}
}
.hero-slider .slide-wrap .slide-content {
	z-index: 2;
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-bottom: 64px;
}
.hero-slider .slide-wrap .slide-content * {
	color: #fff;
}
#slick-home {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#slick-home .slick-track {
	height: 100%;
}
@media only screen and (min-width: 768px) {
	#slick-home .slide-wrap {
		height: 100% !important;
	}
}
#slick-home .slide-wrap .slide-content {
	-ms-flex-item-align: end;
	align-self: flex-end;
	margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
	.green-wrap {
		padding-left: calc((100% - 1440px) / 2 - 24px);
	}
}
.icon-section .icon-section--item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: calc(100% / 2);
	padding: 16px 0;
	margin-bottom: 24px;
	border-right: 1px #dcdee0 solid;
}
.icon-section .icon-section--item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}
.icon-section .icon-section--item a:hover {
	text-decoration: none;
}
.icon-section .icon-section--item.select h5,
.icon-section .icon-section--item.select svg {
	color: #e94e19;
}
.icon-section .icon-section--item:hover svg {
	-webkit-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
	color: #e94e19;
}
.icon-section .icon-section--item:hover h5 {
	color: #e94e19;
	-webkit-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
}
.icon-section .icon-section--item h5 {
	padding: 0 12px;
	-ms-flex-item-align: start;
	align-self: flex-start;
	width: 100%;
}
.icon-section .icon-section--item:nth-child(2n + 1) h5 {
	padding-left: 0;
}
@media only screen and (min-width: 768px) {
	.icon-section .icon-section--item:nth-child(2n + 1) h5 {
		padding-left: 12px;
	}
	.icon-section .icon-section--item:nth-child(3n + 1) h5 {
		padding-left: 0;
	}
}
.icon-section .icon-section--item:nth-child(2n) {
	border: none;
}
@media only screen and (min-width: 768px) {
	.icon-section .icon-section--item {
		max-width: calc(100% / 3);
	}
	.icon-section .icon-section--item:nth-child(2n) {
		border-right: 1px #dcdee0 solid;
	}
	.icon-section .icon-section--item:nth-child(3n) {
		border-right: none;
	}
}
.news-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 24px;
	min-height: 200px;
}
.news-section .news-section--item {
	width: 100%;
	height: 100%;
	padding-bottom: 16px;
}
.news-section .news-section--item a:hover {
	text-decoration: underline;
}
@media only screen and (min-width: 480px) {
	.news-section .news-section--item {
		width: calc(100% / 2);
		padding-right: 16px;
	}
	.news-section .news-section--item:nth-child(2n) {
		padding-right: 0;
	}
}
@media only screen and (min-width: 1024px) {
	.news-section .news-section--item {
		width: calc(100% / 3);
	}
	.news-section .news-section--item:nth-child(2n) {
		padding-right: 16px;
	}
	.news-section .news-section--item:nth-child(3n) {
		padding-right: 0;
	}
}
.two-column-section .bg-img-wrap {
	margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
	.two-column-section .bg-img-wrap:first-child {
		margin-right: 16px;
	}
}
@media only screen and (min-width: 768px) {
	.two-column-section .bg-img-wrap {
		height: 420px;
		width: calc((100% - 16px) / 2);
	}
}
.two-column-section .bg-img-content-wrap a {
	color: inherit;
	text-decoration: none;
}
.two-column-section .bg-img-content-wrap a:hover h2 {
	text-decoration: underline;
}
@media only screen and (min-width: 768px) {
	.two-column-section.square .bg-img-wrap {
		height: 600px;
		width: calc((100% - 16px) / 2);
	}
}
.two-column-section.square .bg-img-content-wrap a:hover {
	text-decoration: underline;
}
.play-icon .svg--play-circle-line {
	color: #fff;
}
.play-icon:hover {
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
	color: #e94e19 !important;
}
.play-icon:hover .svg--play-circle-line {
	color: #e94e19;
	-webkit-transition: color 0.4s;
	-o-transition: color 0.4s;
	transition: color 0.4s;
}
.cat-decs.bg-img-wrap {
	height: 400px;
}
.cat-decs.bg-img-wrap img {
	-o-object-position: right;
	object-position: right;
}
@media only screen and (min-width: 1024px) {
	.cat-decs.bg-img-wrap img {
		-o-object-position: center;
		object-position: center;
	}
}
.sticky {
	position: -webkit-sticky;
	position: sticky;
	top: 88px;
	z-index: 8;
	-webkit-transition: -webkit-transform 0.4s ease-in 0;
	transition: -webkit-transform 0.4s ease-in 0;
	-o-transition: transform 0.4s ease-in 0;
	transition: transform 0.4s ease-in 0;
	transition: transform 0.4s ease-in 0, -webkit-transform 0.4s ease-in 0;
}
@media only screen and (min-width: 768px) {
	.sticky {
		top: 0;
	}
}
.sticky:before {
	content: '';
	position: absolute;
	top: -3px;
	background: #fff;
	width: 100%;
	height: 100%;
}
.sticky .underlineTab-item {
	font-size: 14px;
}
@media only screen and (min-width: 768px) {
	.sticky .underlineTab-item {
		font-size: 16px;
	}
}
.sticky.scroll-up {
	-webkit-transition: -webkit-transform 0.3s ease-in 0.2s;
	transition: -webkit-transform 0.3s ease-in 0.2s;
	-o-transition: transform 0.3s ease-in 0.2s;
	transition: transform 0.3s ease-in 0.2s;
	transition: transform 0.3s ease-in 0.2s, -webkit-transform 0.3s ease-in 0.2s;
	-webkit-transform: translateY(-35px);
	-ms-transform: translateY(-35px);
	transform: translateY(-35px);
}
@media only screen and (min-width: 768px) {
	.sticky.scroll-up {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}
.menu-scroll-x {
	overflow-x: auto;
}
@media only screen and (min-width: 768px) {
	.menu-scroll-x {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.menu-scroll-x:after {
	content: '';
	position: absolute;
	right: 0;
	z-index: 6;
	background: -webkit-gradient(linear, right top, left top, color-stop(20%, #fff), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(right, #fff 20%, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to left, #fff 20%, rgba(255, 255, 255, 0) 100%);
	width: 10%;
	height: calc(100% - 3px);
}
.menu-scroll-x:before {
	content: '';
	position: absolute;
	bottom: 4px;
	-webkit-box-shadow: 0 1px 0 0 #dcdee0;
	box-shadow: 0 1px 0 0 #dcdee0;
	width: 100%;
	height: 1px;
}
.menu-scroll-x.underlineTab {
	border-bottom: none;
}
.menu-scroll-x .underlineTab-item {
	white-space: nowrap;
	margin-right: 4px;
	margin-top: 1px;
	margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
	.menu-scroll-x .underlineTab-item {
		-webkit-transition: 1s ease;
		-o-transition: 1s ease;
		transition: 1s ease;
	}
	.menu-scroll-x .underlineTab-item.selected {
		-webkit-transition: 1s ease;
		-o-transition: 1s ease;
		transition: 1s ease;
	}
}
@media only screen and (min-width: 768px) {
	.menu-scroll-x .underlineTab-item {
		margin-right: 16px;
	}
}
@media only screen and (min-width: 768px) {
	.sidebar-sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 50px;
	}
}
.sidebar-category-list * {
	list-style: none;
}
.sidebar-category-list a {
	color: inherit;
}
.sidebar-category-list a:hover {
	color: #e94e19;
}
.sidebar-category-list li {
	line-height: 2;
}
.sidebar-category-list li.current-menu-item,
.sidebar-category-list li.selected {
	color: #e94e19;
	font-weight: 700;
}
.sidebar-category-list li.current-menu-item ul li,
.sidebar-category-list li.selected ul li {
	color: #262628;
	font-weight: 400;
}
.sidebar-category-list li ul {
	padding-bottom: 8px;
}
.sidebar-category-list li ul li {
	padding-left: 8px;
}
.sidebar-category-list li ul li.current-menu-item,
.sidebar-category-list li ul li.selected {
	color: #e94e19;
	font-weight: 700;
}
.sidebar-category-list li ul li.current-menu-item ul li,
.sidebar-category-list li ul li.selected ul li {
	color: #262628;
	font-weight: 400;
}
.product-list-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.product-list-wrap aside {
	width: 100%;
	z-index: 10;
}
@media only screen and (min-width: 768px) {
	.product-list-wrap aside {
		width: calc(25% - 16px);
		padding-right: 16px;
	}
}
.product-list-wrap .product-list {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list {
		width: 75%;
	}
}
.product-list-wrap .product-list a {
	display: block;
	color: inherit;
}
.product-list-wrap .product-list a:hover {
	text-decoration: none;
}
.product-list-wrap .product-list a:hover h6 {
	color: #e94e19;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list a:hover .bg-img-wrap {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
	}
}
.product-list-wrap .product-list product-info {
	padding-top: 16px;
	display: block;
}
.product-list-wrap .product-list .product-list--item {
	height: auto;
	margin: 0 12px 48px;
	width: calc(100% - 24px);
	max-width: 100%;
}
.product-list-wrap .product-list .product-list--item .bg-img-wrap {
	height: 40vh;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
@media only screen and (min-width: 480px) {
	.product-list-wrap .product-list .product-list--item .bg-img-wrap {
		height: 200px;
	}
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list .product-list--item .bg-img-wrap {
		height: 250px;
	}
}
@media only screen and (min-width: 1280px) {
	.product-list-wrap .product-list .product-list--item .bg-img-wrap {
		height: 360px;
	}
}
@media only screen and (min-width: 480px) {
	.product-list-wrap .product-list .product-list--item {
		max-width: calc((100% / 2) - 24px);
	}
}
.product-list-wrap .product-list .product-list--item:hover product-info h3 {
	color: #e94e19;
	text-decoration: underline !important;
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list.list-contain a:hover .bg-img-wrap {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	.product-list-wrap .product-list.list-contain a:hover .bg-img-wrap .bg-img {
		overflow: hidden;
	}
	.product-list-wrap .product-list.list-contain a:hover .bg-img-wrap .bg-img img {
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		transition: all 0.5s;
		-webkit-transform: scale(1.4);
		-ms-transform: scale(1.4);
		transform: scale(1.4);
	}
}
.product-list-wrap .product-list.list-contain .product-list--item .bg-img-wrap {
	height: 50vh;
	max-height: 290px;
}
@media only screen and (min-width: 1024px) {
	.product-list-wrap .product-list.list-contain .product-list--item .bg-img-wrap {
		height: 440px;
		max-height: none;
	}
}
.product-list-wrap .product-list.list-contain .product-list--item .bg-img-wrap .bg-img img {
	-o-object-fit: contain;
	object-fit: contain;
}
@media only screen and (min-width: 480px) {
	.product-list-wrap .product-list.list-contain .product-list--item {
		max-width: 100%;
	}
}
.product-list-wrap .product-list.list-contain.list-3-col .product-list--item {
	max-width: calc((100% / 2) - 24px);
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list.list-contain.list-3-col .product-list--item {
		max-width: calc((100% / 3) - 24px);
	}
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list.list-contain.list-col-4 {
		width: 100% !important;
	}
}
@media only screen and (min-width: 1024px) {
	.product-list-wrap .product-list.list-contain.list-col-4 .product-list--item {
		max-width: calc((100% / 4) - 24px);
	}
}
.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item {
	max-width: calc((100vw / 2) - (24px + 14px));
	margin-bottom: 24px;
}
@media only screen and (min-width: 480px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item {
		max-width: calc((100vw / 3) - (24px + 10px));
	}
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item {
		max-width: calc((100% / 4) - 24px);
	}
}
@media only screen and (min-width: 1024px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item {
		max-width: calc((100% / 6) - 24px);
	}
}
.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img-wrap {
	max-height: calc((100vw / 2) - (24px + 14px));
}
@media only screen and (min-width: 480px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img-wrap {
		max-height: calc((100vw / 3) - (24px + 10px));
	}
}
@media only screen and (min-width: 768px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img-wrap {
		max-height: calc((75vw / 4) - 24px);
	}
}
@media only screen and (min-width: 1024px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img-wrap {
		max-height: calc((75vw / 6) - 24px);
	}
}
@media only screen and (min-width: 1280px) {
	.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img-wrap {
		max-height: 156px;
	}
}
.product-list-wrap .product-list.list-contain.list-col-8 .product-list--item .bg-img img {
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
.product-list-wrap .product-list.wrap--padding {
	margin: 0 4px;
	padding: 0;
}
.svg-tooltip {
	margin-bottom: 0;
	margin-top: -1px;
	margin-left: -1px;
}
.product-top-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.product-top-section photo {
	width: 100%;
	display: block;
	padding-bottom: 48px;
}
@media only screen and (min-width: 768px) {
	.product-top-section photo {
		padding-right: 24px;
		padding-bottom: 0;
		width: 50%;
	}
}
@media only screen and (min-width: 1280px) {
	.product-top-section photo {
		width: 40%;
	}
}
.product-top-section right-section {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.product-top-section right-section {
		width: 50%;
	}
}
@media only screen and (min-width: 1280px) {
	.product-top-section right-section {
		width: 60%;
	}
}
@media only screen and (min-width: 1280px) {
	.product-top-section right-section .btn,
	.product-top-section right-section .wpcf7-submit {
		width: 40%;
		-ms-flex-item-align: self-end;
		align-self: self-end;
	}
}
.product-top-section #slick-product-page .slick-arrow {
	opacity: 1;
}
@media only screen and (min-width: 768px) {
	.product-top-section #slick-product-page .slide-wrap {
		height: 650px;
	}
}
.product-top-section #slick-product-page .img-bg img {
	width: auto;
	margin: 0 auto;
}
.product-top-section #slick-product-page .img-bg p {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	background: #fff;
	color: #1e1e23;
	padding: 8px;
}
.product-top-section #slick-product-page img {
	-o-object-fit: contain;
	object-fit: contain;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}
.product-top-section #slick-product-page .slide-wrap .img-bg:after {
	display: none;
}
.product-top-section #slick-product-page .slick-dots {
	bottom: -30px;
}
.product-top-section #slick-product-page .slick-dots li button:before {
	color: #1e1e23;
}
.product-top-section #slick-product-page .slick-dots li.slick-active button:before {
	color: #1e1e23;
}
@media only screen and (min-width: 768px) {
	.product-top-section #slick-product-page .slick-next:before,
	.product-top-section #slick-product-page .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='4'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
@media only screen and (min-width: 1440px) {
	.product-top-section #slick-product-page .slick-next:before,
	.product-top-section #slick-product-page .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
#slick-center-product .product-list--item {
	width: auto;
	margin-right: 0;
}
@media only screen and (min-width: 768px) {
	#fluid-wrap #wrap-left {
		width: calc(70% - 24px);
	}
}
@media only screen and (min-width: 1440px) {
	#fluid-wrap #wrap-left.bg-img-wrap {
		height: 720px;
	}
}
@media only screen and (min-width: 1440px) {
	#fluid-wrap * {
		-webkit-box-sizing: content-box !important;
		box-sizing: content-box !important;
	}
}
@media only screen and (min-width: 768px) {
	#wrap-right {
		width: calc(30% - 24px);
		padding-right: calc((100% - 1440px) / 2);
	}
}
@media only screen and (min-width: 1440px) {
	#wrap-right {
		max-width: calc(1440px - (1440px * 0.7));
	}
}
#grid {
	max-width: 100% !important;
}
#grid.wrap--padding {
	margin: 0 4px;
	padding: 0;
}
@media only screen and (min-width: 768px) {
	#grid.wrap--padding {
		margin: 0 12px;
	}
}
.grid-item {
	margin: 12px;
	overflow: hidden;
	width: calc(100% - 24px);
}
@media only screen and (min-width: 768px) {
	.grid-item.landscape,
	.grid-item.portrait {
		width: calc(50% - 24px);
	}
}
.grid-item.landscape {
	height: 40vh;
}
@media only screen and (min-width: 768px) {
	.grid-item.landscape {
		height: 420px;
	}
	.grid-item.landscape img {
		min-height: 420px;
	}
}
.grid-item.portrait {
	height: 80vh;
}
@media only screen and (min-width: 768px) {
	.grid-item.portrait {
		height: calc(840px + 24px);
	}
}
.grid-item p {
	position: absolute;
	bottom: 0;
	z-index: 1;
	background: #fff;
	padding: 8px;
}
.product-dim {
	max-height: 300px;
	margin-top: 24px;
}
@media only screen and (min-width: 768px) {
	.product-dim {
		margin-top: -8px;
	}
}
.product-dim img {
	-o-object-fit: contain;
	object-fit: contain;
}
.item-product-shelf {
	width: 50%;
	margin-bottom: 4px;
}
@media only screen and (min-width: 768px) {
	.item-product-shelf {
		width: 33.33333%;
	}
}
@media only screen and (min-width: 1024px) {
	.item-product-shelf {
		width: 25%;
	}
}
@media only screen and (min-width: 1280px) {
	.item-product-shelf {
		width: 16.66667%;
	}
}
.item-product-shelf span {
	pointer-events: none;
}
.item-product-shelf span > a {
	text-decoration: none;
	color: inherit;
}
.product-shelf {
	margin-top: 16px;
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.product-shelf img {
	max-width: 138px;
	height: auto;
	width: auto;
	-o-object-fit: contain;
	object-fit: contain;
	width: auto;
}
.product-option-tooltip .product-option--item {
	width: 50px;
	margin-right: 8px;
	margin-bottom: 8px;
}
.product-option-tooltip .product-option--item img {
	border-radius: 50%;
}
.wood-sample-wrap.wrap--padding {
	margin: 0 4px;
	padding: 0;
}
.wood-samples {
	display: grid;
	grid-template-columns: repeat(auto-fill, 80px);
	grid-gap: 8px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
right-section .accordion-wrap a {
	padding: 16px 0;
}
right-section .accordion-hide-content {
	padding-top: 0;
}
right-section .bg-img-wrap {
	height: 80px;
}
.wood-sample--item img {
	border-radius: 50%;
}
.wood-sample--item .bg-img-content-wrap span {
	text-align: center;
}
.img-full-width {
	height: 50vh;
}
@media only screen and (min-width: 768px) {
	.img-full-width {
		height: 850px;
	}
}
.main-container {
	height: 400px;
	position: relative;
}
.main-container:after {
	content: '';
	position: absolute;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(white), to(rgba(255, 255, 255, 0)));
	background: -o-linear-gradient(top, #fff 0, rgba(255, 255, 255, 0) 100%);
	background: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0) 100%);
	width: 100%;
	height: 200px;
}
.main-container .wrap--padding {
	z-index: 2;
	position: relative;
}
.featured-wrap {
	margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
	.featured-wrap {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.featured-wrap span {
	height: 300px;
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.featured-wrap span {
		width: 50%;
		height: 450px;
	}
}
.featured-wrap span img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}
.featured-wrap .featuret-txt {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.featured-wrap .featuret-txt {
		width: 50%;
	}
	.featured-wrap .featuret-txt p {
		font-size: 20px;
		font-weight: regular;
	}
}
@media only screen and (min-width: 768px) {
	.featured-wrap.left .featuret-txt {
		margin-left: 8.33333%;
	}
}
@media only screen and (min-width: 768px) {
	.featured-wrap.right {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}
}
@media only screen and (min-width: 768px) {
	.featured-wrap.right .featuret-txt {
		margin-right: 8.33333%;
	}
}
.place-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.place-data .place-data--item {
	width: 100%;
	padding-bottom: 16px;
}
@media only screen and (min-width: 480px) {
	.place-data .place-data--item {
		width: calc(100% / 2);
		padding-right: 16px;
	}
}
@media only screen and (min-width: 1024px) {
	.place-data .place-data--item {
		width: calc(100% / 3);
	}
	.place-data .place-data--item:nth-child(3) {
		width: auto;
	}
}
#typography-style img {
	padding-bottom: 24px;
}
#typography-style h1,
#typography-style h2 {
	padding-bottom: 24px;
	padding-top: 8px;
}
#typography-style blockquote,
#typography-style figcaption,
#typography-style h3,
#typography-style h4,
#typography-style p {
	padding-bottom: 16px;
	line-height: 1.6;
}
#typography-style h5,
#typography-style h6 {
	padding-bottom: 8px;
}
#typography-style blockquote {
	margin: 24px 0 24px 24px;
	padding: 8px 0 8px 16px;
	border-left: 2px solid #dcdee0;
	color: #767678;
}
@media only screen and (min-width: 768px) {
	#typography-style blockquote {
		margin: 24px 0 24px 40px;
	}
}
#typography-style ol,
#typography-style ul {
	padding-left: 1em;
	line-height: 2;
}
#typography-style figure {
	margin: 0;
}
#typography-style figure img {
	padding-bottom: 4px;
}
#typography-style figcaption {
	color: #767678;
}
#typography-style .slick-slide img {
	padding-bottom: 0;
}
[class*='svg--'] {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 1px;
	-moz-transform: scale(1);
}
[class*='-line'] {
	color: #505052;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	shape-rendering: auto;
	fill: none;
}
.fill-currentcolor {
	fill: currentColor;
}
.svg--2d-dim-legend {
	width: 42px;
	height: 45px;
}
.svg--3d-dim-legend {
	width: 48px;
	height: 53px;
}
.svg--alert-line {
	width: 20px;
	height: 20px;
}
.svg--arrow-circle-line {
	width: 20px;
	height: 20px;
}
.svg--arrow-line {
	width: 20px;
	height: 20px;
}
.svg--arrow-line-small {
	width: 8px;
	height: 9.229px;
}
.svg--arrow-long-line {
	width: 20px;
	height: 20px;
}
.svg--arrow-small-line {
	width: 4px;
	height: 8px;
}
.svg--at-line {
	width: 20px;
	height: 20px;
}
.svg--bell-line {
	width: 20px;
	height: 20px;
}
.svg--callendar-line {
	width: 20px;
	height: 20px;
}
.svg--check-line {
	width: 20px;
	height: 20px;
}
.svg--clock-line {
	width: 20px;
	height: 20px;
}
.svg--dodatki--line {
	width: 125px;
	height: 90px;
}
.svg--download-line {
	width: 20px;
	height: 20px;
}
.svg--edit-line {
	width: 20px;
	height: 20px;
}
.svg--edit-square-line {
	width: 20px;
	height: 20px;
}
.svg--external-link-line {
	width: 20px;
	height: 20px;
}
.svg--facebook {
	width: 8px;
	height: 16px;
}
.svg--fronty--line {
	width: 168.488px;
	height: 90px;
}
.svg--globe-line {
	width: 20px;
	height: 20px;
}
.svg--grid-line {
	width: 20px;
	height: 20px;
}
.svg--heart-line {
	width: 20px;
	height: 20px;
}
.svg--help-circle-line {
	width: 20px;
	height: 20px;
}
.svg--info-line {
	width: 20px;
	height: 20px;
}
.svg--instagram {
	width: 20px;
	height: 20px;
}
.svg--kuchnia--line {
	width: 125px;
	height: 90px;
}
.svg--link-line {
	width: 20px;
	height: 20px;
}
.svg--lock-line {
	width: 20px;
	height: 20px;
}
.svg--logo-facebook {
	width: 8px;
	height: 16px;
}
.svg--logo-linkedin-cut {
	width: 16px;
	height: 16px;
}
.svg--logo-stolzen {
	width: 149.301px;
	height: 40px;
}
.svg--mail-line {
	width: 22px;
	height: 20px;
}
.svg--map-pin-line {
	width: 20px;
	height: 20px;
}
.svg--minus-circle-line {
	width: 20px;
	height: 20px;
}
.svg--minus-line {
	width: 20px;
	height: 20px;
}
.svg--more {
	width: 20px;
	height: 20px;
}
.svg--navigation-line {
	width: 20px;
	height: 20px;
}
.svg--phone-line {
	width: 20px;
	height: 20px;
}
.svg--play-circle-line {
	width: 34px;
	height: 34px;
}
.svg--play-line {
	width: 20px;
	height: 20px;
}
.svg--plus-circle-line {
	width: 20px;
	height: 20px;
}
.svg--plus-line {
	width: 20px;
	height: 20px;
}
.svg--search-line {
	width: 20px;
	height: 20px;
}
.svg--share-line {
	width: 20px;
	height: 20px;
}
.svg--shopping-bag-line {
	width: 20px;
	height: 20px;
}
.svg--shopping-cart-line {
	width: 20px;
	height: 20px;
}
.svg--star-line {
	width: 20px;
	height: 20px;
}
.svg--tag-line {
	width: 20px;
	height: 20px;
}
.svg--trash-line {
	width: 20px;
	height: 20px;
}
.svg--truck-line {
	width: 22px;
	height: 20px;
}
.svg--user-line {
	width: 20px;
	height: 20px;
}
.svg--user-line-2 {
	width: 20px;
	height: 20px;
}
.svg--wifi-line {
	width: 20px;
	height: 20px;
}
.svg--x-line {
	width: 20px;
	height: 20px;
}
.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}
.slick-list:focus {
	outline: 0;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:after,
.slick-track:before {
	content: '';
	display: table;
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}
[dir='rtl'] .slick-slide {
	float: right;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.slick-loading .slick-list {
	background: #fff src('../img/loader.gif') center center no-repeat;
}
.slick-next,
.slick-prev {
	position: absolute;
	display: block;
	z-index: 1;
	cursor: pointer;
	background: 0 0;
	color: transparent;
	top: 48%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: 0;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
	outline: 0;
	background: 0 0;
	color: transparent;
}
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
	opacity: 1;
}
.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
	opacity: 0.25;
}
.slick-next:before,
.slick-prev:before {
	color: #fff;
	opacity: 0.75;
}
@media only screen and (min-width: 768px) {
	.slick-next:before,
	.slick-prev:before {
		content: '';
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23fff' stroke-linecap='square' stroke-linejoin='round' stroke-width='4'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
		width: 32px;
		height: 40px;
		left: -2px;
		position: absolute;
		-webkit-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}
}
@media only screen and (min-width: 1440px) {
	.slick-next:before,
	.slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23fff' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
		width: 40px;
		height: 40px;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}
.slick-prev {
	left: 0;
}
@media only screen and (min-width: 1440px) {
	.slick-prev {
		left: 8px;
	}
}
.slick-next {
	right: 0;
}
@media only screen and (min-width: 1440px) {
	.slick-next {
		right: 8px;
	}
}
@media only screen and (min-width: 768px) {
	.slick-next:before {
		right: -2px;
		-webkit-transform: scale(0.5) rotate(180deg);
		-ms-transform: scale(0.5) rotate(180deg);
		transform: scale(0.5) rotate(180deg);
	}
}
@media only screen and (min-width: 1440px) {
	.slick-next:before {
		-webkit-transform: scale(1) rotate(180deg);
		-ms-transform: scale(1) rotate(180deg);
		transform: scale(1) rotate(180deg);
	}
}
.slick-dots {
	position: absolute;
	bottom: 10px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	height: 20px;
	width: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	border: 0;
	background: 0 0;
	display: block;
	height: 20px;
	width: 20px;
	outline: 0;
	line-height: 0;
	font-size: 0;
	color: transparent;
	padding: 5px;
	cursor: pointer;
}
.slick-dots li button:focus,
.slick-dots li button:hover {
	outline: 0;
}
.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
	opacity: 1;
}
.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '•';
	width: 20px;
	height: 20px;
	font-size: 24px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	opacity: 0.25;
}
.slick-dots li.slick-active button:before {
	color: #fff;
	opacity: 0.75;
}
#slick-full-width .slick-arrow,
#slick-home .slick-arrow,
#slick-product-page .slick-arrow {
	-webkit-transition: opacity 0.2s ease-in-out 0.2s;
	-o-transition: opacity 0.2s ease-in-out 0.2s;
	transition: opacity 0.2s ease-in-out 0.2s;
	opacity: 0;
}
#slick-full-width:hover .slick-arrow,
#slick-home:hover .slick-arrow,
#slick-product-page:hover .slick-arrow {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	opacity: 1;
}
#slick-full-width .slide-wrap,
#slick-home .slide-wrap,
#slick-product-page .slide-wrap {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 50vh;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media only screen and (min-width: 768px) {
	#slick-full-width .slide-wrap,
	#slick-home .slide-wrap,
	#slick-product-page .slide-wrap {
		height: 550px;
	}
}
#slick-full-width .slide-wrap .img-bg,
#slick-home .slide-wrap .img-bg,
#slick-product-page .slide-wrap .img-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#slick-full-width .slide-wrap .img-bg img,
#slick-home .slide-wrap .img-bg img,
#slick-product-page .slide-wrap .img-bg img {
	-o-object-position: bottom;
	object-position: bottom;
}
#slick-full-width .slide-wrap .img-bg.bg-layer:after,
#slick-home .slide-wrap .img-bg.bg-layer:after,
#slick-product-page .slide-wrap .img-bg.bg-layer:after {
	content: '';
	position: absolute;
	top: 0;
	background: rgba(30, 30, 35, 0.25);
	width: 100%;
	height: 100%;
}
#slick-full-width .slide-wrap .img-bg.top-gradient:after,
#slick-home .slide-wrap .img-bg.top-gradient:after,
#slick-product-page .slide-wrap .img-bg.top-gradient:after {
	content: '';
	position: absolute;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(-200%, #1e1e23), to(rgba(30, 30, 35, 0)));
	background: -o-linear-gradient(top, #1e1e23 -200%, rgba(30, 30, 35, 0) 100%);
	background: linear-gradient(180deg, #1e1e23 -200%, rgba(30, 30, 35, 0) 100%);
	width: 100%;
	height: 80%;
}
@media only screen and (min-width: 768px) {
	#slick-full-width .slide-wrap .img-bg.top-gradient:after,
	#slick-home .slide-wrap .img-bg.top-gradient:after,
	#slick-product-page .slide-wrap .img-bg.top-gradient:after {
		height: 40%;
	}
}
#slick-full-width .slide-wrap .slide-content,
#slick-home .slide-wrap .slide-content,
#slick-product-page .slide-wrap .slide-content {
	z-index: 2;
	color: #fff;
}
#slick-center,
#slick-center--scale {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media only screen and (min-width: 768px) {
	#slick-center .slick-list,
	#slick-center--scale .slick-list {
		width: 80%;
		margin: 0 -8px;
	}
}
@media only screen and (min-width: 1024px) {
	#slick-center .slick-list,
	#slick-center--scale .slick-list {
		width: 55%;
		margin: 0 -8px;
	}
}
#slick-center .slick-slide,
#slick-center--scale .slick-slide {
	margin: 0 8px;
}
#slick-center .slick-current img,
#slick-center--scale .slick-current img {
	-webkit-box-shadow: 0 15px 60px -10px rgba(38, 38, 40, 0.4);
	box-shadow: 0 15px 60px -10px rgba(38, 38, 40, 0.4);
}
#slick-center a,
#slick-center--scale a {
	text-decoration: none;
}
#slick-center a:hover h2,
#slick-center a:hover h6,
#slick-center--scale a:hover h2,
#slick-center--scale a:hover h6 {
	color: #e94e19 !important;
}
#slick-center a:hover h2,
#slick-center--scale a:hover h2 {
	text-decoration: underline;
}
@media only screen and (min-width: 480px) {
	#slick-center .slick-next:before,
	#slick-center .slick-prev:before,
	#slick-center--scale .slick-next:before,
	#slick-center--scale .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='4'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
@media only screen and (min-width: 1440px) {
	#slick-center .slick-next:before,
	#slick-center .slick-prev:before,
	#slick-center--scale .slick-next:before,
	#slick-center--scale .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
#slick-center-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media only screen and (min-width: 768px) {
	#slick-center-product .slick-list {
		width: 80%;
		margin: 0 -8px;
	}
}
#slick-center-product .slick-slide {
	margin: 0 8px;
}
@media only screen and (min-width: 768px) {
	#slick-center-product .slick-next:before,
	#slick-center-product .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='4'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
@media only screen and (min-width: 1440px) {
	#slick-center-product .slick-next:before,
	#slick-center-product .slick-prev:before {
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none'%3E%3Cpath data-name='Path 382' d='M28 36L12 20 28 4' stroke='%23000' stroke-linecap='square' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M40 40H0V0h40z'/%3E%3C/g%3E%3C/svg%3E")
			no-repeat;
	}
}
.slick-slide--center:active,
.slick-slide--center:focus,
.slick-slide--center:hover {
	outline: 0;
}
.slick-slide--center.scale {
	padding: 100px 0;
}
.slick-slide:not(.slick-active) {
	margin: 0;
	-webkit-transition: -webkit-transform 0.1s ease-out, -webkit-box-shadow 0.65s;
	transition: -webkit-transform 0.1s ease-out, -webkit-box-shadow 0.65s;
	-o-transition: transform 0.1s ease-out, box-shadow 0.65s;
	transition: transform 0.1s ease-out, box-shadow 0.65s;
	transition: transform 0.1s ease-out, box-shadow 0.65s, -webkit-transform 0.1s ease-out, -webkit-box-shadow 0.65s;
}
.slick-slide--center,
.slick-slide--center[aria-hidden='true']:not(.slick-cloned) ~ .slick-cloned[aria-hidden='true'] {
	-webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	-o-transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s, -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
}
.slick-center.scale img,
.slick-slide--center.scale[aria-hidden='true']:not([tabindex='-1']) + .slick-cloned[aria-hidden='true'] img {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
	-webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	-o-transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s, -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
}
.slick-center.scale div,
.slick-slide--center.scale[aria-hidden='true']:not([tabindex='-1']) + .slick-cloned[aria-hidden='true'] div {
	-webkit-transform: translateY(29px);
	-ms-transform: translateY(29px);
	transform: translateY(29px);
	-webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	transition: -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
	-o-transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s;
	transition: transform 0.3s, box-shadow 0.65s, -webkit-transform 0.3s, -webkit-box-shadow 0.65s;
}
@media only screen and (min-width: 1440px) {
	.slick-center.scale div,
	.slick-slide--center.scale[aria-hidden='true']:not([tabindex='-1']) + .slick-cloned[aria-hidden='true'] div {
		-webkit-transform: translateY(37px);
		-ms-transform: translateY(37px);
		transform: translateY(37px);
	}
}
.slick-slide--center div {
	margin-top: 8px;
}
body.compensate-for-scrollbar {
	overflow: hidden;
}
.fancybox-active {
	height: auto;
}
.fancybox-is-hidden {
	left: -9999px;
	margin: 0;
	position: absolute !important;
	top: -9999px;
	visibility: hidden;
}
.fancybox-container {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	width: 100%;
	z-index: 99992;
}
.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.fancybox-outer {
	-webkit-overflow-scrolling: touch;
	overflow-y: auto;
}
.fancybox-bg {
	background: #fff;
	opacity: 0;
	-webkit-transition-duration: inherit;
	-o-transition-duration: inherit;
	transition-duration: inherit;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
	-o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
	transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
	opacity: 0.95;
	-webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
	-o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
	direction: ltr;
	opacity: 0;
	position: absolute;
	visibility: hidden;
	z-index: 99997;
}
.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
	opacity: 1;
	-webkit-transition: opacity 0.25s, visibility 0s;
	-o-transition: opacity 0.25s, visibility 0s;
	transition: opacity 0.25s, visibility 0s;
	visibility: visible;
}
.fancybox-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.fancybox-infobar {
	color: #bec0c2;
	font-size: 12px;
	-webkit-font-smoothing: subpixel-antialiased;
	mix-blend-mode: difference;
	height: 49px;
	line-height: 49px;
	min-width: 49px;
	top: 0;
	left: 0;
	padding: 0 10px;
	pointer-events: none;
	text-align: center;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.fancybox-toolbar {
	right: 5px;
	top: 5px;
	background: rgba(255, 255, 255, 0.3) !important;
	border-radius: 4px;
}
.fancybox-stage {
	direction: ltr;
	overflow: visible;
	-webkit-transform: translate3d(0, 0, 0);
	z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
	overflow: hidden;
}
.fancybox-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: none;
	height: 100%;
	left: 0;
	outline: 0;
	-webkit-overflow-scrolling: touch;
	padding: 49px;
	position: absolute;
	text-align: center;
	top: 0;
	transition-property: opacity, -webkit-transform;
	-webkit-transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
	white-space: normal;
	width: 100%;
	z-index: 99994;
}
.fancybox-slide::before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	width: 0;
}
.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
	display: block;
}
.fancybox-slide--next {
	z-index: 99995;
}
.fancybox-slide--image {
	overflow: visible;
	padding: 49px 0;
}
.fancybox-slide--image::before {
	display: none;
}
.fancybox-slide--html {
	padding: 5px 5px 0 5px;
	height: auto;
}
.fancybox-slide--iframe {
	padding: 49px 5px 0;
}
.fancybox-content {
	background: #fff;
	display: inline-block;
	margin: 0 0 5px 0;
	max-width: 100%;
	overflow: auto;
	padding: 0;
	padding: 16px;
	position: relative;
	text-align: left;
	vertical-align: middle;
}
@media only screen and (min-width: 768px) {
	.fancybox-content {
		padding: 32px 24px;
	}
}
.fancybox-slide--image .fancybox-content {
	-webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
	animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background: 0 0;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	left: 0;
	margin: 0;
	max-width: none;
	overflow: visible;
	padding: 0;
	position: absolute;
	top: 0;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	transition-property: opacity, -webkit-transform;
	-webkit-transition-property: opacity, -webkit-transform;
	-o-transition-property: transform, opacity;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}
.fancybox-can-drag .fancybox-content {
	cursor: -webkit-grab;
	cursor: grab;
}
.fancybox-is-dragging .fancybox-content {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.fancybox-container [data-selectable='true'] {
	cursor: text;
}
.fancybox-image {
	-o-object-fit: unset;
	object-fit: unset;
}
.fancybox-slide--html .fancybox-content {
	margin-bottom: 5px;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--video .fancybox-content {
	height: 100%;
	margin: 0;
	overflow: visible;
	padding: 0;
	width: 100%;
	margin-right: -1px;
}
.fancybox-slide--video {
	padding: 49px 0 !important;
}
.fancybox-slide--map .fancybox-content {
	background: #e5e3df;
}
.fancybox-iframe,
.fancybox-video {
	background: 0 0;
	border: 0;
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}
.fancybox-iframe {
	vertical-align: top;
}
.fancybox-error {
	background: #fff;
	cursor: default;
	max-width: 400px;
	padding: 49px;
	width: 100%;
}
.fancybox-error p {
	color: #767678;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
	padding: 0;
}
.fancybox-button {
	background: 0 0;
	border: 0;
	cursor: pointer;
	height: 38px;
	width: 38px;
	margin: 0;
	outline: 0;
	padding: 0;
	-webkit-transition: color 0.2s;
	-o-transition: color 0.2s;
	transition: color 0.2s;
	vertical-align: top;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.fancybox-button svg {
	stroke-linecap: butt;
	overflow: initial;
}
.fancybox-button:hover {
	background: rgba(255, 255, 255, 0.35);
	border-radius: inherit;
}
.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
	color: rgba(255, 255, 255, 0.6);
}
.fancybox-button:focus,
.fancybox-button:hover {
	color: #fff;
}
.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
	color: rgba(255, 255, 255, 0.2);
	cursor: default;
}
.fancybox-button svg path {
	fill: currentColor;
	color: #1e1e23;
}
.fancybox-button--play svg {
	width: 6px;
	height: 12px;
	fill: currentColor;
	color: #1e1e23;
}
.fancybox-button--play svg path:nth-child(2) {
	display: none;
}
.fancybox-button--pause svg path:nth-child(1) {
	display: none;
}
.fancybox-navigation .fancybox-button {
	height: 55px;
	opacity: 0;
	width: 38px;
}
.fancybox-button--zoom svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	color: #1e1e23;
	stroke-width: 2px;
	overflow: initial;
	stroke-linecap: round;
}
.fancybox-button--zoom svg path {
	vector-effect: non-scaling-stroke;
}
.fancybox-button--thumbs svg {
	width: 14px;
	height: 14px;
	color: #1e1e23;
	overflow: initial;
}
.fancybox-button--close svg {
	width: 25px;
	height: 25px;
	color: #1e1e23;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-width: 2;
	overflow: initial;
}
.fancybox-button--close svg path {
	vector-effect: non-scaling-stroke;
}
.fancybox-button--arrow_left {
	left: 5px;
}
.fancybox-button--arrow_left svg {
	width: 10px;
	height: 20px;
	stroke: currentColor;
	color: #1e1e23;
	stroke-linecap: round;
	stroke-width: 2;
	overflow: initial;
	margin-left: -1px;
}
.fancybox-button--arrow_right {
	right: 5px;
}
.fancybox-button--arrow_right svg {
	width: 10px;
	height: 20px;
	stroke: currentColor;
	color: #1e1e23;
	stroke-linecap: round;
	stroke-width: 2;
	overflow: initial;
	margin-right: -1px;
}
.fancybox-button--arrow_left,
.fancybox-button--arrow_right {
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.2);
}
.fancybox-button--arrow_left:hover,
.fancybox-button--arrow_right:hover {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}
.fancybox-button--arrow_left .disabled:hover,
.fancybox-button--arrow_left.disabled,
.fancybox-button--arrow_right .disabled:hover,
.fancybox-button--arrow_right.disabled {
	display: none;
}
.fancybox-close-small {
	background: 0 0;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 28px;
}
.fancybox-close-small svg {
	width: 24px;
	height: 24px;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	overflow: initial;
	opacity: 0.2;
	stroke: currentColor;
}
.fancybox-close-small:focus {
	outline: 0;
}
.fancybox-close-small:hover svg {
	opacity: 1;
}
.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
	display: none;
}
.fancybox-caption {
	bottom: 0;
	text-align: center;
	color: #1e1e23;
	font-size: 14px;
	font-weight: 400;
	left: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	right: 0;
}
.fancybox-caption::after {
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	content: '';
	display: block;
	left: 30px;
	position: absolute;
	right: 30px;
	top: 0;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
	color: #bec0c2;
	text-decoration: none;
}
.fancybox-caption a:hover {
	color: #fff;
	text-decoration: underline;
}
.fancybox-loading {
	-webkit-animation: fancybox-rotate 0.8s infinite linear;
	animation: fancybox-rotate 0.8s infinite linear;
	background: 0 0;
	border: 4px solid transparent;
	border-radius: 100%;
	border-top-color: #fff;
	height: 60px;
	left: 50%;
	margin: -30px 0 0 -30px;
	opacity: 0.6;
	padding: 0;
	position: absolute;
	top: 50%;
	width: 60px;
	z-index: 99999;
}
@-webkit-keyframes fancybox-rotate {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes fancybox-rotate {
	from {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
Transition effects .fancybox-animated {
	-webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	-o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
	transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
	opacity: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	-o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: scale3d(1.5, 1.5, 1.5);
	transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: scale3d(0.5, 0.5, 0.5);
	transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
}
.fancybox-fx-rotate.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}
.fancybox-fx-rotate.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
}
.fancybox-fx-circular.fancybox-slide--previous {
	opacity: 0;
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
	opacity: 0;
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
	opacity: 1;
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}
.fancybox-fx-tube.fancybox-slide--previous {
	-webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
	transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
	-webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
	transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}
.fancybox-thumbs {
	background: #fff;
	top: auto;
	bottom: 0;
	left: 0;
	display: none;
	margin: 0;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 2px 2px 4px 2px;
	position: absolute;
	-webkit-tap-highlight-color: transparent;
	z-index: 99995;
}
.fancybox-thumbs-x {
	overflow-x: auto;
	overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
	display: block;
}
.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}
.fancybox-thumbs > ul {
	font-size: 0;
	height: 100%;
	list-style: none;
	margin: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	position: relative;
	white-space: nowrap;
	width: 100%;
}
.fancybox-thumbs-x > ul {
	overflow: hidden;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar {
	width: 7px;
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}
.fancybox-thumbs > ul > li {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	cursor: pointer;
	float: left;
	height: 75px;
	margin: 2px;
	max-height: calc(100% - 8px);
	max-width: calc(50% - 4px);
	outline: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	width: 100px;
}
.fancybox-thumbs-loading {
	background: rgba(0, 0, 0, 0.1);
}
.fancybox-thumbs > ul > li {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.fancybox-thumbs > ul > li:before {
	border: 2px solid #e94e19;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 99991;
}
.fancybox-thumbs .fancybox-thumbs-active:before {
	opacity: 1;
}
.fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
}
.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 80px;
}
.fancybox-thumbs > ul > li {
	max-height: calc(100% - 5px);
}
.mapplic-element {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	height: 420px;
}
.mapplic-element > * {
	opacity: 1;
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.mapplic-element.mapplic-loading {
	background: url(../img/mapplic/loader.gif) no-repeat center;
}
.mapplic-element.mapplic-loading > * {
	opacity: 0;
}
.mapplic-element.mapplic-error {
	background: url(../img/mapplic/error-icon.png) no-repeat center;
}
.mapplic-container {
	position: relative;
	width: 70%;
	height: 100%;
}
.mapplic-map {
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
}
.mapplic-map .mapplic-map-image {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mapplic-map.mapplic-zoomable .mapplic-map-image {
	cursor: url(../img/mapplic/openhand.cur), default;
}
.mapplic-map.mapplic-zoomable.mapplic-dragging .mapplic-map-image {
	cursor: url(../img/mapplic/closedhand.cur), move;
}
.mapplic-layer {
	width: 100%;
	height: 100%;
	position: absolute;
}
.mapplic-pin {
	background-image: url(../img/mapplic/pin.png);
	background-size: 18px 24px;
	background-repeat: no-repeat;
	background-position: center;
	width: 18px;
	height: 24px;
	margin-top: -20px;
	margin-left: -10px;
	position: absolute;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mapplic-pin.hide {
	display: none;
}
.mapplic-pin.mapplic-active {
	display: block !important;
}
.mapplic-pin.pin-classic {
	background-color: #e94e19;
	background-image: none;
	border-color: #e94e19;
	border-radius: 10px;
	width: 20px;
	height: 20px;
	margin-top: -20px;
	margin-left: -10px;
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.mapplic-pin.pin-classic:before {
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: inherit;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	content: '';
	position: absolute;
	top: 16px;
	left: 2px;
}
.mapplic-pin.pin-image {
	background-size: 32px;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 1px 3px -1px rgba(30, 30, 35, 0.4);
	box-shadow: 0 1px 3px -1px rgba(30, 30, 35, 0.4);
	border: 2px solid #fff;
	width: 32px;
	height: 32px;
	margin-top: -16px;
	margin-left: -16px;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.mapplic-pin.circular {
	background-image: none;
	background-color: #e94e19;
	border-radius: 5px;
	width: 10px;
	height: 10px;
	margin-left: -5px;
	margin-top: -5px;
	-webkit-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
.mapplic-pin.pin-label {
	color: #fff;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	line-height: 16px;
}
.mapplic-pin.pin-label:visited {
	color: #fff;
}
.mapplic-pin.pin-pulse:before {
	content: '';
	border: 2px solid #888;
	border-radius: 30px;
	height: inherit;
	width: inherit;
	top: -2px;
	left: -2px;
	position: absolute;
	-webkit-animation: pulsate 1.8s ease-out;
	animation: pulsate 1.8s ease-out;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	opacity: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(1, 1);
		opacity: 0;
	}
	25% {
		opacity: 0.5;
	}
	50% {
		-webkit-transform: scale(1.6, 1.6);
		opacity: 0;
	}
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi), (min-resolution: 2dppx) {
	.mapplic-pin {
		background-image: url(../img/mapplic/pin@2x.png);
	}
}
.mapplic-minimap {
	position: absolute;
	bottom: 0;
	right: 50px;
	opacity: 0.5;
	overflow: hidden;
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
@media only screen and (min-width: 768px) {
	.mapplic-minimap {
		margin: 8px;
	}
}
.mapplic-minimap .mapplic-minimap-overlay {
	background-color: rgba(30, 30, 35, 0.4);
	border-radius: 4px;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.mapplic-minimap .mapplic-minimap-active {
	position: absolute;
	opacity: 1;
	top: 0;
	left: 0;
}
.mapplic-minimap .mapplic-minimap-background {
	max-height: 78px !important;
	border-radius: 4px;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.mapplic-button {
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	width: 38px;
	height: 38px;
	border-radius: 16px;
	-webkit-transition: background-color 0.2s;
	-o-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
.mapplic-button:hover {
	border-color: #bec0c2;
}
.mapplic-button:active {
	background-color: #f5f5f5;
}
.mapplic-button.mapplic-clear-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='rgb(38, 38, 40)' d='M11 3H5l3-3zM5 13l6 .005L8 16zM3 11L0 8l3-3zM13 5l3 3-3 3zM8 5a3 3 0 100 6 3 3 0 000-6zm0 5a2 2 0 11.001-4.001A2 2 0 018 10z'/%3E%3C/svg%3E");
	background-size: 16px 16px;
	display: inline;
	color: inherit;
	display: none;
	bottom: 84px;
	right: 0;
}
.mapplic-container > .mapplic-button {
	border: 1px #dcdee0 solid;
	position: absolute;
}
@media only screen and (min-width: 768px) {
	.mapplic-container > .mapplic-button {
		margin: 8px;
	}
}
.mapplic-container > .mapplic-button:hover {
	border-color: #bec0c2;
}
.mapplic-zoom-buttons {
	position: absolute;
	right: 0;
	bottom: 0;
}
@media only screen and (min-width: 768px) {
	.mapplic-zoom-buttons {
		margin: 8px;
	}
}
.mapplic-zoom-buttons a {
	display: block;
	border: 1px #dcdee0 solid;
}
.mapplic-zoom-buttons a.mapplic-disabled {
	background-color: #f5f5f5;
	opacity: 0.6;
	cursor: not-allowed;
}
.mapplic-zoom-buttons a.mapplic-zoomin-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='rgb(38, 38, 40)' d='M10 4H6V0H4v4H0v2h4v4h2V6h4z'/%3E%3C/svg%3E");
	background-size: 10px 10px;
	margin-bottom: 4px;
}
.mapplic-zoom-buttons a.mapplic-zoomout-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpath fill='rgb(38, 38, 40)' d='M0 4h10v2H0z'/%3E%3C/svg%3E");
	background-size: 10px 10px;
}
.mapplic-fullscreen {
	background-color: rgba(255, 255, 255, 0.9);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position: fixed !important;
	top: 0;
	left: 0;
	width: 100%;
	height: 100% !important;
	margin: 0 !important;
	z-index: 2000;
}
.mapplic-fullscreen .mapplic-fullscreen-button,
.mapplic-fullscreen .mapplic-legend,
.mapplic-fullscreen .mapplic-levels,
.mapplic-fullscreen .mapplic-zoom-buttons {
	margin: 8px;
}
.mapplic-fullscreen .mapplic-legend {
	border-radius: 4px;
}
.mapplic-fullscreen .mapplic-fullscreen-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath fill='rgb(38, 38, 40)' d='M0 11h3v3h2V9H0v2zm3-8H0v2h5V0H3v3zm6 11h2v-3h3V9H9v5zm2-11V0H9v5h5V3h-3z'/%3E%3C/svg%3E");
	background-size: 14px 14px;
}
.mapplic-fullscreen .mapplic-container {
	width: 75%;
}
.mapplic-fullscreen .mapplic-sidebar {
	width: 25%;
	max-height: calc(100% - 82px);
	padding: 8px;
}
.mapplic-fullscreen .mapplic-sidebar.mapplic-sidebar-nosearch {
	max-height: calc(100% - 38px);
}
.mapplic-fullscreen-button {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14'%3E%3Cpath fill='rgb(38, 38, 40)' d='M2 9H0v5h5v-2H2V9zM0 5h2V2h3V0H0v5zm12 7H9v2h5V9h-2v3zM9 0v2h3v3h2V0H9z'/%3E%3C/svg%3E");
	background-size: 14px 14px;
	top: 0;
	left: 0;
}
.mapplic-levels {
	position: absolute;
	top: 0;
	right: 0;
	margin-right: 6px;
}
@media only screen and (min-width: 768px) {
	.mapplic-levels {
		margin: 8px;
	}
}
.mapplic-levels > * {
	display: block;
}
.mapplic-levels .mapplic-levels-select {
	background-color: #fff;
	margin-right: 28px;
	font-size: 16px;
}
.mapplic-levels a {
	background-size: 15px 15px;
	cursor: pointer;
	height: 50%;
	width: 15px;
	position: absolute;
	right: 0;
}
.mapplic-levels a:hover {
	background-color: #f5f5f5;
}
.mapplic-levels a.mapplic-disabled {
	background-color: #f5f5f5;
	opacity: 0.6;
	cursor: not-allowed;
}
.mapplic-levels .mapplic-levels-down,
.mapplic-levels .mapplic-levels-up {
	padding: 0 12px;
	border-radius: 4px;
}
.mapplic-levels .mapplic-levels-up {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath data-name='Path 382' d='M12 5L7.5 9.5 3 5' stroke='rgb(38, 38, 40)' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M14.5.5v14H.5V.5z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	background-position: 4px center;
}
.mapplic-levels .mapplic-levels-down {
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15'%3E%3Cg fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath data-name='Path 382' d='M12 5L7.5 9.5 3 5' stroke='rgb(38, 38, 40)' stroke-width='2'/%3E%3Cpath data-name='Rectangle 65' d='M14.5.5v14H.5V.5z'/%3E%3C/g%3E%3C/svg%3E")
		no-repeat;
	bottom: 0;
	background-position: center;
}
.mapplic-container {
	border-radius: 8px;
}
.mapplic-sidebar {
	width: 30%;
	height: 100%;
	display: block;
	padding: 0;
	position: relative;
	pointer-events: none;
	margin-top: 16px;
}
@media only screen and (min-width: 768px) {
	.mapplic-sidebar {
		margin-top: 0;
		max-height: 418px;
	}
}
.mapplic-sidebar > * {
	pointer-events: auto;
}
.mapplic-sidebar .mapplic-filter {
	background-color: #fff;
	-webkit-box-shadow: inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 0 0 1px #dcdee0;
	border-bottom: none;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 24px 16px;
	position: relative;
	width: 100%;
	z-index: 1;
}
.mapplic-sidebar .mapplic-filter .mapplic-filter-tags {
	text-align: right;
	position: absolute;
	top: 6px;
	right: 16px;
	white-space: nowrap;
	max-width: 100%;
}
.mapplic-sidebar .mapplic-filter .mapplic-filter-tags .mapplic-tag {
	background-color: #969698;
	border-radius: 12px;
	color: #fff;
	cursor: pointer;
	font-size: 11px;
	margin-top: -4px;
	padding: 2px 8px;
	display: inline-block;
}
.mapplic-sidebar .mapplic-filter .mapplic-filter-tags .mapplic-tag:hover > span {
	opacity: 1;
}
.mapplic-sidebar .mapplic-filter .mapplic-filter-tags .mapplic-tag > span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='rgb(255, 255, 255)' d='M8 .809L7.191 0 4 3.191.809 0 0 .809 3.191 4 0 7.191.809 8 4 4.809 7.191 8 8 7.191 4.809 4 8 .809z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 6px 6px;
	display: inline-block;
	margin-left: 6px;
	margin-bottom: 1px;
	width: 6px;
	height: 6px;
	opacity: 0.5;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.mapplic-sidebar .mapplic-filter .mapplic-search-input {
	font-size: 16px;
	margin: 0 !important;
}
.mapplic-sidebar .mapplic-filter .mapplic-search-clear {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='rgb(38, 38, 40)' d='M8 .809L7.191 0 4 3.191.809 0 0 .809 3.191 4 0 7.191.809 8 4 4.809 7.191 8 8 7.191 4.809 4 8 .809z'/%3E%3C/svg%3E");
	background-size: 8px 8px;
	background-repeat: no-repeat;
	background-color: transparent;
	background-position: center;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	cursor: pointer;
	display: none;
	position: absolute;
	top: 50%;
	right: 4px;
	margin: -14px 0;
	width: 34px;
	height: 34px;
}
.mapplic-sidebar.mapplic-sidebar-nosearch {
	max-height: calc(420px + 42px);
}
.mapplic-sidebar.mapplic-sidebar-nosearch .mapplic-filter {
	height: 38px;
	padding: 0;
}
.mapplic-list-container {
	-webkit-box-shadow: inset 0 1px 0 0 #fff, inset 0 0 0 1px #dcdee0;
	box-shadow: inset 0 1px 0 0 #fff, inset 0 0 0 1px #dcdee0;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	background: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: auto;
	max-height: 100%;
	overflow-y: auto;
	position: relative;
	-webkit-overflow-scrolling: touch;
}
.mapplic-list-container:before {
	display: block;
	content: '';
	width: 100%;
	height: 10px;
	position: absolute;
	z-index: 100;
}
.mapplic-list-container ol {
	list-style: none;
	padding: 8px 0;
	margin: 0;
}
.mapplic-list {
	list-style: none;
	padding: 0;
	padding-bottom: 0;
	margin: 0;
	overflow-y: auto;
	height: 100%;
}
.mapplic-list-expandable {
	position: relative;
}
.mapplic-list-category > a {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0;
	margin-bottom: 0;
	padding: 8px 16px;
	text-decoration: none;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-transition: background-color 0.2s;
	-o-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
.mapplic-list-category > a:hover {
	background-color: #f5f5f5;
}
.mapplic-list-category > a .mapplic-list-count {
	color: #969698;
	font-size: 12px;
	font-weight: 400;
	margin-left: 4px;
}
.mapplic-list-category .mapplic-thumbnail {
	background-color: #e94e19;
	border-radius: 50%;
	width: 40px;
	min-width: 40px;
	height: 40px;
}
.mapplic-list-category .mapplic-thumbnail-placeholder {
	font-size: 16px;
	color: #fff;
	border: none;
}
.mapplic-about {
	color: #969698;
	font-size: 12px;
	display: block;
}
.mapplic-thumbnail {
	margin-right: 12px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 50px;
	height: 50px;
}
.mapplic-thumbnail-placeholder {
	background-color: #fff;
	border: 1px #dcdee0 solid;
	border-radius: 4px;
	color: #969698;
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
}
.mapplic-list-location {
	margin: 0 !important;
	padding: 0 !important;
}
.mapplic-list-location h4 {
	font-weight: 400;
	line-height: 18px;
	margin: 2px 0 !important;
	padding: 0;
}
.mapplic-list-location:focus a,
.mapplic-list-location:hover a {
	background-color: #f5f5f5;
}
.mapplic-list-location.mapplic-active {
	border-left: 2px solid transparent;
	background-color: #f5f5f5;
}
.mapplic-list-location.mapplic-active > a {
	border-left: none;
	background-color: transparent;
}
.mapplic-list-location.mapplic-active:hover a {
	background-color: transparent;
}
.mapplic-list-location > a {
	border-left: 2px solid transparent;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 8px 16px;
	text-decoration: none;
	-webkit-transition: border, background-color 0.1s;
	-o-transition: border, background-color 0.1s;
	transition: border, background-color 0.1s;
}
.mapplic-tooltip {
	display: none;
	position: absolute;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	padding-bottom: 30px;
	pointer-events: none;
}
.mapplic-tooltip:after {
	content: '';
	border-color: #fff transparent transparent transparent !important;
	border-style: solid;
	border-width: 8px 7px 0 7px;
	width: 0;
	height: 0;
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-bottom: -7px;
	margin-left: -7px;
}
.mapplic-tooltip .mapplic-tooltip-wrap {
	background-color: #fff;
	-webkit-box-shadow: 0 10px 60px -5px rgba(30, 30, 35, 0.3);
	box-shadow: 0 10px 60px -5px rgba(30, 30, 35, 0.3);
	max-width: 300px;
	min-width: 180px;
	padding: 12px;
	pointer-events: auto;
}
.mapplic-tooltip .mapplic-tooltip-wrap:after {
	content: '';
	display: table;
}
.mapplic-tooltip .mapplic-image {
	margin: -16px;
	max-width: none;
}
.mapplic-tooltip .mapplic-tooltip-title {
	color: #262628;
	display: inline-block;
	font-weight: 400;
}
.has-image .mapplic-tooltip-title {
	color: #262628;
	margin: -20px 12px 20px 0 !important;
}
.mapplic-hovertip,
.mapplic-hovertip > .mapplic-tooltip-wrap {
	pointer-events: none;
}
.mapplic-hovertip > .mapplic-tooltip-wrap {
	min-width: 20px;
	padding: 8px;
	padding-top: 6px;
}
.mapplic-tooltip-content {
	margin-top: 4px;
	margin-bottom: 8px;
	max-height: 160px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.mapplic-tooltip .mapplic-thumbnail {
	border-radius: 50% !important;
	width: 48px;
	height: 48px;
	margin-right: 12px;
}
.mapplic-tooltip span,
.mapplic-tooltip-description span {
	color: #262628;
	margin: 0;
	display: block;
	padding-top: 4px;
}
.mapplic-tooltip span:first-child,
.mapplic-tooltip-description span:first-child {
	padding-top: 8px;
}
.mapplic-tooltip a,
.mapplic-tooltip-description a {
	font-size: 12px;
}
.mapplic-tooltip-description p:last-child {
	margin: 0;
}
.mapplic-popup-link {
	background-color: #e94e19;
	border-radius: 4px;
	color: #fff !important;
	font-size: 14px;
	display: inline-block;
	margin-top: 4px;
	padding: 4px 8px;
	text-decoration: none;
}
.mapplic-tooltip-close {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='rgb(190, 192, 194)' d='M8 .809L7.191 0 4 3.191.809 0 0 .809 3.191 4 0 7.191.809 8 4 4.809 7.191 8 8 7.191 4.809 4 8 .809z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 8px 8px;
	border: none;
	cursor: pointer;
	position: absolute;
	right: 4px;
	top: 4px;
	padding: 8px;
	width: 8px;
	height: 8px;
	opacity: 0.5;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.mapplic-tooltip-close:hover {
	opacity: 1;
}
.mapplic-toggle {
	display: block;
	cursor: pointer;
	font-size: 14px;
	position: relative;
}
.mapplic-toggle > .mapplic-toggle-circle {
	background-color: #767678;
	border-radius: 50%;
	position: absolute;
	left: 2px;
	top: 2px;
	width: 16px;
	height: 16px;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.mapplic-toggle:before {
	border: 1px solid #bec0c2;
	border-radius: 50%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 18px;
	height: 18px;
}
.mapplic-toggle > input {
	display: none;
}
.mapplic-toggle > input:checked + span {
	-webkit-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
}
.mapplic-list-category {
	position: relative;
}
.mapplic-list-category .mapplic-toggle {
	position: absolute;
	right: 20px;
	top: 50%;
	margin-top: -10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.mapplic-legend {
	background-color: rgba(255, 255, 255, 0.9);
	position: absolute;
	left: 0;
	bottom: 0;
	padding-right: 8px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
@media only screen and (min-width: 768px) {
	.mapplic-legend {
		margin: 8px;
		border-radius: 4px;
		padding: 0 8px;
	}
}
.mapplic-legend .mapplic-legend-label {
	display: block;
	font-weight: 400;
	margin: 8px 0;
	padding-left: 28px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mapplic-legend .mapplic-legend-key {
	background-color: #aaa;
	border: 2px solid #fff;
	border-radius: 50%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	display: inline-block;
	height: 16px;
	width: 16px;
	position: absolute;
	left: 8px;
}
.mapplic-revealed {
	display: block !important;
}
.mapplic-portrait .mapplic-container,
.mapplic-portrait .mapplic-sidebar {
	width: 100% !important;
}
.mapplic-portrait .mapplic-tooltip {
	max-width: 240px;
}
.mapplic-portrait .mapplic-minimap-background {
	width: 100px !important;
}
.mapplic-portrait.mapplic-element {
	height: auto !important;
}
.mapplic-portrait .mapplic-list-container {
	max-height: 400px;
}
.mapplic-element svg {
	width: 100%;
	height: 100%;
}
.mapplic-element svg a {
	cursor: pointer;
}
.mapplic-clickable:not(g),
g.mapplic-clickable > * {
	cursor: pointer;
	-webkit-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.mapplic-map-image [id^='nopointer'] {
	pointer-events: none;
}
[id^='landmarks'] .mapplic-clickable {
	cursor: pointer;
}
.mapplic-coordinates {
	background-color: rgba(255, 255, 255, 0.9);
	color: #505052;
	position: absolute;
	margin: 10px;
	margin-left: -80px;
	padding: 4px 6px;
	font-size: 14px;
	top: 0;
	left: 50%;
	pointer-events: none;
}
.mapplic-clickable:not(g),
g.mapplic-clickable > * {
	opacity: 0.9;
}
.mapplic-clickable:not(g):hover,
g.mapplic-clickable:hover > * {
	opacity: 0.8;
	fill: #e94e19;
}
.mapplic-active,
a.mapplic-active > path,
g.mapplic-active > * {
	opacity: 1 !important;
	fill: #e94e19;
	mix-blend-mode: multiply;
} /*!
Author  : Hunter Perrin
Version : 3.2.0
Link    : http://sciactive.com/pnotify/
*/
.ui-pnotify {
	right: 36px;
	position: absolute;
	height: auto;
	z-index: 2;
	width: calc(100% - 10px) !important;
	max-width: 560px;
	margin: 5px;
	top: auto;
}
@media only screen and (min-width: 768px) {
	.ui-pnotify {
		margin: 15px;
		width: calc(100% - 30px) !important;
	}
}
body > .ui-pnotify {
	position: fixed;
	z-index: 12;
}
.ui-pnotify-modal-overlay {
	background-color: rgba(0, 0, 0, 0.4);
	top: 0;
	left: 0;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
}
body > .ui-pnotify-modal-overlay {
	position: fixed;
	z-index: 8;
}
.ui-pnotify.ui-pnotify-in {
	display: block !important;
}
.ui-pnotify.ui-pnotify-move {
	-webkit-transition: left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	-o-transition: left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	transition: left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
}
.ui-pnotify.ui-pnotify-fade-slow {
	-webkit-transition: opacity 0.4s linear;
	-o-transition: opacity 0.4s linear;
	transition: opacity 0.4s linear;
	opacity: 0;
}
.ui-pnotify.ui-pnotify-fade-slow.ui-pnotify.ui-pnotify-move {
	-webkit-transition: opacity 0.4s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	-o-transition: opacity 0.4s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	transition: opacity 0.4s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
}
.ui-pnotify.ui-pnotify-fade-normal {
	-webkit-transition: opacity 0.25s linear;
	-o-transition: opacity 0.25s linear;
	transition: opacity 0.25s linear;
	opacity: 0;
}
.ui-pnotify.ui-pnotify-fade-normal.ui-pnotify.ui-pnotify-move {
	-webkit-transition: opacity 0.25s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	-o-transition: opacity 0.25s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	transition: opacity 0.25s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
}
.ui-pnotify.ui-pnotify-fade-fast {
	-webkit-transition: opacity 0.1s linear;
	-o-transition: opacity 0.1s linear;
	transition: opacity 0.1s linear;
	opacity: 0;
}
.ui-pnotify.ui-pnotify-fade-fast.ui-pnotify.ui-pnotify-move {
	-webkit-transition: opacity 0.1s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	-o-transition: opacity 0.1s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
	transition: opacity 0.1s linear, left 0.5s ease, top 0.5s ease, right 0.5s ease, bottom 0.5s ease;
}
.ui-pnotify.ui-pnotify-fade-in {
	opacity: 1;
}
.ui-pnotify .ui-pnotify-shadow {
	-webkit-box-shadow: 0 5px 25px -20px #000;
	box-shadow: 0 5px 25px -20px #000;
}
.ui-pnotify-container {
	background-position: 0 0;
	padding: 0.8em;
	height: 100%;
	margin: 0;
}
.ui-pnotify-container:after {
	content: ' ';
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}
.ui-pnotify-container.ui-pnotify-sharp {
	border-radius: 0;
}
.ui-pnotify-title {
	display: block;
	margin-bottom: 0.4em;
	margin-top: 0;
	font-size: 14px;
}
@media only screen and (min-width: 768px) {
	.ui-pnotify-title {
		font-size: inherit;
	}
}
.ui-pnotify-text {
	display: block;
	font-size: 12px;
}
@media only screen and (min-width: 768px) {
	.ui-pnotify-text {
		font-size: inherit;
	}
}
.ui-pnotify-icon,
.ui-pnotify-icon span {
	display: block;
	float: left;
	margin-right: 0.2em;
}
.ui-pnotify.stack-bottomleft,
.ui-pnotify.stack-topleft {
	left: 25px;
	right: auto;
}
.ui-pnotify.stack-bottomleft,
.ui-pnotify.stack-bottomright {
	bottom: 25px;
	top: auto;
}
.ui-pnotify.stack-modal {
	left: 50%;
	right: auto;
	margin-left: -150px;
}
.ui-pnotify-closer,
.ui-pnotify-sticker {
	float: right;
	margin-left: 0.2em;
}
.brighttheme {
	border-radius: 0;
}
.brighttheme.ui-pnotify-container {
	padding: 16px;
	border-radius: 4px;
}
.brighttheme .ui-pnotify-title {
	margin-bottom: 8px;
	color: #262628;
}
.brighttheme-notice {
	background-color: #fff;
	border: 0;
	color: #505052;
}
.brighttheme-info {
	background-color: #8fcedd;
	border: 0 solid #0286a5;
	color: #012831;
}
.brighttheme-success {
	background-color: #aff29a;
	border: 0 solid #35db00;
	color: #104300;
}
.brighttheme-error {
	background-color: #ffaba2;
	background-image: -o-repeating-linear-gradient(
		315deg,
		transparent,
		transparent 35px,
		rgba(255, 255, 255, 0.3) 35px,
		rgba(255, 255, 255, 0.3) 70px
	);
	background-image: repeating-linear-gradient(
		135deg,
		transparent,
		transparent 35px,
		rgba(255, 255, 255, 0.3) 35px,
		rgba(255, 255, 255, 0.3) 70px
	);
	border: 0 solid #ff1800;
	color: #4f0800;
}
.brighttheme-icon-closer,
.brighttheme-icon-info,
.brighttheme-icon-notice,
.brighttheme-icon-sticker,
.brighttheme-icon-success {
	position: relative;
	width: 16px;
	height: 16px;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	font-family: 'Courier New', Courier, monospace;
	border-radius: 50%;
}
.brighttheme-icon-closer:after,
.brighttheme-icon-info:after,
.brighttheme-icon-notice:after,
.brighttheme-icon-sticker:after,
.brighttheme-icon-success:after {
	position: absolute;
	top: 0;
	left: 4px;
}
.brighttheme-icon-notice {
	background-color: #2e2e00;
	color: #ffffa2;
	margin-top: 2px;
}
.brighttheme-icon-notice:after {
	content: '!';
}
.brighttheme-icon-info {
	background-color: #012831;
	color: #8fcedd;
	margin-top: 2px;
}
.brighttheme-icon-info:after {
	content: 'i';
}
.brighttheme-icon-success {
	background-color: #104300;
	color: #aff29a;
	margin-top: 2px;
}
.brighttheme-icon-success:after {
	content: '\002713';
}
.brighttheme-icon-error {
	position: relative;
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 16px solid #2e0400;
	font-size: 0;
	line-height: 0;
	color: #ffaba2;
	margin-top: 1px;
}
.brighttheme-icon-error:after {
	position: absolute;
	top: 1px;
	left: -4px;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	font-family: 'Courier New', Courier, monospace;
	content: '!';
}
.brighttheme-icon-closer,
.brighttheme-icon-sticker {
	display: inline-block;
}
.brighttheme-icon-closer {
	opacity: 0.6;
}
.brighttheme-icon-closer:hover {
	opacity: 1;
}
.brighttheme-icon-closer:after {
	content: '';
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10.828' height='10.828'%3E%3Cg id='Group_490' data-name='Group 490' transform='translate(4560.414 -452.586)' fill='none' stroke='rgb(118, 118, 120)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath id='Line_109' data-name='Line 109' transform='translate(-4559 454)' d='M0 0l8 8'/%3E%3Cpath id='Line_110' data-name='Line 110' transform='translate(-4559 454)' d='M0 8l8-8'/%3E%3C/g%3E%3C/svg%3E");
	width: 11px;
	height: 11px;
}
.brighttheme-icon-sticker:after {
	top: -5px;
	content: '\002016';
}
.brighttheme-icon-sticker.brighttheme-icon-stuck:after {
	content: '\00003E';
}
.brighttheme .ui-pnotify-action-bar input,
.brighttheme .ui-pnotify-action-bar textarea {
	display: block;
	width: 100%;
	margin-bottom: 12px !important;
}
.brighttheme .ui-pnotify-action-button {
	color: #e94e19;
	padding: 0;
	font-size: 14px;
	border: none;
	font-weight: 700;
	background: 0 0;
	cursor: pointer;
}
@media only screen and (min-width: 768px) {
	.brighttheme .ui-pnotify-action-button {
		font-size: inherit;
	}
}
.brighttheme .ui-pnotify-action-button:hover {
	color: #262628;
}
.brighttheme .ui-pnotify-action-button:focus {
	outline: 0;
}
.brighttheme .ui-pnotify-action-button.btn-primary {
	border: none;
	border-radius: 0;
}
.brighttheme-notice .ui-pnotify-action-button.btn-primary {
	background-color: #ff0;
	color: #4f4f00;
}
.brighttheme-info .ui-pnotify-action-button.btn-primary {
	background-color: #0286a5;
	color: #012831;
}
.brighttheme-success .ui-pnotify-action-button.btn-primary {
	background-color: #35db00;
	color: #104300;
}
.brighttheme-error .ui-pnotify-action-button.btn-primary {
	background-color: #ff1800;
	color: #4f0800;
}
