.backvision {
	position: relative;

	width: 100%;
	height: 75vh;
	overflow: hidden;
}

.backvision.bv-dragging {
	cursor: move;
}


/* controls/icons */

.bv-controls {}

.bv-controls .bv-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	opacity: 1;
	font: 0/0 a;
	text-shadow: none;
	line-height: 0;
	outline: 0;
}

.bv-controls .bv-icon:hover {
	opacity: 0.8;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.bv-controls .bv-fullscreen {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 100;
}

.bv-controls .bv-sound {
	position: absolute;
	right: 30px;
	bottom: 30px;
	z-index: 110;
}

.bv-controls .bv-sound .bv-icon {
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
}

.bv-media-video .bv-sound .bv-icon {
	visibility: visible;
	opacity: 0.3;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.bv-controls .bv-navigation {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 100;
}

.bv-controls .bv-navigation .bv-icon {
	width: 50px;
	height: 50px;
}

.bv-controls .bv-navigation .bv-move-left {
	position: absolute; 
	top: -25px;
	left: 5%;
	line-height: 0;
}

.bv-controls .bv-navigation .bv-move-right {
	position: absolute; 
	top: -25px;
	right: 5%;
	line-height: 0;
}

.bv-controls .bv-pagination {
	position: absolute;
	bottom: 30px;
	left: 0;	
	width: 100%;
	text-align: center;
	z-index: 100;
	pointer-events: none;
}

.bv-controls .bv-pagination .bv-icon-link {
	display: inline-block;
	margin: 0 7px;
}

.bv-controls .bv-pagination .bv-icon,
.bv-controls .bv-pagination .bv-icon:hover {
	width: 7px;
	height: 7px;
	opacity: 0.3;
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
}

.bv-controls .bv-pagination .bv-icon.bv-checked {
	opacity: 0.7;
}

.bv-controls .bv-pause {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -25px;
	margin-top: -25px;
	z-index: 40;
}

.bv-controls .bv-pause .bv-icon {
	width: 50px;
	height: 50px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
}

.bv-paused .bv-controls .bv-pause .bv-icon {
	visibility: visible;
	opacity: 0.2;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.bv-controls .bv-pause .bv-icon:hover {
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	transform: none;
}


/* banners */

.bv-banners {
	list-style: none!important;
	margin: 0!important;
	padding: 0!important;
}

.bv-banners .bv-banner-wrap { 
	margin: 0!important;
	padding: 0!important;
}

.bv-banners .bv-active-banners {
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
}

.bv-banners .bv-banner {
	position: absolute;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	visibility: hidden;
	opacity: 0;
	width: 70%;
	margin: 0 auto;
}

.bv-banners .bv-center-wrap {
	text-align: center;
}

/* banner transitions (scale & translate) */

.bv-banners .bv-move-down {
	-webkit-transform: translate(0, -30px);
	-moz-transform: translate(0, -30px);
	-o-transform: translate(0, -30px);
	transform: translate(0, -30px);
}

.bv-banners .bv-move-up {
	-webkit-transform: translate(0, 30px);
	-moz-transform: translate(0, 30px);
	-o-transform: translate(0, 30px);
	transform: translate(0, 30px);
}

.bv-banners .bv-move-left {
	-webkit-transform: translate(100px, 0);
	-moz-transform: translate(100px, 0);
	-o-transform: translate(100px, 0);
	transform: translate(100px, 0);
}

.bv-banners .bv-move-right {
	-webkit-transform: translate(-100px, 0);
	-moz-transform: translate(-100px, 0);
	-o-transform: translate(-100px, 0);
	transform: translate(-100px, 0);
}

.bv-banners .bv-zoom-out {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

.bv-banners .bv-zoom-in {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
}

.bv-banners .bv-ease-in {
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	-moz-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);
}

.bv-banners .bv-ease-out {
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-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);
}

.bv-banners .bv-ease-in-out {
	-webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	-moz-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
	transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bv-banners .bv-banner-active { 
	/* reset all transformations to 0 */
	-webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	-moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	-o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
	visibility: visible;
	opacity: 1;
}

/* banner <div class="bv-text"> element */

.bv-banners .bv-text {	
	display: inline;
    font-size: 30px;
	font-size: calc(15px + 1.125vw);
   	line-height: 1.3em;
    font-weight: bold;
    color: #fff;
}

.bv-banners .bv-text.bv-small {
	font-size: 20px;
	font-size: calc(10px + 0.75vw);
}

.bv-banners bv-text.bv-big {
	font-size: 40px;
    font-size: calc(20px + 1.5vw);
}

.bv-banners .bv-text.bv-black {
	color: #fff;
	background: #000;
	line-height: 1.85em;
	box-shadow: -0.25em 0 0 0.25em #000, 0.25em 0 0 0.25em #000;
}

.bv-banners .bv-text.bv-red {
	color: #fff;
	background: #e24b4a;
	line-height: 1.85em;
	box-shadow: -0.25em 0 0 0.25em #e24b4a, 0.25em 0 0 0.25em #e24b4a;
}

.bv-banners .bv-text.bv-white {
	color: #000;
	background: #fff;
	line-height: 1.85em;
	box-shadow: -0.25em 0 0 0.25em #fff, 0.25em 0 0 0.25em #fff;
}

.bv-banners .bv-text.bv-border-black {
	background: none;
	color: #000;
	border: 0.1em solid #000;
	box-shadow: none;
	padding: 0.5em 0.75em;
	display: inline-block;
}

.bv-banners .bv-text.bv-border-white {
	background-color:#66b032;
	color: #fff;
	box-shadow: none;
	padding: 0.5em 0.75em;
	display: inline-block;
	border-radius: 100px;
}

/* banner <a class="bv-link"> element */

.bv-banners .bv-link {
	display: inline-block;
	font-family: 'Courier New', Courier, sans-serif;
	font-size: 18px;
	font-size: calc(10px + 0.6vw);
	line-height: 1.4em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	padding-top: 10px;
	padding-top: 0.75vw;
}

.bv-banners .bv-text .bv-link {
	font-size: inherit;
}

.bv-banners .bv-link:hover {
	text-decoration: none;
	color: #fff;
}

.bv-banners .bv-link:after {
	content: "";
	display: block;
	width: 0;
	height: 3px;
	background-color: transparent;;
	line-height: 0;
	outline: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.bv-banners .bv-link:hover:after {
	width: 100%;
	background-color: #85ffc9;
}

/* progress bar */

.bv-progress-bar {
	position: absolute;
	top: 0; left: 0;
	width: 0;
	height: 10px;
	background-color: #fff;
	opacity: 0.2;
	z-index: 50;
}

/* preloader */

.bv-preloader {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -24px;
	margin-top: -24px;
	width: 48px;
	height: 48px;
}

@-webkit-keyframes hideshow {
  0% { opacity: 1; }
  50% { opacity: 0; }
}

@-moz-keyframes hideshow {
  0% { opacity: 1; }
  50% { opacity: 0; }
}

@-o-keyframes hideshow {
  0% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes hideshow {
  0% { opacity: 1; }
  50% { opacity: 0; }
}

.bv-preloader svg #p1,
.bv-preloader svg #p2,
.bv-preloader svg #p3,
.bv-preloader svg #p4 {
  	-webkit-animation: hideshow 1.8s ease  normal infinite;
  	-moz-animation: hideshow 1.8s ease normal infinite;
  	-o-animation: hideshow 1.8s ease normal infinite;
  	animation: hideshow 1.8s ease normal infinite;
}
			
.bv-preloader svg #p1 {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	-o-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.bv-preloader svg #p2 {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	-o-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.bv-preloader svg #p3 {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	-o-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.bv-preloader svg #p4 {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	-o-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

			
			