/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: -50px;
	bottom: 0;
	padding-right: 0;
	background: #000000;
	overflow: scroll;
	overflow-y: scroll;
	overflow-x: hidden;
	z-index: 2;
}

/* Overlay closing cross */
.overlay .overlay-close {
	width: 20px;
	height: 20px;
	position: absolute;
	right: 10px;
	top: 10px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}

/* Menu style */
.overlay nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay ul {
	list-style: none;
	padding: .2em 0 1em 0;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay ul li {
	display: inline-block;
	height: 90%;
	width: 90%;
	height: calc(100% / 5);
	min-height: 54px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.overlay ul li a {
	font-size: 54px;
	font-weight: 300;
	display: block;
	color: #fff;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
	color: #348C2A;
}

/* Effects */

.overlay-slidedown {
	text-align: center;
	visibility: hidden;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out, visibility 0s 0.4s;
	transition: transform 0.4s ease-in-out, visibility 0s 0.4s;
}

.overlay-slidedown.open {
	visibility: visible;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

@media screen and (max-height: 30.5em) {
	.overlay nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay ul li {
		min-height: 34px;
	}
}

/* Music fa */

.overlay .music-icon {
	color: #fff;
	display: inline-block;
	padding: 0 0.5em 0.2em 0.5em;
	font-size: 20px;
	
}

ul.music-icons {	
	margin-top: 1px;
	margin-bottom: 1px;

}

.overlay .music-icons li {
	vertical-align: top;
	display: inline;
}

.overlay .music-icons a {
	color: #fff; 
	text-decoration: none;
}

.overlay .music-icons a:hover {
	color: #52BE7F; 
}

.fa-square-o {
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition: .5s;
}

.fa-square {
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition: .5s;
}

.fa-amazon {
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition: .5s;
}

.fa-music {
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition: .5s;
}

.fa-headphones {
	-o-transition:.5s;
  	-ms-transition:.5s;
  	-moz-transition:.5s;
  	-webkit-transition:.5s;
  	transition: .5s;
}

/* SQUARE */

.standaloneitem {
  padding-bottom: 20px; }

.standaloneitem .item {
  background: white;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(45, 60, 72, 0.05);
  margin: 0 auto;
  max-width: 558px;
  position: relative; }
  
.standaloneitem .item-image {
  background: black;
  border-radius: 2px 2px 0 0;
  max-width: 558px;
  position: relative; }
  .standaloneitem .item-image:before {
    box-shadow: inset 1px 0 rgba(45, 60, 72, 0.05), inset -1px 0 rgba(45, 60, 72, 0.05), inset 0 1px rgba(45, 60, 72, 0.05);
    border-radius: 2px 2px 0 0;
    content: '';
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1; }
  .standaloneitem .item-image img {
    background: white;
    border-radius: 2px 2px 0 0;
    display: block;
    height: auto;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    width: 100%; }
  .no-touch .standaloneitem .item-image:hover img {
    opacity: .45; }

.standaloneitem .item-info {
  height: 60px;
  padding: 12px 10px;
  position: relative;
  left: -1px;
  top: 0;
  width: 100%; }

.item_image {
  display: block; }