
.social li{
  float:left;
  display:inline;
}

.social ul {
 background:#192d4f; 

}

.top-bar-section ul li>a{
 background:#192d4f;

 color:white;
 text-transform:none;
 font-weight:bold;
 font-size:12px;
}

.top-bar-section ul{
  background:#192d4f;
    width: 100%;
    height: auto;
    display: block;

    font-size: 16px;
    margin: 0;
}

.top-bar.expanded{
 height:800px; 
}

#store-dropdown{
 float:left;
 display:block;
 width:100%;
 background:none;
 margin-bottom:15px;
 padding-bottom:5px;
 border-bottom:3px solid black;
}

#store-dropdown ul {
    list-style-type: none;
    margin-bottom: 7px;
    padding:0;
    float:left;
    font-size:10px;
    line-height:12px;
    overflow: hidden;
    background:none;
}

#store-dropdown li {
    float: left;
    text-transform:uppercase;
    font-family:'Open Sans';
    padding:6px 0px 9px 10px;
    background: #22283c;
    height:23px;
    letter-spacing:1px;
    margin-right:10px;
}


#store-dropdown li:hover{
 background:#ed5750; 
 transition: background 0.5s ease;
}

#store-dropdown li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    font-weight:bold;
    padding-right:10px;
    text-decoration: none;
}

#grey{
  background:#22283c !important;
  color:black;
}

#grey:hover{
 background:#cdcdcd !important;

}


#store-dropdown li a:hover, .dropdown:hover .dropbtn {
    
}

#store-dropdown li.dropdown {
    display: inline-block;
      
}

#store-dropdown .dropdown-content {
    display: none;
    position: absolute;
    z-index:1000;
    padding-top:10px;
    height:auto;
    padding-bottom:10px;
    margin-left:-9px;
    min-width:160px;
    margin-top:5px;
    background-color: #f9f9f9;
    box-shadow: 10px 8px 16px 0px rgba(0,0,0,0.2);
}


#store-dropdown .dropdown-content a{
    color: black;
    padding: 4px 12px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content p {
 font-size:10px;
 font-family:'Open Sans';
 letter-spacing:0;
 padding:0px 10px;
 width:300px;
 color:black;
}

.artist-dropdown-column{
 float:left;
 width:auto;
 padding-right:30px;
}


#store-dropdown .dropdown-content a:hover {background-color: #f1f1f1;
transition:background ease .05s;
transition:color ease .05s;
color:#ed5750;
}

#store-dropdown .dropdown:hover .dropdown-content {
    display: block;
}

.f-topbar-fixed {
    padding-top: 0px !important;
}

#mobile-layout{
 display:none; 
}

#mobile-nav{
 display:none; 
}

#slider{
 padding-top:81px; 
   overflow:hidden!important;
}


ul{ 
  margin-left:0;
}



#mobile-nav{
  display:none;
}

#dropdown-menus{
 width:100%;
 margin-left:0px;
float:left;
 margin-bottom:0;
 padding-bottom:0;
 display:block;
}

.ddm{
float:left;
margin-top:-8px;
padding-left:0px;
margin-right:3px;
height:30px;
width:auto;
color:black;
}

.ddm select{
  background:white;
  color:#22283c;
  font-weight:bold;
  height:28px;
  padding:5px 0px; 5px 0;
  font-size:13px;
  outline:none;
  border:0px solid #ed5750;
}

#bse{
 text-transform:uppercase;
 float:left;
 font-weight:bold;
 color:#ed5750;
 padding-right:10px;
 font-size:14px; 
}

#cart, #cart a{
 float:right; 
 display:inline-block;
 width:auto;
 padding:0px 1px 0 0;
 font-size:12px;
 font-weight:bold;
 text-transform:uppercase;
 background:none;
 color:black;
 margin-top:2px;
}

/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  background-color: #ed5750;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding:0px
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

.prev a, .next a{
 color:white !important; 
}

.prev a:hover, .next a:hover{
 color:black !important; 
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #22283c;
  color:white;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */

#dots{
  
  margin-top:0px;
  z-index:10000;
  position:relative;
  padding:10px;
  background:#22283c;
  width:auto;
  height:25px;
}
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #bababa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ed5750;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}




/* Layout */

body {
  
    background-color:white;
  
  color: #222222;
}

h1, h2, h3, h4, h5, h6 {
  color: #222222;
}

-container {
  
    background-color: #ffffff;
  
}

.content-container > div {
  background-color: rgba(255, 255, 255, 0.85);
  margin: 0 auto;
  padding: 1.1875rem 0;
  max-width: 58em;
  width: 100%;
}

.content-container h1 .right, .content-container h2 .right, .content-container h3 .right, .content-container h4 .right, .content-container h5 .right {
  font-size: 0.65em;
  margin-top: 0.5em;
}

.content-container h1 + hr, .content-container h2 + hr, .content-container h3 + hr, .content-container h4 + hr, .content-container h5 + hr {
  margin-top: 0;
}

.footer-container {
  color: #ffffff;
}

.footer-container > div {
  margin: 0 auto;
  padding: 1.1875rem 0;
  max-width: 58em;
  width: 100%;
}

.footer-container p, .footer-container ul {
  color: #ffffff;
  font-size: 0.75rem;
}

.footer-container a {
  color: #f9f9f9;
}

.footer-container a:hover {
  color: #ffffff;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* General CSS */

a {
  font-weight:400;
}
 
a:hover{ 
  transition: background 0.5s ease;
}


h1{
 padding: 25px 0px 5px 0px !important;
}

h3{
  margin-bottom:12px;
}

h4{
  font-size:18px;
  line-height:14px;
  font-weight: bold;
 
}

h5{
  font-size: 28px;
  color: black !important;
  padding:0;
  margin: 0;
  font-family: 'Open Sans';
  font-weight: bold;
  line-height:25px;
}

h6{
  line-height:0px;
}


p{
 font-family:Times; 
 margin-bottom:0;
}

.main-container{
  background:white;
  margin-left: auto;
  margin-right:auto;
  width:92%;
  height:auto;
  background:none;
  
}

.content{
  display:inline-block;
  width:100%;
  background:white;
  min-height:700px;
  padding:0 15px;
  margin-top:-30px;
}

.container{
  margin-top:125px; 
}

.colored-header{
  float:left;
  font-size:19px;
  width:100%;
  padding:4px 0px 4px 0px; 
  margin-bottom:12px;
  background:white;
  color:black;
  font-weight:bold;
  border-bottom:0px solid #e9e9e9;
  text-transform:uppercase;
}

.colored-header h1{
  float:left;
  display:inline;
  font-size:22px;
  font-weight:bold;
  color:black;
}

.colored-header-italic{
 font-weight:300;
 font-style:italic;
 font-size:22px;
}

.colored-header-right{
  float:right;
  font-size:19px;
  width:100%;
  padding:4px 0px 4px 8px; 
  margin-bottom:12px;
  background:white;
  color:black;
  font-weight:bold;
  border-bottom:0px solid #e9e9e9;
  text-transform:uppercase;
}

.left{
  float:left;
  height:auto:
  padding:0;
  margin:0;
}

.right{
  float:right;
  height:auto;
  padding:0 0 0 15px;
}

.large-12 {
  padding:0 !important; 
}

.block{
  padding:0;
  margin:0;
  display:inline-block;
  float:left;
}

hr{
  border: solid black;
  border-width: 1px 0 0;
  clear: both;
  margin: .1rem 0 1.1rem;
  height: 0;
}

#border-box{
  padding-right:25px;
 border-right:1px solid #cdcdcd; 
}

#viewall{
  float:left;
  font-size:10px;
  font-weight:bold;
  background:#22283c;
  padding:7px;
  display:inline-block;
  width:auto;
  color:white;
  margin:8px 0 10px 0 ;
  background:#ed5750;
}

#viewall:hover{
 background:#22283c; 
  transition: background 0.5s ease;
}

.colored-header h{
 margin-top:10px; 
 margin-right:10px;
 float:left;
 display:inline-block;
 width:auto;
}

#spacer-5{
 height:5px; 
}

#spacer-10{
  height:10px;
}

#spacer-20{
  height:20px;
}

#spacer-30{
 height:30px; 
 float:left;width:100%;display:block;
}

#spacer-40{
 height:40px; 
}

#spacer-50{
 height:50px; 
}

#spacer-70{
 height:70px; 
}

#spacer-80{
  height:80px; 
}

#spacer-90{
 height:90px; 
}

#browse{
  float:left;
  font-size:14px;
  font-weight:bold;
  color:#ed5750;
  margin-top:5px;
  text-transform:uppercase;
  margin-right:10px;
}

.row {max-width:none !important;
}


/* Navigation */

#nav-div { 
  width:100%;
  display:table;
  background:none;
  padding:0 0 0 0px;
  margin:0 auto;
}

#primary_nav_wrap{
  margin-top:00px;
}

#primary_nav_wrap ul{
  margin-left:auto;
  margin-right:auto;
	list-style:none;
	position:relative;
	float:left;
  padding:0 0 0px 0;
  z-index:9000;
  margin-bottom: 0 !important;
}

#primary_nav_wrap ul a{
	display:block;
	color:white;
	text-decoration:none;
	text-transform:none;
	font-weight:700;
	font-size:14px;
	padding:0px 10px;
	font-family:'Open Sans';
}

#primary_nav_wrap ul a:hover{
  color:#ed5750;
}

#primary_nav_wrap ul > li{
	position:relative;
	float:left;
	margin-top:19px;
	padding:0px 0px 3px; 0  !important;
	height:auto;
}

#primary_nav_wrap ul li.current-menu-item{
	background:none;
}


#dropdown-header{
  width:95%;
  height:30px;
  background:none;
  color:black;
  margin-left:15px;
}

.dropdown-column{
  float:left;
  width:180px;
}

.full {
  display:block;
  margin-top:4px;
}

#dropdowns{
  display:none; 
}

#view-cart{
  font-size:12px !important;
  font-family:'Open Sans' !important;
  font-weight:bold;
  color:white;
  text-transform:none;
}


/* Header */

#nav-container{
  position:fixed;
  float:left;
  display:inline-block;
  width:100%;
  background:#22283c !important; 
  z-index:1001;
  border-bottom:0px solid #f1f1f1;
}

.big-nav{
  width:100%;
  height:60px;
  margin:0 auto;
  background:#22283c;
  padding:4px 0px;
}

.big-nav ul {
  display:inline-block;
  float:left;
  color:white;
}

.big-nav ul li{
  font-size:14px;
  color:white;
  float:left;
  list-style:none;
  padding:7px;
  font-weight:bold;
}

.big-nav li:hover{
  color:#ed5750;
  transition: color 0.5s ease;
}

#socials{
  height:30px;
  line-height:60px;
  float:right;
}

#socials a{
 color:white; 
}

#socials a:hover{
  color:#ed5750;
  transition:color .5s ease;
}

#socials li{
  color:white;
  float:right;
  display:inline;
  background:none;
  font-size:20px;
  margin-top:0px;
  padding:0 14px 0 0;
  width:auto;
}

#socials li:hover{
 color:#ed5750; 
}

#logos{
  display:inline-block;
  float:left;
  padding:6px 9px 5px; 0px;
}

#circle-logo{
  margin-left:0px;
  margin-right:10px; 
  margin-top:0px;
  float:left;
  padding-left:0px;
}

#text-logo{
  margin-top:2px;
  margin-left:0px;
  height:37px;
  width:auto;
}


/* Product Search */

.box{
  position:relative;
  width:auto;
  float:left;
  margin-top:-19px;
  margin-left:0px;
  display:inline-block;
}

.container-1{
  width: 160px;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  margin-top:0px;
}

.container-1 input#search{
  width: 120px;
  height: 30px;
  border: 0px solid black;
  font-size: 9pt;
  float: left;
  padding-left: 24px;
  font-weight:bold;
  margin-top:0px;
  text-transform:uppercase;
  border-bottom:0px solid #bababa;
}

.container-1 input#search::-webkit-input-placeholder {
  color: #ed5750;

}
 
.container-1 input#search:-moz-placeholder { /* Firefox 18- */
  color: white;

}
 
.container-1 input#search::-moz-placeholder {  /* Firefox 19+ */
  color: white;

}
 
.container-1 input#search:-ms-input-placeholder {  
  color: white;
}

.container-1 .icon{
  position: absolute;
  top: 50%;
  margin-left: 0px;
  padding-left:2px;
  margin-top: 7px;
  z-index: 1;
  color: black;
}

.container-1 input#search:hover, .container-1 input#search:focus, .container-1 input#search:active{
  outline:none;
  background:white;
}
  
.small-nav{
  height:22px;
  width:100%;
  margin-top:0px;
  position:fixed;
  padding:4px 15px 0px 15px;
  background:#ed5750; 
  line-height:20px;
  font-size:12px;
  color:white;
  z-index:1001;
  font-family:'Open Sans';
  box-shadow:0;
}

#store-navigation{
    height: auto;
    float: left;
    margin: 0px 0px 10px 0;
    padding: 0 0 6px 0;
    border-bottom: 3px solid #22283c;
}

#store-navigation h{
  float:left;
  font-size:32px;
  color:#ed5750;
  font-weight:bold;
margin-top:7px;
  margin-bottom:1;
}

#store-navigation ul{
 float:right; 
 margin-top:7px;
 margin-bottom:6px;
 padding-top:0px;
 list-style:none;
}

#store-navigation li{
 padding:5px 7px 5px 7px;
 background:#ed5750;
 display:inline; 
 color:white;
 font-weight:bold;
 font-size:12px;
}

#store-nav-wrapper{
  float: left;
  display: block;
  width: 100%;
  margin-bottom: 0px;
  border-bottom: 0px solid black;
}

li.blue{
 background:#22283c !important; 
}

li.blue a{
 color:white;
 font-weight:bold;
}

li.red{
  background:#ed5750;
  width:auto;
  padding:5px 10px;
}

li.red:hover{
 background:#cdcdcd !important; 
  transition: background 0.5s ease;
}

store.navigation li{
 background:#22283c; 
}

li.red a{
  color:white;
  font-weight:bold;
}

#store-navigation img{
 margin-top:-4px; 
 margin-left:10px;
 padding:1px;
 border:3px solid #22283c;
}

#my_selection{
 width:120px; 
 height:30px;
 font-size:9px;
}

.news-tick{
  padding:0 4px 0 0;
  height:25px;
}

.news-tick a{
  color:white;
}

.news-tick:hover{
  color:black;
  height:25px;
  padding:0 4px 0 0px;
  transition: background 0.5s ease;
  transition: color 0.5s ease;
}

#news-ticks{
  width:100%;
  margin-top:-2px;
  display:inline-block;
  background:none;
  height:auto;
  float:left;
}

#image-rotator{
  margin-top:81px; 
  display:inline-block;
  width:100%;
  float:left;
  height:auto;
}

#cycler{ float:left;}
#cycler img{position:absolute;z-index:1;}
#cycler img.active{z-index:3}

#parent{
 width:100%;
 position:relative;
 display:inline-block;
 height:100px;
 background:#333d5b;
}


.more-news{
  position:absolute;
  margin:-2px 0 0 10px; 
  padding:1px 5px 1px 5px; 
  font-size:10px;
  font-weight:bold;
  height:22px;
  z-index:999;
  background:#b2b2b2; 
  color:white;
  box-shadow: 0;
}

.more-news:hover{
  color:#ed5750;
  background:#333d5b;
  transition: color 0.5s ease;
  transition: background 0.5s ease;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Index Page */

#index-left{
  float:left;
  width:35%;
}

#index-right{ 
  width:63%;
  float:right;
  border-left:0px solid #cdcdcd;
  padding-left:15px;
  margin-top:25px;
}

.releases{
  float:left;
  width:100%;
  display:inline-block;
  padding-bottom:0:
  margin:0;
  border-bottom:0px solid #bababa;
}

.news-image{
  border:0px;
  margin-bottom:5px;
}

.news-post{
  width:100%;
  float:left;
  border-bottom:1px solid #cdcdcd;
  padding-bottom:10px;
  margin-bottom:20px;
}

.news-post p:hover{
  color:black;
}

.news-post h5{
  font-size:16px;
  line-height:20px;
  color:black;
  padding:9px 0 7px 0px;
  margin:0;
  color:black;
}

.news-post p{
  color:black;
  font-family: Times;
  font-size:13px;
  text-align:justify;
  margin-bottom:15px;
  padding:0px;
}

#news-post-fix{
  margin-bottom:0; 
}  

.post-date{
  font-weight:400;
  text-transform:uppercase;
  font-family:'Open Sans';
  margin:3px 0 15px 0;
  float:left;
  font-size:11px;
  display:block;
  width:100%;
  color:black; 
}

ul.bxslider{
  position:relative;
  width:100%;
  height:auto !important;
  list-style:none;
  border-bottom:0px solid #22283c;
}

ul.bxslider li{
  margin:0 auto;
  overflow:hidden!important;
  width:100%;
}

#instagram iframe{
  margin-top:-10px;
  padding-bottom:10px;
}

#spotify{
  padding-bottom:20px;
  border-bottom: 1px solid #dcdcdc;
}

#spotify iframe{
  border:5px solid #22283c; 
}

#playlist{
  float:left;
  color:#ed5750;
  font-weight:bold;
  font-size:13px;
  margin-top:-10px;
  margin-bottom:10px;
}

.red-boxes{
  height:auto;
  float:left;
  padding:0 0;
  margin:0;
}

.red-boxes li, span.red-boxes, div.red-boxes{
  padding:6px 10px 5px 10px;
  list-style:none;
  font-size:12px;
  font-weight:bold;
  background:#ed5750;
  color:white;
  height:auto;
  float:left;
  width:auto;
  margin:auto 10px 10px auto  ;
}

.red-boxes li:hover{
  background:#22283c;
  transition: background 0.5s ease;
}

li.right-link{
  margin-right:0px !important;
}

.artist{
  font-weight:bold;
  color:#ed5750;
}

.title{
  font-style:italic;
}

.image-caption{
  padding:8px 8px 8px 10px;
  color:white;
  font-family:'Open Sans';
  font-size:12px;
  border-top:0px solid white;
  float:left;
  width:100%;
}

.front-page-image{
  width:49%;
  margin:0 2px;
  height:auto;
  height:auto;
  display:inline-block;
  float:left;
 }
 
.front-page-image img{
  width:100% 
}

.front-page-images{
  position:relative;
  display:inline-block;
  float:right;
  width:100%;
  height:auto;
  padding:20px 0 20px 0px;
  margin-bottom:0px;
  margin-top:0px;
  border-bottom:1px solid #dcdcdc;
  border-top:1px solid #dcdcdc;
}

.front-page-image-left{
  width:49%;
  height:auto;
  float:left;
  padding:0;
  margin:0;
  background:#22283c;
}

.front-page-image-right{
  width:49%;
  height:auto;
  float:right;
  padding:0 0 0px 0px;
  margin:0 0px 0px 0;
  background:#22283c;
}

.front-page-image-right:hover, .front-page-image-left:hover{
  background:#ed5750;
  transition: background 0.5s ease;
}

#videos{
  display:block;
  float:right;
  width:100%;
  height:auto;
  border-bottom:1px solid #dcdcdc;
  padding-bottom:3px;
}

.tilde{
  display:block;
position:relative;
text-align:center;
 font-size:30px;
 color:black;
 margin:0 auto;
}

select.cart_variation{
  background:white;
  color:#22283c;
  font-weight:bold;
  height:28px;
  padding:4px 0 5px 0;
  margin-top:2px;
  font-size:12px;
  outline:none;
  border:0px solid #ed5750;
  
}

.button right{
 padding:10px;

}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/*Product Pages */

#product-left{
  float:left;
  width:36%;
  display:inline-block;
  padding:0px 0 20px 0;
  height:auto;
}

#product-right{
  width:64%;
  float:left;
  padding:0px 0 0 30px;
  color:black;
  height:auto;
  font-family:Times;
  display:inline-block;
  height:auto;
}

.product_info{
  display:inline-block;
  width:100%;
  height:auto;
  font-size:14px;
}

.product_info p{
 font-size:14px; 
 margin-top:30px;
}
  
.product_photos .thumbnails {
  margin-bottom: 0;
  margin-left: 0;
  padding:0;
  list-style: none;
  text-align: center;
  width:100%;
}

.product_photos .featured img {
  width: 100%;
 display:block;
}

#pre-order{
  font-family:'Open Sans';
  font-size:11px;
  line-height:20px;
  margin-bottom:15px;
}

.thumbnails li {
  float: left;
  height: auto;
  width: 22%;
  margin-right:10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid #d8d8d8;
}

.thumbnails .featured {
  width: 100%;
  margin: 0;
  padding: 0;
}

.product_detail h4, .product_detail h5, .product_detail h6 {
  padding-bottom: 5px;
}

.product_detail p {
  line-height: 180%;
}

.product_title, .product_buy, .product_notify, .product_info, .product_tracks, .product_pressings {
  margin-bottom: 20px;
}

.product_select select {
  -webkit-appearance: none !important;
  width: 400px;
  padding: 5px 10px;
  font-size: 1em;
  color: #222;
  margin-right: 4px;
  margin-bottom: 4px;
  background: #fafafa url("data:image/svg+xml;base64, PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==") no-repeat;
  background-position-x: 97%;
  background-position-y: center;
  border: 1px solid #ccc;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.product_btn button {
  background: #3d3da7;
  padding: 10px 40px 10px 40px;
  height: 30px;
  text-decoration: none;
  border: none;
  font-size: 0.75em;
  font-family: "futura-pt", Helvetica, sans-serif;
  text-transform: uppercase;
  color: #222;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 120%;
  letter-spacing: 0.15em;
  color: #fff;
  transition: background-color 400ms;
}

.product_btn button:hover {
  background: #e57a82;
  transition: background-color 400ms;
}

.product_na {
}

.product_notify .button {
  font-family: "futura-pt", Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 120%;
}

.product_detail .note {
  color: #e57a82;
  text-transform: uppercase;
  font-weight: 700;
}

.product_tracks ol {
  padding-left: 20px;
  line-height: 180%;
}

ul.clearing-thumbs li {
  width:20%;
  float:left;
}
.clearing-thumbs li + li a img {
  max-height: 25%;
  max-width: 25%;
  float:left;
  display:inline;
}

input[type="file"], input[type="checkbox"], input[type="radio"], select {
    margin: 0 0 1rem 0;
    border: 1px solid #cdcdcd;
    color: black;
    font-size: 12px;
    font-family: 'Open Sans';

    font-weight: 400;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/*Store Main Page */
#store-nav{
  position:fixed;
  float:left;
  margin-left:-72px;
  padding-left:85px;
  margin-top:66px;
  background:#ed5750;
  width:100%;
  height:30px;
}

#form{
  width:15%;
  height:30px;
  float:left;
  font-size:9px;
  margin:0px 20px 20px 0;
  padding:0;
}

#store-dropdowns{
  width:100%;
  position:fixed;
  margin-top:-30px;
  background:#ed5750;
}


#store {
width:100%;
border-bottom:0px solid black;

margin:25px 0 8px 0;
font-size:19px;
}

.choose{
margin-right:10px; 
text-transform:uppercase; 
font-weight:bold;
font-size:12px;
color:#ed5750;
}


  #rfc{
 float:left;
 display:inline;
  font-size:20px;
  color:#ed5750;
  font-weight:bold;
  margin-top:-25px;
  margin-bottom:15px;
}

/*News Page */

#news-left{
  float:left;
  width:60%;
  display:inline-block;
  height:auto;
  background:white;
}

#news-left article{
  background:white;
  margin-bottom:20px;
  height:auto;
  float:left;
  padding-bottom:15px;
  border-bottom:1px solid #cdcdcd;
}

#news-left h5, h5 a{
  font-size: 25px;
  color: black !important;
  padding: 0px 0 10px 0;
  margin: 0;
  font-family:'Open Sans';
  font-weight:bold;
  line-height:20px;
}


#news-left h6{
  font-size:12px; 
  padding:0x;
  width:auto;
  background:#ed5750;
  margin:0;
}

#news-left img{
  width:50%;
  margin-right:15px;
  margin-top:5px;
  float:left; 
  border:1px solid black;
}

#news-right{
  margin-top:-14px;
  padding:0 30px;
  display:inline;
  float:left;
  width:40%;
}

#news-right h1{
     border-bottom: 1px solid black;
     padding-bottom: 2px !important;
     margin-bottom:15px;
}

.media-body{
  width:100%;
  float:left;
  padding:0 0 20px 0 !important;
}

.media-heading, .media-heading a{
  font-size: 13px;
  font-family: 'Open Sans';
  font-weight:700;
  line-height:17px;
  color:black;

}

.media-heading a:hover{
  color:#ed5750;
  transition: color 0.3s ease;
}

.media-body h6{
  margin-top:12px;
  font-size:12px;
  font-weight:bold;
  color:#ed5750;
}

.news-pic {
  margin:0px 0px 10px 0px;
  border:3px solid #22283c;
  padding-bottom:0px;
}

.news-headline{
  color:black;
 font-size:13px;
 font-family:'Open Sans';
 padding-bottom:10px;
 letter-spacing:0px;
 line-height:17px;
}

.story{
 float:left:
 width:100%;
 height:auto;
 border-bottom:1px solid #cdcdcd;
}


.image-left{
  padding:0px !important;
  width:25% !important;
  float:left !important;
  border:0px !important;
}
  
.image-full{
  padding:0px 0 0px 0!important;
  width:100% !important;
  border:0px !important;
  margin-bottom:20px;
}



article{
  width:100%;
  display:inline-block;
  padding:0px;
  margin-top:0px;
  background:white;
}

article div{
 font-size:15px; 

 text-align:justify;
 padding-top:0px;
}

article p{
  margin-bottom:15px;
  text-align:justify;
  font-size:14px;
  font-family:'Open Sans';
}

article p a{
  font-weight:bold;
}

article img{
  margin-bottom:5px;
}

a.button {
  width:auto;
  font-size:13px;
  font-weight:bold !important;
  background:#22283c;
  padding:5px 8px;
  margin-right:5px;
}


article h5, article h5 a{
  font-size:20px;
  line-height:22px;
  text-align: left important;

}

article h7{
  padding:5px 8px;
  background:#ed5750;
  color:white;
      line-height: 40px;
  font-size:14px;
  font-weight:bold;
}

article img {
  margin-top:0px;
}

.date{
  display:inline-block;
  font-family:'Open Sans';
  font-weight:bold;
  background:#ed5750;
  padding:6px 8px 6px 8px;
  width:auto;
  color:white;
  font-size:12px;
  margin-bottom:8px !important;
  margin-left:0px;
}

h.news-title{
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Foundation Overrides */

a {
  color: #ed5750;
  
}

a:hover, a:focus {
  color: #22283c;
  transition: color 0.5s ease;
}

.button {
  background-color: #22283c;
  border-color: #ffffff;
  color: #ffffff;
}

button, .button {margin-bottom:15px;}

.addbutton{
     background-color: #cdcdcd;
    border-color: #2795b6;
    color: white;
    width:100%;
    padding: 5px 8px 5px 8px;
    font-size: 12px;
    float: left !important;
    margin-top: -15px; 
    font-weight:bold !important;

}

.addbutton:hover{
background:#22283c;
}
  

.button:hover, .button:focus {
  background-color: #ed5750;
  border-color: #ffffff;
  color: #ffffff;
    transition: background 0.5s ease;
}

.hide {
  display: none !important;
}

.orbit-container {
  margin: 0 0 1.1875rem 0;
}

.orbit-container .orbit-slides-container li {
  text-align: center;
}

.orbit-container .orbit-slides-container li img {
  margin: 0 auto;
}

.orbit-container .orbit-timer {
  visibility: hidden;
}

.orbit-container .orbit-bullets-container .orbit-bullets {
  margin-bottom: 0.59375rem;
}

.postfix {
  height: 2.125rem;
}

.postfix.button {
  height: 2.125rem;
  line-height: 2.125rem;
}

nav.pagination {
  display: block;
  font-size: 1rem;
  height: 1.5rem;
  line-height: 1.6;
  height:auto;
  display:block;
  margin-left: -0.3125rem;
  margin-bottom:1em;

}

nav.pagination span {
  color: #999999;
  font-size: 0.875rem;
  height: 1.5rem;
  margin-left: 0.3125rem;
}

nav.pagination span a, nav.pagination span.current, nav.pagination span.inactive {
  background-color: transparent;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  color: #999999;
  display: block;
  padding: 0.0625rem 0.625rem 0.0625rem;
}

nav.pagination span:hover a, nav.pagination span a:focus {
  background-color: #e6e6e6;
  color: #999999;
}

nav.pagination span.inactive {
  background-color: transparent;
  color: #999999;
  cursor: default;
}

nav.pagination span.inactive:hover, nav.pagination span.inactive:focus {
  background-color: transparent;
}

nav.pagination span.current {
  background-color: #ed5750;
  color: #ffffff;
  font-weight: bold;
  cursor: default;
}

nav.pagination span.current:hover, nav.pagination span.current:focus {
  background-color: #ed5750;
  color: #ffffff;
}

nav.pagination span {
  float: left;
  display: block;
}

.pagination-centered nav.pagination span {
  float: none;
  display: inline-block;
}

.postfix {
  height: 2.2125rem;
}


.th {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

  .th:hover, .th:focus {
    -webkit-box-shadow: none;
    box-shadow: none; }


.top-bar .title-area .name h1 a img {
  height: auto;
  margin-top: -2px;
  max-height: 42px;
  max-width: 175px;
  width: auto;
}

.top-bar-section ul li > a {
  font-weight: 300;
}

@media only screen and (min-width: 40.063em) {
  .top-bar-section .social li a {
    padding: 0 7px;
  }

  h1 a.right, h2 a.right, h3 a.right, h4 a.right, h5 a.right {
    font-size: 0.5em;
    margin-top: 1.5em;
  }
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Product Grid */

.product {
  margin: 0;
  max-width: 300px;

}
.product img{
  width:300px;
}

.product a.th {
  display: block;
  line-height: 200px;
  position: relative;
  text-align: center;
}

.shop_item{
 padding-bottom:0px; 
}

.shop_item figure{
 box-sizing:border-box;
 -webkit-backface-visibility: hidden; 
}

.shop_item figure img{
 padding:0 !important;
 width:100% !important;
 opacity:1;
 -moz-opacity:1;
 display:block;
 position:relative;
 border:0;
}


h6.list_artist{
  font-size:13px; 
  line-height:15px;
  padding:5px 0 0px 0;
  font-weight:700;
  color:#ed5750;
  margin-bottom:2px;

}

span.list_title{
  color:black;
  font-family:'Open Sans';
  font-style:italic;
  font-size:12px;
  border-bottom:0px solid #cdcdcd;
  font-weight:400;
  color:black;
  padding:0;
  margin:0;
}

ul{
line-height:16px;
}

span.list_title{
 line-height:0px; 
}

@media (max-width: 400px) {

  .product a.th {
    height: 150px;
    line-height: 150px;
  }
  
  .product a.th img {
    max-height: 100%;
    max-width: 100%;
  }
}

.product a.th .panel-banner {
  background-color: rgba(0, 0, 0, 0.55);
  bottom: 0;
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin: 0 0 0 0;
  padding: 0.25rem;
  position: absolute;
  text-align: center;
  width: 100%;
}

.product .panel {
  background-color: transparent;
  border-color: transparent;
  font-size: 0.9rem;
  padding: 0.25rem 0rem;
}

.product .panel div {
  display: block;
  margin-bottom: 0em;
}

.product .panel-info div + div {
  font-size: 0.75rem;
  margin-top: 0rem;
}

.panel-info a{
  font-size:14px;
  font-family:'Open Sans';
  font-weight:bold;
  color:white;
}


/* Product Page */

#product {
width:100%;
padding:0 0px;
float:left;
}

#product .clearing-assembled {
  
  margin: 0 auto 1.1875rem auto;
  max-width: 432px;
}

#product .clearing-assembled .clearing-thumbs li {
  text-align: center;
  width: 100%;
}

#product .clearing-assembled .clearing-thumbs li + li {
  height: 125px;
  line-height: 125px;
  margin: 0;
  padding: 5px;
  text-align: center;
  width: 33%;
}

.product-item{
display:inline-block;
float:left;
width:100%;
margin-right:20px;
margin-bottom:0px;
margin-top:0px;
padding-bottom:10px;
border-bottom:1px solid #cdcdcd;
}

.product-item ol, .product-item p{
margin-bottom:0;
margin-left:0px;
list-style:none;
font-size:13px;
}
.product-item ol li{
 width:auto;
 margin-right:5px;
}

.product_info p{
  font-size:12px;
  font-family:'Open Sans';
}


.product-info-column{
padding-right:20px;
border-right:0px solid #cdcdcd;
margin-left:0px;
}

.product-info-column li{
  display:block;
  width:100%:;
}


@media (max-width: 400px) {

  #product .clearing-assembled .clearing-thumbs li + li {
    height: 75px;
    line-height: 75px;
  }
}

#product .clearing-assembled .clearing-thumbs li + li a img {
  max-height: 100%;
  max-width: 100%;
}

#product .clearing-assembled.clearing-blackout {
  max-width: 100%;
}

#product .clearing-assembled.clearing-blackout .clearing-thumbs li {
  width: 120px !important;
}

#product .panel {
  background-color: transparent;
  border-color: transparent;
  font-size: 0.9rem;
  padding: 0.5rem;
}

#product .panel div {
  display: block;
  margin-bottom: 0;
 
}

#product .panel-banner {
  background-color: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin: 0 0 1.1875rem 0;
  padding: 0.25rem;
  text-align: center;
}

#product .soundcloud-container {
  margin-bottom: 1.1875rem;
}


#product .add-to-cart-container {
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* FAQ / INFO PAGE */ 

#info-page-left{
  width:65%;
  float:left;
}

.info-page-left-section{
 float:left;
 width:100%;
 padding-bottom:20px;
}

.info-page-right-section{
 float:right;
 width:100%;
 padding:8px 0 20px 0;
}

.press-link{
 float:left;
 margin-bottom:5px;
 display:block;
 width:100%;
}

.info-page-left-section p{
 margin-bottom:15px; 
 text-align:justify;
}

#info-page-right{
  width:34%;
  float:right;
  margin-top:0px;
  padding-top:0px;
}

#info-page-right p i{
  color:#1da1f2; 
}

#info-page-header{
  float:left;
  width:100%;
  margin:0px;
  padding:0px;
  height:auto;
  border-bottom:0px solid black;
  display:block;
}

#info-page-header h3, #info-page-header span{
 float:left;
padding:0px;
font-size:24px;
margin-right:0px;
margin-bottom:0px;
display:block;
}

#info-page-mobile{
  display:none;
  }
  
#info-page-big{
 display:inline; 
}
  

.est-city{
  float:left;
  margin-top:18px;
  font-weight:400 !important;
  font-size:13px;
  white-space:nowrap;
  margin-left:10px;
}

.rfc, .rfc h4{
  padding:0px 5px 5px 0;
  font-weight:700;
  color:#ed5750;
}

#info-page-left img{
 border:0px solid #22283c; 
}

#faq{
  line-height:25px;
  width:100%;
  display:block;
  float:left;
}

.about-header{
  font-size:17px;
  display:block;
  padding-bottom:6px;
  margin-bottom:15px;
  font-family:'Open Sans';
  font-weight:bold;
  border-bottom:1px solid #cdcdcd;
  width:100%;
}

#info-page{
  margin:0 auto;
  max-width:900px;
  padding:0 15px;
}

p.question{
  font-size:12px;
 font-weight:bold; 
}

p.answer{
  font-size:12px;
  padding-bottom:7px;

}

a.twitter{
 font-weight:400;
 color:black;
}

a.twitter:hover{
 color:#ed5750; 
}

a.distro-label-link{
  color:red;
}

a.distro-label-link:visited{
  color:red;
}

summary::-webkit-details-marker {
  color: red;
  font-size: 125%;
  margin-right: 4px;
}

summary:focus {
  outline-style: none;
	margin-bottom:10px;
}

article > details > summary {
	font-size: 13px;
	margin-top: 10px;
	line-height: 20px;
}

details > p {
	margin-left: 0px;

}

details details {
	margin-left: 36px;

}

details details summary {
	font-size: 16px;
}



.press{
color:#ed5750;
font-size:13px;
text-transform:uppercase; 
font-weight:bold;
font-family:'Open Sans';
}
/* Tour Page */

#tour-page{
  float:left;
  width:100%;
  margin-top:80px;
  margin-bottom:40px;
  padding:0px;
}

#tour-page h5{
 font-size:20px;
 padding-bottom:10px;
}

a.distro-label-link{
 font-family:'Open Sans';
 font-weight:bold;
 font-size:14px;
}

.tour-band-name{
 font-size:15px; 
 font-weight:bold;
 margin-bottom:15px;
 background:#22283c;
 color:white;
 padding:7px;
}

.tour-band-name:target {padding-top: 80px;}

.tour-band-name a{
  font-weight:bold !important;
}

.tour-date{
 padding:0 0px;
 float:left;
 width:80%;
 font-size:11px;
 margin-bottom:5px;
 font-weight:bold;
 color:#ed5750;
 display:block; 
}

.tour-bands{
 padding-left:0px;
 padding-right: 10px;
 color:white; 
 font-weight:bold;
 display:block;
 float:left;
 font-size:14px;
 margin-bottom:10px;
 font-family:'Open Sans'; 
 text-transform:uppercase;
}

.tour-info-header{
 padding:10px 10px 0 10px;
 background:#22283c;
 margin-top:20px;
 width:100%;
 height:auto;
 margin-bottom:10px;
 float:right;
 display:block;
}

.admat{
 background:white;
 width:100%;
 float:right;
 padding-bottom:10px;
 border-bottom:1px solid #b2b2b2;
 margin-bottom:20px;
}

#tour-right{
  height:auto;
  display:inline-block;
 float:right;
 width:40%;
 padding-left:15px;
 margin-top:-19px;
}

#tour-right > div {
padding-right:15px; 
border-bottom:0px solid black; 
}

.tour-container{
 border-bottom:1px solid #b2b2b2
 float:right;
 width:100;
 display:block;
}

#tour-left{
 width:60%;
 height:auto;
 display:inline-block;
 float:left;
 padding-right:15px;
}

ul.band-tour-list{
  width:50%;
  list-style:none;
  float:left;
  display:inline-block;
}

.band-tour-list li{
font-family:'Open Sans' !important;
line-height:20px; 
color:#ed5750;
font-size:13px;
font-weight:bold;
}
.band-tour-list li a {
  font-weight:bold;
}

#tour-admats {
 list-style:none;
}

#tour-admats li{
 margin-bottom:10px; 
 padding-bottom:30px;
 border-bottom:0px solid black;
}

#tour-admats img{
 border:1px solid #22283c; 
}

#bit-events tr.bit-header a, #bit-events tr.bit-header-narrow a {
 margin-right:5px; 
}

#bit-events td .bit-uiButton {
    border: 0px solid #999 !important;
   margin-top:5px;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    vertical-align: top;
    white-space: nowrap;
}

#bit-events td {
}

#bit-events td .bit-uiButtonDefault a {
    color: black;
    font-size: 10px;
}

#bit-events a {
    color: #ed5750;
    font-weight: bold;
}

#bit-events .bit-events td {
    height: 55px;
    border-top: 1px solid #cdcdcd;
}

#bit-events:hover{
 background:#cdcdcd;
 color:white;
}





/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/



/* Contact Page */

#contact {

}

#contact textarea {
  height: 115px;
}

#contact #recaptcha_widget_div {
  margin: 0 0 1rem 0;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Gallery Page */

#gallery {

}

#gallery ul li > div {
  margin: 0 auto;
  max-width: 202px;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* History Page */

#history {

}

#history .history-item {

}

#history .history-item .orbit-container {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  margin: 0 auto 1.1875rem auto;
  max-width: 300px;
}

#history .history-item .release-information {
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  margin-bottom: 0;
}

#history .history-item .links.inline-list a {
  font-size: 0.9rem;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Order Page */

#order {
}

#order #question .panel {
  font-size: 0.9rem;
  line-height: 1.2rem;
  padding: 0.75rem 0;
  text-align: center;
}

#order table tbody tr td + td {
  text-align: right;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Roster Page */


.roster-name{
  float:left;
  background:none;
  padding:2px 5px 7px 10px;
  letter-spacing:1px;
  height:25px;
  width:100%;

}

.roster-name a{
  font-size:13px;
  color:white;
  font-weight:00;
}

.roster-name a:visited{
 color:white; 
}

.roster-page-image{
 border:3px solid #22283c;
}

.artist-card{
 background:#22283c;
 float:left;
  transition: background 0.5s ease;
}

.artist-card:hover{
  background:#ed5750;
}

#roster{
}


#roster ul li > div {

}

#roster ul li > div .panel {
  background-color: transparent;
  border-color: transparent;
  font-size: 0.9rem;
  padding:4px 0 0 0;
}

#roster ul li > div .panel div {
  display: block;
  margin-left:-1px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


#roster [class*="block-grid-"]>li{
  margin-left:0px;
 padding:0 10px 0 0px; 
}

#roster > [class*="block-grid-"]{
  margin:0 0 0 2px;
  padding:0;
}

.large-block-grid-4>li:nth-of-type(n){
 padding-bottom:0 !important; 
}



/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Roster Item Page */

#roster-item-left{
  margin-top:-3px;
  float:left;
  width:60%;
  border-right:0px solid #cdcdcd;
  padding-right:0px;
  height:auto:
}

#roster-item-left img{
  width:100%;
  margin-top:0px;
}

#roster-item-left p{
 font-size:13px; 
 text-align:justify;
}

#roster-item-right{
  width:38%;
  float:right;
  margin-top:-23px;
}

#roster-item-right a.th{
  line-height:0;
}

#roster-item-right > .panel{
 padding:0;
 margin:0;
}

medium-block-grid-2>li {
    margin-bottom: -9px;
}



#roster-item-right-item{
  float:right;
  width:100%;
  height:auto;
 margin-bottom:30px; 
}

.large-block-grid-3>li:nth-of-type(3n+1) {
  
    margin-bottom: -15px;
    
    
}

#bandsintown{
  float:right;
}


#roster-item #description p {
  font-size: 0.9rem;
}

#roster-item #links .inline-list a {
  font-size: 0.9rem;
}

#roster-item #soundcloud iframe {
  margin-bottom: 1rem;
}

#roster-item #bandsintown {
  margin-bottom: 1rem;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Footer */

#footer{
  float:left;
  padding:15px 0px;
  display:inline-block;
  width:100%;
  height:auto;
  background:#ed5750;
}

#footer-container{
  width:90%;
  float:left;
  margin:0 auto;
}

#footer-logo{
  float:left; 
  margin-right:20px;
}


#footer ul{
  float:left;
  color:white;
  font-size:12px;
  height:100%;
  padding:bottom:10px;
  border-right:1px solid white;
  padding-right:20px;
  margin-top:10px;
  margin-right:10px;
  list-style:none;
} 

#footer ul li{
  margin-top:5px;
}

#footer ul li a{
  color:white !important;
  font-weight:normal !important;
}

#footer ul li a:hover{
  color:black !important;
}
  
#footer ul li img{
  padding:0;
  margin:5px 0 10px; 0;
  border:3px solid white;
  width:45px; 
}
  
#footer ul li img:hover{
  transition: border 0.5s ease;
  border:3px solid #22283c; 
}
  
.footer-header{
  color:white !important;
  font-weight:bolder;
  font-size:14px;
}

#footer-mailchimp{
  width:auto;
  float:left;
  background:none;
  display:inline-block;
  margin-top:-18px;
  margin-left:10px;
  color:white !important;
}

#mc_embed_signup h2{
 color:white; 
 font-size:15px !important;
}

label{
  font-size:12px;
  color:white;
}

#mce-error-response{
  font:white;
  font-size:12px;
  float:left;
  padding:0px;

}

#mc_embed_signup div#mce-responses{
  padding:0 !important;
  margin:-15px 0 0 0 !important;
  width:100% !important;
} 

#mc_embed_signup div.response{
 margin:0em !important;
 font-weight:300 !important;
}

#mc_embed_signup div.response a{
  color:white;
}

#mc_embed_signup #mce-success-response{
color:white !important;
font-size:12px;
}

#goddamnit{padding-top:0 !important;}




/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Media Queries */

@media (max-width: 540px) {
  

 #cart{
   display:inline; 
   float:right !important;
   margin:0;
   padding:0;
  }
  
  form {
    margin: 0 0 0rem;
    width:auto;
  }

  .box {
    margin-top:-4px;
    display:inline;
  }

.container-1 input#search {
  width:140px !important;
}

#store-dropdown{
  padding-bottom:2px;
 border-bottom:1px solid #cdcdcd; 
}
  
  #store-dropdown li{
    width:100%;
    margin-bottom:5px;
  }
  
  #store-dropdown ul{
   width:100%; 
  }
  
  
#store-dropdown .dropdown-content {
max-height:300px;
width:220px;
overflow:scroll;
}


#store-navigation{
  border-bottom:1px solid #22283c;
}


#store-nav-wrapper{
  border-bottom:0px;
}
  
#product-left{
  width:100%; 
}

#product-right{
  width:100%;
  padding-left:0px;
}

.roster-name {
line-height: 19px;
}

.panel-info a{
  font-size:9px;
  font-family:'Open Sans';
  font-weight:bold;
  color:white;
}

.front-page-image-left{
  width:100%;
  height:auto;
  float:left;
  padding:0px;
  margin:0 10px 0 0;
}

.front-page-image-right{
  width:100%;
  height:auto;
  float:right;
  padding:0 0px 0px 0px;
}

h6.list_artist {
  margin-top:10px;
  font-size:12px;
  padding:0;
    margin-bottom:-2px;
}

span.list_title{
font-size:11px; 
height:0px;
padding:0px;
}

#store-navigation h{
  margin-top:-5px;
  padding:0;
  font-size:20px !important;
  text-decoration:none !important;
}

.post-date{
  font-weight:400;
  text-transform:uppercase;
  font-family:'Open Sans';
  margin:3px 0 15px 0;
  float:left;
  font-size:11px;
  display:block;
  width:100%;
  color:black; 
}

#videos img{
  width:96%;
}

.news-post h5{
  font-size:18px !important;
}



#browse{
  display:none;
}


.ddm{
float:left;
padding:0 0px;
margin-left:0px !important;
margin-right:5px;
height:30px;
width:100%;
display:block;
margin-bottom:12px;
padding-left:5px;

border:1px solid black;
}

.ddm #2{

}

.ddm select{
  background:white;
  font-weight:bold;
  height:28px;
  font-size:11px; 
  padding:5px 0px; 5px 0;
  outline:none;

}

#store-navigation ul{
display:none !important;
}

#store-navigation h{
 margin-bottom:-10px; 
}


#store-navigation{
 border:none; 
}


.bxslider{
 display:none; 
}

 
}

@media (min-width:540px) {
   #rfc{
 display:none;
} 
 
}


@media (max-width:640px) {
  
  .container-1 input#search {
  width:130px !important;
}

.top-bar-section ul li{
  height:25px;
}

.est-city{
 margin:0; 
 float:left;
 display:block;
 width:100%:;
}

#info-page-header h3, #info-page-header span{
 width:100%; 
}

.top-bar-section ul li:hover{
  background:#ed5750;
}

#roster-item-left{
  float:left;
  width:100%;
  height:auto:
  padding:0;
}

#roster-item-right{
  float:right;
  width:100%;
  padding:0;
}

h3 {
  font-size:24px;
}

#roster ul li{
margin-bottom:20px;
}

.news-post{
  border-bottom:1px solid #cdcdcd;
}


  #mobile-nav{
    display:block;
  }
  
  #nav-container{
    display:none;
  }
  
  #slider{
  display:none;
}

.top-bar {
  padding-top:5px;
  background:#22283c;
  height:57px;
}

.top-bar-section ul {
  background:#22283c;
}

.contain-to-grid{
 background:#22283c;
height:57px;
position: fixed;
z-index:30000;
}


.colored-header{
 font-size:20px; 
 float:left;
 color:black;
 font-weight:700;
 border-bottom:0px solid black;
}

.f-topbar-fixed {
    padding-top: 0px !important;
}

.top-bar-section ul li a{
 background:#22283c !important;
  color:white;
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
  font-family:arial;
  text-transform:uppercase;
}


.top-bar-section ul li a:hover{
  color:white; 
}

.top-bar-section ul li:hover>a{
  color:white;
}

.top-bar-section .dropdown li a{
 color:white; !important;
   -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  /* ...and now for the proper property */
  transition:.5s;
}


.title-area {
    background: #22283c !important;
}


#cart{
  float:left;
}

.box {
 width: 130px; 
}

#store-dropdown ul{
 display:block;
 width:100%;
}

#store-navigation{
padding:none;
}

#store-navigation ul{
display:none;
}

#mobile-layout{
  float:left;
 margin-top:80px; 
}

}

@media (max-width:710px) {
 #store-navigation ul{
   display:none;
}
#cart{
  float:left;
}

.box {
 width: 130px; 
}

#browse {
  display:none};
}

@media (max-width:870px) {
   #mobile-layout{
   display:inline ;
 }
 
 #goddamnit{
  padding-top:20px !important; 
 }
 
 #info-page-mobile{
  display:inline;
  }
  
  #info-page-big{
    display:none;
   }
 
 
 #info-page-left{
  width:100%;

}

#info-page-right{
  width:100%;
  padding:0;

}
  
 #big-layout{
  display:none; 
 }
 
  
#store-page h4{
  line-height:20px;
}


 #index-left{
  width:100%;
}

 #index-right{
  width:100%;
  padding-left:0px;
}

.image-full{
 float:left;
 width:100%;
}
 
 
 .columns {
  padding-left:0; 
}



 .front-page-images{
  display:none;
}


#videos{
  width:100%;
  float:left; 
  padding:0;
}

.releases{
  border-bottom:1px solid #dcdcdc;
  margin-bottom:0px;
}
 .colored-header-right{
  padding:10px 10px 10px 0px; 
}

 .header-image{
  display:none;
}

#full{
  display:none; 
}

#instagram{
  display:none;
}

#footer li{
  padding:0;
}

#footer-logo img{
  display:none;
}

#footer li{
  width:auto;
  margin:0
  padding:0;
}

ul {
  margin-left:0;
}

article h5{
  line-height:12px !important;
  margin-top:10px !important;
}

article h5 a{
  font-size:15px;
}

#store-navigation h{
}


#bse{
  font-size:9px;
  float:left;
  padding-right:5px !important;
  width:auto;
  background:white;
  width:100%;
  display:block;
  padding-bottom:10px;
}

#mobile-nav{

}

#mobile-box{
  float:left;
  margin-left:60px;
  margin-top:-25px;
  margin-bottom:0;
  padding-bottom:0;
  width: 90px;
  height:25px;
  display:inline;
}

#mobile-box{
 display:none; 
}


}

@media (max-width: 900px) {

}

@media (max-width: 1000px) {
.est-city{


}
  .choose{
    display:none;
  }

.header-image{
  margin:63px 0 0px 0;
}

.small-nav{
  visibility: hidden;
}

.container{
  margin-top:100px; 
}

#slider{
 padding-top:60px; 
}

#socials {
  display:none;
}

.music-video-right{
  width:100%;
  padding-left:0;
}

.music-video-left{
  width:100%;
  padding-left:0;
}

.front-page-images i{
display:none;
}

.news-post h5{
  font-size:18px;
}

#primary_nav_wrap ul a{
  font-size:13px; 
}

#news-left{
  width:100%;
}


#footer-shadow img{
  width:100px;
}


#news-right{
  display:none;
}


#roster{
 padding:0;
}




}


@media (max-width: 1200px) {

.main-container{
  width:100%;
}}

/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/*  Video Caption Effect */

.grid {
	padding: 0px 0px 00px 0px;
	max-width: 1300px;
	margin: 0 auto;
	list-style: none;
	height:auto;
}

.grid li {
	display: inline-block;
	width: auto;
	margin: 0px; 
	padding: 0px;
	text-align: left;
	position: relative;
}

.grid figure {
	margin: 0;
	position: relative;
}

.grid figure img {
	max-width: 100%;
	display: block;
	position: relative;
	border:8px solid #22283c;
}

.grid figcaption {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	background: #22283c;
	color: #ed5750;
}

.grid figcaption h3 {
	margin: 0;
	padding: 0;
	color: #fff;
	font-style:italic;
	 font-size:14px !important;
}

.grid figcaption span:before {
	content: 'by ';
}

.grid figcaption span{
  font-size:12px !important; 
}

.grid figcaption a {
	text-align: center;
	padding: 5px 10px;
	border-radius: 2px;
	display: inline-block;
	background: #ed5750;
	border:1px solid #ed5750;
	color: white;
	font-size:12px !important;
}

.grid figcaption a:hover {
  background:#333d5b;
  border:1px solid white;
  transition:ease .5s;
}

@media screen and (max-width: 31.5em) {
.grid {
  padding: 10px 0;
}
.grid li {
	width: 100%;
	min-width: 300px;
}
}

/* Individual Caption Styles */

/* Caption Style 3 */
.cs-style-3 figure {
	overflow: hidden;
}

.cs-style-3 figure img {
	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	transition: transform 0.4s;
}

.no-touch .cs-style-3 figure:hover img,
.cs-style-3 figure.cs-hover img {
}

.cs-style-3 figcaption {
	height: 70px;
	width: 100%;
	top: auto;
	bottom: 0;
	opacity: 0;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
	transition: transform 0.4s, opacity 0.1s 0.3s;
}

.no-touch .cs-style-3 figure:hover figcaption,
.cs-style-3 figure.cs-hover figcaption {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
	-moz-transition: -moz-transform 0.4s, opacity 0.1s;
	transition: transform 0.4s, opacity 0.1s;
}

.cs-style-3 figcaption a {
	position: absolute;
	bottom: 20px;
	right: 20px;
}


/***************************************************/
/***************************************************/
/***************************************************/
/***************************************************/


/* Errors */

#error {
  padding: 100px 0 150px 0;
}

#error h3 {
  text-align: center;
}

#error p {
  text-align: center;
}


