.button {
border-radius : 4px;
padding:0 10px;
text-align : center;
position : relative;
font-size : 14px;
text-transform : uppercase;
cursor : pointer;
height: 32px;
line-height: 35px;
display: inline-block;
border: none;
}
.button.small {
font-size: 12px;
height: 24px;
line-height: 24px;
}
.button.on {
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}

/* BUTTONS WITH ARROWS  */
.button.left:before, .button.right:before {
content : '';
position : absolute;
display : block;
top : 10px;
width : 0;
height : 0;
border-top : 8px solid transparent;
border-left : 16px solid white;
border-bottom : 8px solid transparent;
}
.button.small.left:before, 
.button.small.right:before {
top : 6px;
width : 0;
height : 0;
border-top : 6px solid transparent;
border-left : 12px solid white;
border-bottom : 6px solid transparent;	
}
.button.right {
padding-right: 30px;
}
.button.left {
padding-left: 30px;
}
.button.small.right {
padding-right: 24px;
}
.button.small.left {
padding-left: 24px;
}

.button.right:before {
right : 8px;
}
.button.left:before {
left : 8px;
}
a.hover-show {
	float: right;
	margin-left: 40px
	color: #cccccc;
	opacity: 0;
	transition : opacity 0.5s ease-out;
}
a.hover-show:hover {
	opacity: 1;
}
/*
.feedback:after {
	content: 'LOADING';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(255,255,255,1);
	border-radius : 4px;
	color: rgba(0,0,0,0.3);
	cursor: default;
}
.feedback:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	display: block;
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3498db;
  width: 12px;
  height: 12px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1;
  cursor: default;
  opacity: 0.5;
}
*/




@media screen and (min-width:1023px) and (max-width:1500px)  {
.overlay .button.small {
	 transform: scale(0.75);
	 -webkit-transform: scale(0.75);
}
.overlay .button.small:nth-of-type(1) {
	left: -4px;
}
.overlay .button.small:nth-of-type(2) {
	right: -2px;
}
}

.iOS .overlay .button.small {
	 transform: scale(0.75);
	 -webkit-transform: scale(0.75);
}
.iOS .overlay .button.small:nth-of-type(1) {
	left: -4px;
}
.iOS .overlay .button.small:nth-of-type(2) {
	right: -2px;
}

/* SPECIFIC BUTTON POSITIONING */ 

