@keyframes zuckSlideTime {
	0% {
		max-width: 0;
	}
	100% {
		max-width: 100%;
	}
}

@keyframes zuckLoading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

#zuck-modal {
	outline: 0 !important;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	z-index: 100000;
	font-size: 14px;
	font-family: inherit;
}
#zuck-modal-content,
#zuck-modal-content .story-viewer,
#zuck-modal-content .story-viewer > .slides,
#zuck-modal-content .story-viewer > .slides > * {
	width: 100vw;
	height: 100%;
	top: 0;
	bottom: 0;
	position: absolute;
	overflow: hidden;
}
#zuck-modal * {
	user-select: none;
	outline: 0;
}

#zuck-modal.with-effects {
	transform: scale(0.01);
	transform-origin: top left;
	transition: 0.25s;
}
#zuck-modal.with-effects.animated {
	transform: scale(1);
	border-radius: 0;
	margin-top: 0 !important;
	margin-left: 0 !important;
}
#zuck-modal.with-effects.closed {
	transform: translateY(100%);
}

#zuck-modal .slider {
	width: 300vw;
	height: 100%;
	top: 0;
	bottom: 0;
	left: -100vw;
	position: absolute;
}
#zuck-modal .slider > * {
	width: 100vw;
	height: 100%;
	top: 0;
	bottom: 0;
	position: absolute;
}
#zuck-modal .slider > .previous {
	left: 0;
}
#zuck-modal .slider > .viewing {
	left: 100vw;
}
#zuck-modal .slider > .next {
	left: 200vw;
}
#zuck-modal .slider.animated {
	-webkit-transition: -webkit-transform 0.25s linear;
	transition: -webkit-transform 0.25s linear;
	transition: transform 0.25s linear;
	transition: transform 0.25s linear, -webkit-transform 0.25s linear;
}

#zuck-modal.with-cube #zuck-modal-content {
	perspective: 1000vw;
	transform: scale(0.95);
	perspective-origin: 50% 50%;
	overflow: visible;
	transition: 0.3s;
}
#zuck-modal.with-cube .slider {
	transform-style: preserve-3d;
	transform: rotateY(0deg);
}
#zuck-modal.with-cube .slider > .previous {
	backface-visibility: hidden;
	left: 100vw;
	transform: rotateY(270deg) translateX(-50%);
	transform-origin: center left;
}
#zuck-modal.with-cube .slider > .viewing {
	backface-visibility: hidden;
	left: 100vw;
	transform: translateZ(50vw);
}
#zuck-modal.with-cube .slider > .next {
	backface-visibility: hidden;
	left: 100vw;
	transform: rotateY(-270deg) translateX(50%);
	transform-origin: top right;
}

#zuck-modal-content .story-viewer.paused.longPress .head,
#zuck-modal-content .story-viewer.paused.longPress .slides-pointers,
#zuck-modal-content .story-viewer.paused.longPress .tip {
	opacity: 0;
}
#zuck-modal-content .story-viewer.viewing:not(.paused):not(.stopped) .slides-pointers > * > .active > b {
	-webkit-animation-play-state: running;
	animation-play-state: running;
}
#zuck-modal-content .story-viewer.next {
	z-index: 10;
}
#zuck-modal-content .story-viewer.viewing {
	z-index: 5;
}
#zuck-modal-content .story-viewer.previous {
	z-index: 0;
}
#zuck-modal-content .story-viewer.muted .tip.muted,
#zuck-modal-content .story-viewer.loading .head .loading {
	display: block;
}
#zuck-modal-content .story-viewer.loading .head .right .time,
#zuck-modal-content .story-viewer.loading .head .right .close {
	display: none;
}

#zuck-modal-content .story-viewer .slides-pagination span {
	position: absolute;
	top: 50vh;
	font-size: 48px;
	color: #fff;
	line-height: 48px;
	width: 48px;
	margin: 6px;
	transform: translateY(-50%);
	z-index: 1;
	text-align: center;
}

#zuck-modal-content .story-viewer .slides-pagination .previous {
	left: 0;
}

#zuck-modal-content .story-viewer .slides-pagination .next {
	right: 0;
}

#zuck-modal-content .story-viewer .slides-pointers {
	display: table;
	table-layout: fixed;
	border-spacing: 6px;
	border-collapse: separate;
	position: absolute;
	width: 100vh;
	top: 0;
	left: calc(50vw - 50vh);
	right: calc(50vw - 50vh);
	z-index: 100020;
}
#zuck-modal-content .story-viewer .slides-pointers > * {
	display: table-row;
}
#zuck-modal-content .story-viewer .slides-pointers > * > * {
	display: table-cell;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 2px;
}
#zuck-modal-content .story-viewer .slides-pointers > * > .seen {
	background: #fff;
}
#zuck-modal-content .story-viewer .slides-pointers > * > * > b {
	background: #fff;
	width: auto;
	max-width: 0;
	height: 2px;
	display: block;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
	border-radius: 2px;
}
#zuck-modal-content .story-viewer .slides-pointers > * > .active > b {
	-webkit-animation-name: zuckSlideTime;
	animation-name: zuckSlideTime;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

#zuck-modal-content .story-viewer .head {
	position: absolute;
	height: 56px;
	left: 0;
	right: 0;
	line-height: 56px;
	z-index: 100010;
	color: #fff;
	font-size: 14px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35), 1px 0 1px rgba(0, 0, 0, 0.35);
	padding: 12px 24px;
}
#zuck-modal-content .story-viewer .head .item-preview {
	overflow: hidden;
	vertical-align: top;
	background-size: cover;
	width: 42px;
	height: 42px;
	display: inline-block;
	margin-right: 9px;
	border-radius: 50%;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-position: center;
}
#zuck-modal-content .story-viewer .head .item-preview img {
	display: block;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	object-fit: cover;
}
#zuck-modal-content .story-viewer .head .time {
	opacity: 0.75;
	font-weight: 500;
	font-size: 13px;
	display: none !important;
}
#zuck-modal-content .story-viewer .head .left {
	line-height: 1 !important;
	display: inline-block;
	margin: 6px 0;
}
#zuck-modal-content .story-viewer .head .left .info {
	display: inline-block;
	max-width: 30vw;
	vertical-align: middle;
}
#zuck-modal-content .story-viewer .head .left .info > * {
	width: 100%;
	display: inline-block;
	line-height: 21px;
}
#zuck-modal-content .story-viewer .head .left .info .name {
	font-weight: 500;
}
#zuck-modal-content .story-viewer .head .right {
	float: right;
}
#zuck-modal-content .story-viewer .head .right .close,
#zuck-modal-content .story-viewer .head .back {
	font-size: 42px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	cursor: pointer;
	text-align: center;
	color: #fff !important;
}
#zuck-modal-content .story-viewer .head .left .back {
	display: none;
	width: 24px;
	margin: -9px -6px 0 -6px;
}
#zuck-modal-content .story-viewer .head .right .time {
	display: none;
}
#zuck-modal-content .story-viewer .head .loading {
	display: none;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	margin: 9px 0;
	border: 4px solid rgba(255, 255, 255, 0.2);
	box-sizing: border-box;
	border-top-color: #fff;
	-webkit-animation: zuckLoading 1s infinite linear;
	animation: zuckLoading 1s infinite linear;
}

#zuck-modal-content .story-viewer .head,
#zuck-modal-content .story-viewer .slides-pointers,
#zuck-modal-content .story-viewer .tip {
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

#zuck-modal-content .story-viewer .slides .item {
	display: none;
	overflow: hidden;
	background: #000;
}
#zuck-modal-content .story-viewer .slides .item:before {
	z-index: 4;
	background: transparent;
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
}
#zuck-modal-content .story-viewer .slides .item > .media {
	height: 100%;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: auto;
}
#zuck-modal-content .story-viewer .slides .item.active,
#zuck-modal-content .story-viewer .slides .item.active .tip.link {
	display: flex;
	justify-content: center;
	align-items: center;
}

#zuck-modal-content .story-viewer .tip {
	z-index: 5;
	text-decoration: none;
	display: none;
	border-radius: 24px;
	background: #555;
	font-size: 16px;
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 500;
	padding: 12px 24px;
}

#zuck-modal.rtl {
	direction: rtl;
	left: auto;
	right: 0;
}
#zuck-modal.rtl.with-effects {
	transform-origin: top right;
}
#zuck-modal.rtl.with-effects.animated {
	margin-left: auto !important;
	margin-right: 0 !important;
}
#zuck-modal.rtl .slider {
	left: auto;
	right: -100vw;
}
#zuck-modal.rtl .slider > .previous {
	left: auto;
	right: 0;
	transform: rotateY(-270deg) translateX(50%);
}
#zuck-modal.rtl .slider > .viewing {
	left: auto;
	right: 100vw;
}
#zuck-modal.rtl .slider > .next {
	left: auto;
	right: 200vw;
}
#zuck-modal.rtl.with-cube .slider > .previous {
	left: auto;
	right: 100vw;
	transform-origin: center right;
}
#zuck-modal.rtl.with-cube .slider > .viewing {
	left: auto;
	right: 100vw;
	transform: translateZ(50vw);
}
#zuck-modal.rtl.with-cube .slider > .next {
	left: auto;
	right: 100vw;
	transform-origin: top left;
	transform: rotateY(270deg) translateX(-50%);
}
#zuck-modal.rtl #zuck-modal-content .story-viewer .slides-pagination .previous {
	left: auto;
	right: 0;
}
#zuck-modal.rtl #zuck-modal-content .story-viewer .slides-pagination .next {
	right: auto;
	left: 0;
}
#zuck-modal.rtl #zuck-modal-content .story-viewer .head .item-preview {
	margin-right: auto;
	margin-left: 9px;
}
#zuck-modal.rtl #zuck-modal-content .story-viewer .head .right {
	float: left;
}
#zuck-modal.rtl #zuck-modal-content .story-viewer .tip {
	left: auto;
	right: 50%;
	transform: translateX(50%);
}

@media (max-width: 1024px) {
	#zuck-modal-content .story-viewer .slides .item > .media {
		width: 100%;
		height: auto;
	}
	#zuck-modal-content .story-viewer .head {
		top: 3px;
	}
	#zuck-modal-content .story-viewer .head .loading {
		width: 24px;
		height: 24px;
		margin: 6px 0;
	}
	#zuck-modal-content .story-viewer .head .item-preview {
		width: 30px;
		height: 30px;
		margin-right: 9px;
	}
	#zuck-modal-content .story-viewer .head .left {
		font-size: 15px;
		margin: 15px 0;
	}
	#zuck-modal-content .story-viewer .head .left > div {
		line-height: 30px;
	}
	#zuck-modal-content .story-viewer .head .right .time {
		display: block;
		white-space: nowrap;
		font-size: 15px;
		margin: 15px 0;
		line-height: 30px;
	}
	#zuck-modal-content .story-viewer .head .left > .back {
		display: none;
		background: transparent;
		z-index: 20;
		visibility: visible;
		position: absolute;
		height: 42px;
		width: 24px;
		line-height: 36px;
		text-align: left;
		vertical-align: top;
		text-shadow: none;
	}

	#zuck-modal-content .story-viewer.with-back-button .head .left > .back {
		display: block;
	}
	#zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
		margin-left: 18px;
	}

	#zuck-modal-content .story-viewer .slides-pointers {
		width: 100vw;
		left: 0;
		right: 0;
	}

	#zuck-modal-content .story-viewer .tip {
		font-size: 14px;
		padding: 6px 12px;
	}
	#zuck-modal-content .story-viewer .head .left .time {
		display: none;
	}

	#zuck-modal-content .story-viewer .head .right .close {
		font-size: 36px;
		position: absolute;
		right: 12px;
		top: 20px;
	}

	#zuck-modal.rtl #zuck-modal-content .story-viewer .head .item-preview {
		margin-right: auto;
		margin-left: 9px;
	}
	#zuck-modal.rtl #zuck-modal-content .story-viewer .head .left > .back {
		text-align: right;
	}
	#zuck-modal.rtl #zuck-modal-content .story-viewer.with-back-button .head .left .item-preview {
		margin-left: auto;
		margin-right: 18px;
	}
}

.stories.carousel {
	white-space: nowrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	user-select: none;
}
.stories.carousel::-webkit-scrollbar {
	width: 0;
	background: transparent;
}
.stories.carousel .story {
	display: inline-block;
	width: 18vw;
	max-width: 108px;
	margin: 0 6px;
	vertical-align: top;
}
.stories.carousel .story:first-child {
	margin-left: 0;
}
.stories.carousel .story:last-child {
	margin-right: 0;
}

.stories.carousel .story > .item-link {
	cursor: pointer;
	text-align: center;
	display: block;
}
.stories.carousel .story > .item-link:active > .item-preview {
	transform: scale(0.9);
}
.stories.carousel .story > .item-link > .item-preview {
	display: block;
	box-sizing: border-box;
	font-size: 0;
	max-height: 108px;
	height: 18vw;
	overflow: hidden;
	transition: transform 0.2s;
}
.stories.carousel .story > .item-link > .item-preview img {
	display: block;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	object-fit: cover;
}
.stories.carousel .story > .item-link > .info {
	display: inline-block;
	margin-top: 0.5em;
	line-height: 1.2em;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.stories.carousel .story > .item-link > .info .name {
	color: #000000;
	font-size: 12px;
	margin-top: 6px;
	font-weight: normal;
}
.stories.carousel .story > .item-link > .info .time {
	display: none;
}
.stories.carousel .story > .items {
	display: none;
}

.stories.list {
	white-space: nowrap;
	overflow: auto;
}
.stories.list .story {
	display: block;
	width: auto;
	margin: 6px;
	padding-bottom: 6px;
}

.stories.list .story > .item-link {
	text-align: left;
	display: block;
}
.stories.list .story > .item-link > .item-preview {
	height: 42px;
	width: 42px;
	max-width: 42px;
	margin-right: 12px;
	vertical-align: top;
	display: inline-block;
	box-sizing: border-box;
	font-size: 0;
	overflow: hidden;
}
.stories.list .story > .item-link > .item-preview img {
	display: block;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}
.stories.list .story > .item-link > .info {
	display: inline-block;
	line-height: 1.6em;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
}
.stories.list .story > .item-link > .info .name {
	font-weight: 500;
	display: block;
}
.stories.list .story > .item-link > .info .time {
	display: inline-block;
}
.stories.list .story > .items {
	display: none;
}

.stories.rtl {
	direction: rtl;
}
.stories.rtl.carousel .story:first-child {
	margin-left: auto;
	margin-right: 0;
}
.stories.rtl.carousel .story:last-child {
	margin-right: auto;
	margin-left: 0;
}
.stories.rtl.list .story > .item-link {
	text-align: right;
}
.stories.rtl.list .story > .item-link > .item-preview {
	margin-right: auto;
	margin-left: 12px;
}

/* Snapgram skins */
.stories.snapgram .story > .item-link {
	text-decoration: none;
	color: #333;
}
.stories.snapgram .story > .item-link > .item-preview {
	border-radius: 50%;
	padding: 2px;
	background: #1b75bc;
}
.stories.snapgram .story > .item-link > .item-preview img {
	border-radius: 50%;
	border: 3px solid #fff;
}

.stories.snapgram .story.seen {
	opacity: 0.4;
}
.stories.snapgram .story.seen > a > .item-preview {
	background: #999;
}
.stories.snapgram .story.seen > a {
	color: #999 !important;
}

.cms-rich-content .sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.cms-rich-content .container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.cms-rich-content .container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.cms-rich-content .container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.cms-rich-content .container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.cms-rich-content .container {
		max-width: 1140px;
	}
}

@media (min-width: 576px) {
	.cms-rich-content .only-mobile {
		display: none !important;
	}
}

@media (max-width: 576px) {
	.cms-rich-content .only-desktop {
		display: none !important;
	}
}
.cms-rich-content .container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}

@media (min-width: 576px) {
	.cms-rich-content .container,
	.container-sm {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.cms-rich-content .container,
	.container-sm,
	.container-md {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.cms-rich-content .container,
	.container-sm,
	.container-md,
	.container-lg {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	.cms-rich-content .container,
	.container-sm,
	.container-md,
	.container-lg,
	.container-xl {
		max-width: 1140px;
	}
}

.cms-rich-content .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.cms-rich-content .col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.cms-rich-content .col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.cms-rich-content .col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.cms-rich-content .col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.cms-rich-content .col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.cms-rich-content .col-xl-auto {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}

.cms-rich-content .col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.cms-rich-content .col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
}

.cms-rich-content .col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.3333333333%;
	flex: 0 0 8.3333333333%;
	max-width: 8.3333333333%;
}

.cms-rich-content .col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.6666666667%;
	flex: 0 0 16.6666666667%;
	max-width: 16.6666666667%;
}

.cms-rich-content .col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.cms-rich-content .col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.3333333333%;
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%;
}

.cms-rich-content .col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.6666666667%;
	flex: 0 0 41.6666666667%;
	max-width: 41.6666666667%;
}

.cms-rich-content .col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.cms-rich-content .col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.3333333333%;
	flex: 0 0 58.3333333333%;
	max-width: 58.3333333333%;
}

.cms-rich-content .col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.6666666667%;
	flex: 0 0 66.6666666667%;
	max-width: 66.6666666667%;
}

.cms-rich-content .col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.cms-rich-content .col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.3333333333%;
	flex: 0 0 83.3333333333%;
	max-width: 83.3333333333%;
}

.cms-rich-content .col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.6666666667%;
	flex: 0 0 91.6666666667%;
	max-width: 91.6666666667%;
}

.cms-rich-content .col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 576px) {
	.cms-rich-content .col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.cms-rich-content .col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.cms-rich-content .col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.cms-rich-content .col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.cms-rich-content .col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.cms-rich-content .col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.cms-rich-content .col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.cms-rich-content .col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.cms-rich-content .col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.cms-rich-content .col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.cms-rich-content .col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.cms-rich-content .col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.cms-rich-content .col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.cms-rich-content .col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 768px) {
	.cms-rich-content .col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.cms-rich-content .col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.cms-rich-content .col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.cms-rich-content .col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.cms-rich-content .col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.cms-rich-content .col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.cms-rich-content .col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.cms-rich-content .col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.cms-rich-content .col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.cms-rich-content .col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.cms-rich-content .col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.cms-rich-content .col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.cms-rich-content .col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.cms-rich-content .col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.cms-rich-content .col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.cms-rich-content .col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.cms-rich-content .col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.cms-rich-content .col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.cms-rich-content .col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.cms-rich-content .col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.cms-rich-content .col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.cms-rich-content .col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.cms-rich-content .col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.cms-rich-content .col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.cms-rich-content .col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.cms-rich-content .col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.cms-rich-content .col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.cms-rich-content .col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 1200px) {
	.cms-rich-content .col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}

	.cms-rich-content .col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: 100%;
	}

	.cms-rich-content .col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.3333333333%;
		flex: 0 0 8.3333333333%;
		max-width: 8.3333333333%;
	}

	.cms-rich-content .col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.6666666667%;
		flex: 0 0 16.6666666667%;
		max-width: 16.6666666667%;
	}

	.cms-rich-content .col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.cms-rich-content .col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.3333333333%;
		flex: 0 0 33.3333333333%;
		max-width: 33.3333333333%;
	}

	.cms-rich-content .col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.6666666667%;
		flex: 0 0 41.6666666667%;
		max-width: 41.6666666667%;
	}

	.cms-rich-content .col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.cms-rich-content .col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.3333333333%;
		flex: 0 0 58.3333333333%;
		max-width: 58.3333333333%;
	}

	.cms-rich-content .col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.6666666667%;
		flex: 0 0 66.6666666667%;
		max-width: 66.6666666667%;
	}

	.cms-rich-content .col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}

	.cms-rich-content .col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.3333333333%;
		flex: 0 0 83.3333333333%;
		max-width: 83.3333333333%;
	}

	.cms-rich-content .col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.6666666667%;
		flex: 0 0 91.6666666667%;
		max-width: 91.6666666667%;
	}

	.cms-rich-content .col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.cms-rich-content .d-none {
	display: none !important;
}

.cms-rich-content .d-block {
	display: block !important;
}

.cms-rich-content .justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.cms-rich-content .justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.cms-rich-content .align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

@media (min-width: 576px) {
	.cms-rich-content .align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
}

@media (min-width: 768px) {
	.cms-rich-content .align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
}

@media (min-width: 992px) {
	.cms-rich-content .align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
}

@media (min-width: 1200px) {
	.cms-rich-content .align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
}

.cms-rich-content .m-0 {
	margin: 0 !important;
}

.cms-rich-content .mb-0 {
	margin-bottom: 0 !important;
}

.cms-rich-content .mb-1 {
	margin-bottom: 0.25rem !important;
}

.cms-rich-content .mb-2 {
	margin-bottom: 0.5rem !important;
}

.cms-rich-content .mb-3 {
	margin-bottom: 1rem !important;
}

.cms-rich-content .mb-4 {
	margin-bottom: 1.5rem !important;
}

.cms-rich-content .mb-5 {
	margin-bottom: 3rem !important;
}

.cms-rich-content .text-justify {
	text-align: justify !important;
}

.cms-rich-content .text-left {
	text-align: left !important;
}

.cms-rich-content .text-right {
	text-align: right !important;
}

.cms-rich-content .text-center {
	text-align: center !important;
}

.cms-rich-content .text-muted {
	color: #6c757d !important;
}

.cms-rich-content .mx-auto {
	margin: auto !important;
}

.cms-rich-content .img-fluid {
	max-width: 100%;
	height: auto;
}

.cms-rich-content .float-right {
	float: right !important;
}

.cms-rich-content .float-left {
	float: right !important;
}

.cms-rich-content .rounded-circle {
	border-radius: 50% !important;
}

.cms-rich-content .rounded-pill {
	border-radius: 50rem !important;
}

.cms-rich-content .card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.cms-rich-content p {
	margin-top: 0;
	margin-bottom: 1rem;
}

.cms-rich-content .card > hr {
	margin-right: 0;
	margin-left: 0;
}

.cms-rich-content .card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem;
}

.cms-rich-content .card-title {
	margin-bottom: 0.75rem;
}

.cms-rich-content .card-subtitle {
	margin-top: -0.375rem;
	margin-bottom: 0;
}

.cms-rich-content .card-text:last-child {
	margin-bottom: 0;
}

.cms-rich-content .card-link:hover {
	text-decoration: none;
}

.cms-rich-content .card-link + .card-link {
	margin-left: 1.25rem;
}

.cms-rich-content .card-header {
	padding: 0.75rem 1.25rem;
	margin-bottom: 0;
	color: inherit;
	background-color: rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.cms-rich-content .card-header + .list-group .list-group-item:first-child {
	border-top: 0;
}

.cms-rich-content .card-footer {
	padding: 0.75rem 1.25rem;
	background-color: rgba(0, 0, 0, 0.03);
	border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.cms-rich-content .card-header-tabs {
	margin-right: -0.625rem;
	margin-bottom: -0.75rem;
	margin-left: -0.625rem;
	border-bottom: 0;
}

.cms-rich-content .card-header-pills {
	margin-right: -0.625rem;
	margin-left: -0.625rem;
}

.cms-rich-content .card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem;
}

.cms-rich-content .card-img {
	width: 100%;
}

.cms-rich-content .card-img-top {
	width: 100%;
}

.cms-rich-content .card-img-bottom {
	width: 100%;
}

.cms-rich-content .card-deck {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cms-rich-content .card-deck .card {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	.cms-rich-content .card-deck {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-right: -15px;
		margin-left: -15px;
	}

	.cms-rich-content .card-deck .card {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-right: 15px;
		margin-bottom: 0;
		margin-left: 15px;
	}
}

.cms-rich-content .card-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cms-rich-content .card-group > .card {
	margin-bottom: 15px;
}

@media (min-width: 576px) {
	.cms-rich-content .card-group {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.cms-rich-content .card-group > .card {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		margin-bottom: 0;
	}

	.cms-rich-content .card-group > .card + .card {
		margin-left: 0;
		border-left: 0;
	}
}

.cms-rich-content .card-columns .card {
	margin-bottom: 0.75rem;
}

.cms-rich-content .btn.btn-primary {
	font-size: 16px;
	padding: 10px;
	font-weight: 400;
	border-radius: 5px;
	background-color: #1b75bc;
	color: white;
	display: inline-flex;
}

.cms-rich-content h1,
.cms-rich-content h2,
.cms-rich-content h3,
.cms-rich-content h4,
.cms-rich-content h5,
.cms-rich-content h6 {
	color: #193a8e;
}

.cms-rich-content .table-responsive {
	overflow-y: auto;
}
.cms-rich-content .table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	font-size: 16px;
	color: #333;
}

.cms-rich-content .table th {
	background-color: #004080;
	color: white;
	padding: 10px;
	text-align: center;
}

.cms-rich-content .table td {
	padding: 10px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}

.cms-rich-content .table tr:nth-child(odd) {
	background-color: #f9f9f9;
}

.cms-rich-content .table tr:nth-child(even) {
	background-color: #ffffff;
}

@media (min-width: 576px) {
	.cms-rich-content .card-columns {
		-webkit-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1;
	}

	.cms-rich-content .card-columns .card {
		display: inline-block;
		width: 100%;
	}
}
