/* Pop */
.rvb-unit-pop {
	display: none;
}
.rvb-screen {
	position: fixed;
	z-index: 9997;
	background: black;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0.75;
}
.rvb-pop {
	width: 620px;
	background: white;
	position: fixed;
	top: 10%;
	left: 50%;
	margin-left: -300px;
	z-index: 9998;
	padding: 10px;
}
.rvb-pop-close {
	display: none;
	cursor: pointer;
	font-family: helvetica, sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: white;
	background: #999;
	position: absolute;
	right: 0;
	top: 0;
	border-radius: 24px;
	padding: 5px 10px;
	line-height: 1.0;
	margin-top: -10px;
	margin-right: -10px;
	z-index: 9999;
	opacity: 1.0;
}
.rvb-pop-close:hover {
	background: #aaa;
}
@media only screen and (max-width : 480px) {
	.rvb-pop {
		width: 100vw;
		left: 0;
		margin-left: 0;
	}
	.rvb-pop-content img {
		width: 93vw;
		margin-left: 1vw;
	}
	.rvb-pop-close {
		margin-right: -3px;
	}
}
@media only screen and (min-width : 480px) {
	.rvb-pop-content {
		width: 600px;
		height: 600px;
		overflow: hidden;
	}
}


/* Push */
.rvb-unit-push {
	display: none;
	margin: -15px auto 15px auto;
	width: 1170px;
	height: 340px;
	overflow: hidden;
}
.rvb-unit-push.height-440 {
	height: 440px;
}

/* Peel */
@-webkit-keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }

    50% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }

  @keyframes pulse {
    from {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }

    50% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1);
      transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
    }
  }
.rvb-unit-peel {
	top: 0;
	right: 0;
	z-index: 9999;
	position: absolute;
	cursor: pointer;
	display: none;
}
.rvb-unit-peel .art-inner {
	position: absolute;
	top: 0;
	right: 0;
	width: 600px;
	height: 600px;
}
.rvb-unit-peel .art {
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	overflow: hidden;
	transition-timing-function: ease-out;
  	transition: 0.3s;
}
.rvb-unit-peel:hover .art {
	width: 600px;
	height: 600px;
	overflow: hidden;
	transition-timing-function: ease-in;
  	transition: 0.3s;
}
.rvb-unit-peel .effect {
	position: absolute;
	top: 0;
	right: 0;
	width: 155px;
	height: 155px;
	-ms-interpolation-mode: bicubic;
	animation: pulse 3s infinite;
	animation-timing-function: linear;
	transition-timing-function: ease-out;
  	transition: 0.3s;
}
.rvb-unit-peel .effect img {
	width: 100%;
	height: 100%;
}
.rvb-unit-peel:hover .effect {
	width: 620px;
	height: 620px;
	animation: none;
	transition-timing-function: ease-in;
  	transition: 0.3s;
}

/* Bottom crawler */
.rvb-bottom-crawler {
	position: fixed;
	display: none;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 20px;
	z-index: 9999999999 !important;
	background-color: rgba(0,0,0,0.75);
}
.rvb-bottom-crawler-close {
	opacity: 1.0;
  position: absolute; 
  top: -20px;
  right:20px;
  color: #888;
  font-size: 2.5em;
  background: black;
  padding: 3px 12px 5px;
  margin: 0;
  line-height: 1.0;
  border-radius: 40px;
}