#flipper-component {
	background-color: #f5f5f5;
}

body {
	background: #f5f5f5;
}

#header-color {
	padding: 5px;
}

.header-space {
	top: 50px;
}

#viewer-flipr {
	background: none;
}


#viewer-flipr .icon {
	background: url(../../customdesign/flipr.png) no-repeat 0 0;
	background-position: right;
	background-size: 70px 70px;
	width: 74px;
	height: 70px;
	margin-right: -20px;
	background-position: 50%;
}
.viewer-flipl-outer{
	width:74px;
}

@media screen and (min-width: 1367px) {
	#viewer-flipr .icon:hover{
		animation-name: f-Right;
		animation-delay: 0s;
		animation-duration: 0.5s;
		animation-iteration-count: infinite;
		animation-fill-mode: backwards;
		animation-timing-function: linear;
	}	
}
@media screen and (max-width: 1366px) {
	#viewer-flipr .icon:active{
		animation-name: f-Right;
		animation-delay: 0;
		animation-duration: 0.5s;
		animation-iteration-count: 1;
	}	
}
@keyframes f-Right {
	0%{
		background-position: right;
	  }
	50%{
		background-position: middle;
	}
	100%{
		background-position: left;
	}
}

#viewer-flipl {
	background: none;
}

#viewer-flipl .icon {
	background: url(../../customdesign/flipl.png) no-repeat 0 0;
	background-position: left;
	background-size: 70px 70px;
	width: 74px;
	height: 70px;
	margin-left: -20px;
	background-position: 50%;
}

@media screen and (min-width: 1367px) {
	#viewer-flipl .icon:hover{
		animation-name: f-Left;
		animation-delay: 0s;
		animation-duration: 0.5s;
		animation-iteration-count: infinite;
		animation-fill-mode: backwards;
		animation-timing-function: linear;
	}	
}
@media screen and (max-width: 1366px) {
	#viewer-flipl .icon:active{
		animation-name: f-Left;
		animation-delay: 0;
		animation-duration: 0.5s;
		animation-iteration-count: 1;
	}	
}

@keyframes f-Left {
	0%{
		background-position: left;
	  }
	50%{
		background-position: middle;
	}
	100%{
		background-position: right;
	}
}
.viewer-btn .icon{
	margin-left: -25px;
	width: 74px;
}

.viewer-btn-outer {
	width: 74px;
}

#header-color {
	display: block;
	background-color: #ffffa8;
}


#lt-add {
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	height: 0px;
	width: 100%;
}

#headerControl {
	z-index: 10001;
	position: absolute;
	width: 100%;
	height: 60px;
	top: 0px;
}

.slide-window,
.fade-slide {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: white;
	-webkit-filter: drop-shadow(0px 5px 5px rgb(0, 0, 0));
	filter: drop-shadow(0px 5px 5px rgb(0, 0, 0));
}

.slide-frame div {
	max-width: 100%;
}

.slide-frame-img-wrapper {
	margin: auto;
}

.fade-frame-img-wrapper {
	margin: auto;
}

.slide-frame-img {
	max-width: 100%;
	height: auto;
	position: absolute;
	top: calc(50% - 1rem);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}

.arrow {
	width: 2rem;
	height: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	transition: 0.5s;
}

.arrow i {
	margin: auto;
}

.arrow i::before {
	width: 100%;
	color: #93d3b9;
	font-size: 1.5rem;
	text-align: center;
}

.arrow :hover {
	cursor: pointer;
}

.arrow-l {
	left: 0;
}

.arrow-r {
	right: 0;
}

.arrow img {
	width: 100%;
	cursor: pointer;
}

.slide-bar {
	z-index: 100;
	height: 2rem;
	width: 100%;
	position: absolute;
	bottom: 0;
	padding-left: 2rem;
	padding-right: 2rem;
	box-sizing: border-box;
}

.radio-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	margin: 0.5rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 2rem;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	justify-content: center;
	margin: 0;
}

.slide-radio input {
	display: none;
}

.slide-radio label {
	display: block;
	border-radius: 0.5rem;
	border: 1px solid lightgrey;
	width: 0.5rem;
	height: 0.5rem;
	margin: 0.25rem;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.slide-radio input:checked + label {
	background: #93d3b9;
	border-radius: 1rem;
	border: 1px solid white;
	width: 1rem;
	height: 1rem;
}

.v-enter-active,
.v-leave-active {
	-webkit-transition: all 500ms;
	-o-transition: all 500ms;
	transition: all 500ms;
}

.v-enter,
.v-leave-to {
	opacity: 0;
}

.input-range[type="range"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #eaeaea;
	height: 5px;
	width: 100%;
	border-radius: 6px;
}

.input-range[type="range"]:focus,
.input-range[type="range"]:active {
	outline: none;
}

.input-range[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
	position: relative;
	width: 22px;
	height: 22px;
	display: block;
	background-color: #93d3b9;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.iframe-wrapper {
	width: 80%;
	height: 80%;
	margin: auto;
	background-color: transparent;
	transition: all 0.5s;
}
.iframe-wrapper iframe {
	width: 100%;
	height: 100%;
}
.size-changer {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 1000;
	cursor: pointer;
}
.size-changer i {
	color: rgb(196, 196, 196);
	font-size: 2rem;
	transition: 0.5s;
}
.size-changer :active {
	font-size: 1rem;
}
.iframe-wrapper .background{
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #93d3b9;
}

.dropdown-enter-active,
.dropdown-leave-active {
	transition: all 0.25s;
}
.dropdown-enter, .dropdown-leave-to /* .fade-leave-active below version 2.1.8 */ {
	transform: translateY(-100%);
}

.fade-enter-active,
.fade-leave-active {
	transition: opacity 0.25s 0.25s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
	opacity: 0;
}
.bounce-enter-active {
	animation: bounce-in 0.5s;
}
.bounce-leave-active {
	animation: bounce-in 0.5s reverse;
}
@keyframes bounce-in {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(1.5);
	}
	100% {
		transform: scale(1);
	}
}

.dropin-enter-active {
	animation: drop-in 0.5s;
}
.dropin-leave-active {
	animation: drop-in 0.5s reverse;
}
@keyframes drop-in {
	0% {
		transform: translateY(-100%);
	}
	50% {
		transform: translateY(10%);
	}
	100% {
		transform: translateY(0%);
	}
}
