


/* video-thumbnail */

.digix-video-thumbnail {
	position: relative;
	display: block;
}

.digix-video-thumbnail:after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	content: "";
	background-image: url('../images/video-play-icon.png');
	opacity: 1;
	width: 24px;
	height: 24px;
}

.digix-video-thumbnail:hover:after {
	opacity: 0.8;
}

.digix-video-thumbnail.digix-video-thumbnail-large:after {
	background-image: url('../images/video-play-icon-large.png');
	width: 64px;
	height: 64px;
}


/* lightbox */

.digix-lightbox a {
	outline: none !important;
}

.digix-lightbox-container {
	display: none;
}

.digix-lightbox-container ul,
li {
	margin: 0;
	padding: 0;
	list-style: none;
	border-width: 0
}

.digix-lightbox-container .digix-lightbox-wrapper {
	background-color: #fff;
	color: #333;
	overflow: hidden;
	padding: 0;
	position: fixed;
	top: 20%;
	z-index: 99999999;
	opacity: 1;
	-webkit-animation-duration: .25s;
	animation-duration: .25s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	width: 1200px
}

.digix-lightbox-container.open .digix-lightbox-wrapper {
	-webkit-animation-name: digix_anim-open;
	animation-name: digix_anim-open;
	-webkit-animation-timing-function: cubic-bezier(.1, .4, .2, 1.4);
	animation-timing-function: cubic-bezier(.1, .4, .2, 1.4)
}

.digix-lightbox-container.close .digix-lightbox-wrapper {
	-webkit-animation-name: anim-one;
	animation-name: digix_anim-close;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

.digix-lightbox-container .digix-header {
	background-color: #fbfbfb;
	height: 50px;
	position: relative;
	text-align: left;
	overflow: hidden;
	width: 100%
}

.digix-lightbox-container .digix-header span.digix-product-title {
	margin-left: 15px;
	font-size: 14px;
	line-height: 50px;
	color: #333;
	display: inline-block;
	float: left;
	text-transform: uppercase;
}

.digix-lightbox-container .digix-lightbox-close {
	background: url("../img/cross.svg") no-repeat #ffffff;
	border-radius: 100%;
	height: 28px;
	width: 28px;
	display: block;
	position: absolute;
	top: 10px;
	right: 12px;
	z-index: 1;
	cursor: pointer;
	background-position: center;
	background-size: 10px;
	transition: 0.50s;
	-webkit-transition: 0.50s;
	-moz-transition: 0.50s;
	-ms-transition: 0.50s;
	-o-transition: 0.50s;
}

.digix-lightbox-container .digix-lightbox-close:hover {
	transition: 0.50s;
	-webkit-transition: 0.50s;
	-moz-transition: 0.50s;
	-ms-transition: 0.50s;
	-o-transition: 0.50s;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}


/* loading */

.digix-lightbox-container .digix-loading-wrapper {
	background: #fff;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0
}

.digix-lightbox-container .digix-loader {
	border-top: 6px solid #ccc;
	border-right: 6px solid #ccc;
	border-bottom: 6px solid #ccc;
	border-left: 6px solid #999;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: digix_loader 1.1s infinite linear;
	animation: digix_loader 1.1s infinite linear
}

.digix-lightbox-container .digix-loader,
.digix-lightbox-container .digix-loader:after {
	border-radius: 50%;
	width: 60px;
	height: 60px
}

.digix-lightbox-container .digix-loading-bar {
	position: absolute;
	margin: auto;
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 30px;
	height: 30px
}


/* keyframes */

@-webkit-keyframes digix_anim-open {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, 1)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1)
	}
}

@keyframes digix_anim-open {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.6, .6, 1);
		transform: scale3d(.6, .6, 1)
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@-webkit-keyframes digix_anim-close {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.9, .9, .2)
	}
}

@keyframes digix_anim-close {
	0% {
		opacity: 1
	}
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.9, .9, 1);
		transform: scale3d(.9, .9, 1)
	}
}

@-webkit-keyframes digix_loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes digix_loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}