.cb-item {
	text-align: center;
	position: relative;
}
.cb-item-content{
	position: relative;
}
.cb-item-content .cb-img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.cb-item-content .cb-img.secondary-image,
.cb-item-content:hover .cb-img.primary-image {
	display: none;
}
.cb-item-content:hover .cb-img.secondary-image {
	display: inline-block;
}
.cb-video {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	overflow: hidden;
}
.cb-video-play,
.cb-video iframe,
.cb-video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.cb-video-play {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: transparent;
	cursor: pointer;
	z-index: 2;
}
.cb-video.has-embed .cb-video-play {
	visibility: hidden;
}
.cb-video.has-embed .cb-video-toggle {
	visibility: visible;
}
.cb-video.has-embed .cb-video-poster {
	display: none;
}
.cb-video-poster {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}
.cb-video-poster.cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cb-video-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .72);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .28);
	transform: translate(-50%, -50%);
	transition: opacity .2s;
}
.cb-video-play-icon:after {
	content: '';
	position: absolute;
	top: 18px;
	left: 23px;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	border-left: 17px solid #FFF;
}
.cb-video-toggle.is-playing .cb-video-play-icon:before,
.cb-video-toggle.is-playing .cb-video-play-icon:after {
	content: '';
	position: absolute;
	top: 18px;
	width: 6px;
	height: 22px;
	background: #FFF;
	border: 0;
}
.cb-video-toggle.is-playing .cb-video-play-icon:before {
	left: 20px;
}
.cb-video-toggle.is-playing .cb-video-play-icon:after {
	left: 32px;
}
.cb-video-toggle.is-playing .cb-video-play-icon,
.cb-video-play.cb-autoplay .cb-video-play-icon {
	opacity: 0;
}
.cb-video-toggle.is-playing:hover .cb-video-play-icon,
.cb-video-toggle.is-playing:focus-visible .cb-video-play-icon {
	opacity: 1;
}
.cb-video-play:hover .cb-video-play-icon,
.cb-video-play:focus-visible .cb-video-play-icon {
	background: rgba(0, 0, 0, .9);
	box-shadow: 0 3px 16px rgba(0, 0, 0, .4);
}
.cb-video-play:focus-visible {
	outline: 2px solid #FFF;
	outline-offset: -4px;
}
.cb-caption-over {
	position: absolute;
	left: 5%;
	right: 5%;
}
.cb-caption-top {
	top: 5%;
}
.cb-caption-middle {
	top: 50%;
	transform: translateY(-50%);
}
.cb-caption-bottom {
	bottom: 5%;
}
.cb-caption.click-through {
	pointer-events: none;
}
.cb-caption.click-through a,
.cb-caption.click-through button {
	pointer-events: auto;
}
.cb-caption > :first-child {
	margin-top: 0;
}
.cb-caption > :last-child {
	margin-bottom: 0;
}
.img-rb .cb-item-content img {
	border-radius: 5px;
}
/* accordion */
.cb-wrapper.type-4 {
	margin-top: 1px;
}
.cb-wrapper.type-4 .cb-item {
	width: 100%;
}
.cb-wrapper.type-4 .cb-item-title {
	text-align: left;
	padding: 10px;
	border: 1px solid #D0D5DB;
	margin-top: -1px;
	cursor: pointer;
}
.cb-wrapper.type-4 .cb-item-title:before {
	content: '+';
	font: bold 1.2em/1 Arial;
	color: #AAB2BD;
	margin-right: 5px;
}
.cb-wrapper.type-4 .cb-item.active .cb-item-title:before {
	content: '−';
}
/* grid values for 480 px. They are not present in BS 3 */
@media (max-width: 479px) {
	[class*=".col-xxs-"]{ float: left; }
	.col-xxs-1  { width: 8.3%; }
	.col-xxs-2  { width: 16.6%; }
	.col-xxs-3  { width: 25%; }
	.col-xxs-4  { width: 33.3%; }
	.col-xxs-5  { width: 41.8%; }
	.col-xxs-6  { width: 50%; }
	.col-xxs-7  { width: 58.3%; }
	.col-xxs-8  { width: 66.6%; }
	.col-xxs-9  { width: 75%; }
	.col-xxs-10 { width: 83.3%; }
	.col-xxs-11 { width: 91.6%; }
	.col-xxs-12 { width: 100%; }
}
/* special classes used in layout */
.cb .compact-gutters-container {
	margin: 0 -5px;
}
.cb .compact-gutters {
	padding: 0 5px 9px 5px;
}
.box-shadow, .img-box-shadow img {
	box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.15);
}
.clear-both {
	clear: both;
}
/* grid */
.cb-grid {
	--n: 1;
	--gap: 20px;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	margin-top: var(--gap);
	margin-bottom: var(--gap);
}
.cb-grid .cb-item {
	flex-shrink: 0;
	width: calc((100% - (var(--gap) * (var(--n) - 1))) / var(--n));
}
.cb-grid.xl-1 {--n: 1}
.cb-grid.xl-2 {--n: 2}
.cb-grid.xl-3 {--n: 3}
.cb-grid.xl-4 {--n: 4}
.cb-grid.xl-5 {--n: 5}
.cb-grid.xl-6 {--n: 6}
@media (max-width: 1199px) {
	.cb-grid.lg-1 {--n: 1}
	.cb-grid.lg-2 {--n: 2}
	.cb-grid.lg-3 {--n: 3}
	.cb-grid.lg-4 {--n: 4}
	.cb-grid.lg-5 {--n: 5}
	.cb-grid.lg-6 {--n: 6}
}
@media (max-width: 991px) {
	.cb-grid.md-1 {--n: 1}
	.cb-grid.md-2 {--n: 2}
	.cb-grid.md-3 {--n: 3}
	.cb-grid.md-4 {--n: 4}
	.cb-grid.md-5 {--n: 5}
	.cb-grid.md-6 {--n: 6}
}
@media (max-width: 767px) {
	.cb-grid {--gap: 15px}
	.cb-grid.sm-1 {--n: 1}
	.cb-grid.sm-2 {--n: 2}
	.cb-grid.sm-3 {--n: 3}
	.cb-grid.sm-4 {--n: 4}
	.cb-grid.sm-5 {--n: 5}
	.cb-grid.sm-6 {--n: 6}
}
@media (max-width: 480px) {
	.cb-grid.xs-1 {--n: 1}
	.cb-grid.xs-2 {--n: 2}
	.cb-grid.xs-3 {--n: 3}
	.cb-grid.xs-4 {--n: 4}
	.cb-grid.xs-5 {--n: 5}
	.cb-grid.xs-6 {--n: 6}
}
/* since 3.1.0 */
