.fragment.slides {
}

.Slideshow {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.Slideshow.compactSize {
	height: 600px;
	min-height: 75vh;
	max-height: 100vh;
}

.Slideshow.fullSize {
	height: calc(100vh - 82px);
	max-height: 100%;
}






@media screen and (max-height: 416px) {

	.Slideshow {
		max-height: calc(100vh - 82px);
	}
}

.Slideshow .slides {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.Slideshow .slides li {
	margin: 0;
	padding: 0;
}

.Slideshow .slides > li {
	position: absolute;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.Slideshow .textPh {
	z-index: 51;
	pointer-events: none;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 25px 57px 25px;
	max-width: 790px;
	box-sizing: border-box;
}

@media screen and (min-width: 800px) {
	.Slideshow .textPh {
		padding: 0 88px 120px;
	}
}


.Slideshow .clicker {
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
	z-index: 55;
}

.Slideshow .clicker > * {
}

.Slideshow .btn {
	float: left;
}



.Slideshow .tile {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 51;
}


.Slideshow .navigation {
	position: absolute;
	bottom: 16px;
	height: 24px;
	width: 100%;
	text-align: center;
	z-index: 1000;
	transition: bottom ease-out .2s;
}

.Slideshow .playing .navigation {
	bottom: -30px;
}

.Slideshow .navigation > div {
	display: inline-block;
}

.Slideshow .navigation > div > * {
	height: 24px;
	float: left;
}


.Slideshow .navigation .left, .Slideshow .navigation .right {
	cursor: pointer;
	pointer-events: all;
	display: block;
	margin: 0 12px;
	width: 24px;
	background-size: 12px 24px;
	background-repeat: no-repeat;
}

.Slideshow .navigation .left {
	background-image: url('https://www.swireblueocean.com/images/arrowleft.svg');
	background-position: right top;
}

.Slideshow .navigation .right {
	background-image: url('https://www.swireblueocean.com/images/arrowright.svg');
	background-position: left top;
}

.Slideshow .navigation .pager span {
	line-height: 24px;
	font-size: 17.5px;
}


@media screen and (max-width: 516px) {

	.Slideshow .navigation {
		opacity: 0;
		pointer-events: none;
	}
}


.Slideshow .hasVideo {
	background-size: cover !important;
	background-position: center top !important;
}

.Slideshow .hasVideo iframe {
display:none;
}
.Slideshow .hasVideo iframe.playing {
display:block;
}

.Slideshow .hasVideo.playing iframe {

	display: block;
	z-index: 1005;
}

.Slideshow .hasVideo .play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	margin: 0;
	transform: translate(-50%,-50%);
	background: url('../../../../images/icon_play.svg') no-repeat center center;
	background-size: 80px 80px;
	cursor: pointer;
	opacity: 1;
	transition: all .3s ease-in-out;
	vertical-align: bottom;
}

.Slideshow .hasVideo .watch {
}


@media screen and (max-width: 760px) {
	.Slideshow .hasVideo .play {
		background-size: 55px;
	}

	.Slideshow .watch {
		padding: 100px 0 0;
	}
}

.Slideshow .hasVideo.playing .play {
	pointer-events: none;
	opacity: 0;
}

.Slideshow .hasVideo .video_contain {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 50;
}

.Slideshow .hasVideo iframe {
	z-index: 51;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.Slideshow.isNarrow .hasVideo iframe {
	height: 100%; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
	width: 100vw;
	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
}

.Slideshow.isWide .hasVideo iframe {
	width: 100%;
	height: 100vh;
	min-height: 177.77vw;
}


.Slideshow .progress {
	display: none;
}

.Slideshow .watch {
	position: absolute;
	top: 50%;
	left: 50%;
	padding: 125px 0 0;
	margin: 0;
	transform: translate(-50%,-50%);
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
}

@media screen and (min-width: 760px) {
	.Slideshow .progress {
		display: block;
		list-style: none;
		padding: 0;
		margin: 0;
		position: absolute;
		bottom: 34px;
		left: 0;
		width: 100%;
		text-align: center;
	}

	.Slideshow .progress > li {
		margin: 0;
		padding: 0;
		background-color: #898989;
		width: 17px;
		height: 17px;
		display: inline-block;
		cursor: pointer;
		margin-left: 4px;
		margin-right: 4px;
		border: 0;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		border-radius: 50%;
	}

	.Slideshow .progress > li.selected {
		background-color: #fff;
	}
}