﻿@charset "UTF-8";
/* 
*	Vendor Dependencies
* ============================================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, .img-grid article .img-info h2, .sidebar h2, h4, .sidebar .latest-releases .release h3, .sidebar .latest-releases .release h2, .template-index .section-title, .track-list h3, .track-list .img-grid article .img-info h2, .img-grid article .img-info .track-list h2, .track-list .sidebar h2, .sidebar .track-list h2, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/*============================================================================
  #Breakpoint and Grid Variables
==============================================================================*/
/*================ The following are dependencies of csswizardry grid ================*/
/*============================================================================
  #Grid Setup
    - Based on csswizardry grid, but with floated columns, a fixed gutter size, and BEM classes
    - Breakpoints defined above, under #Breakpoint and Grid Variables
    - Note the inclusion of .grid-uniform to take care of clearfixes on evenly sized grid items
==============================================================================*/
/* Force clearfix on grids */
.grid,
.grid--rev,
.grid--full,
.grid-uniform {
  *zoom: 1; }
  .grid:after,
  .grid--rev:after,
  .grid--full:after,
  .grid-uniform:after {
    content: '';
    display: table;
    clear: both; }

/* Manual grid__item clearfix */
.grid__item.clear {
  clear: both; }

/*============================================================================
  Drop relative positioning into silent classes which can't take advantage of
  the `[class*="push--"]` and `[class*="pull--"]` selectors.
==============================================================================*/
/*============================================================================
  Grid Setup
    1. Allow the grid system to be used on lists.
    2. Remove any margins and paddings that might affect the grid system.
    3. Apply a negative `margin-left` to negate the columns' gutters.
==============================================================================*/
.grid,
.grid--rev,
.grid--full,
.grid-uniform {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -30px; }

.grid__item {
  float: left;
  min-height: 1px;
  padding-left: 30px;
  vertical-align: top;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/*============================================================================
  Reversed grids allow you to structure your source in the opposite
  order to how your rendered layout will appear.
==============================================================================*/
.grid--rev {
  direction: rtl;
  text-align: left; }
  .grid--rev > .grid__item {
    direction: ltr;
    text-align: left;
    float: right; }

/* Gutterless grids have all the properties of regular grids, minus any spacing. */
.grid--full {
  margin-left: 0; }
  .grid--full > .grid__item {
    padding-left: 0; }

/*============================================================================
  WIDTHS
    - Create width classes, prefixed by the specified namespace.
==============================================================================*/
/*================ Clearfix helper on uniform grids ================*/
/*================ Helper show/hide classes around our breakpoints ================*/
/*================ Our regular, non-responsive width and helper classes ================*/
/** Whole */
.one-whole {
  width: 100%; }

/* Halves */
.one-half {
  width: 50%; }

/* Thirds */
.one-third {
  width: 33.333%; }

.two-thirds {
  width: 66.666%; }

/* Quarters */
.one-quarter {
  width: 25%; }

.two-quarters {
  width: 50%; }

.three-quarters {
  width: 75%; }

/* Fifths */
.one-fifth {
  width: 20%; }

.two-fifths {
  width: 40%; }

.three-fifths {
  width: 60%; }

.four-fifths {
  width: 80%; }

/* Sixths */
.one-sixth {
  width: 16.666%; }

.two-sixths {
  width: 33.333%; }

.three-sixths {
  width: 50%; }

.four-sixths {
  width: 66.666%; }

.five-sixths {
  width: 83.333%; }

/* Seventh */
.one-seventh {
  width: 14.285%; }

/* Eighths */
.one-eighth {
  width: 12.5%; }

.two-eighths {
  width: 25%; }

.three-eighths {
  width: 37.5%; }

.four-eighths {
  width: 50%; }

.five-eighths {
  width: 62.5%; }

.six-eighths {
  width: 75%; }

.seven-eighths {
  width: 87.5%; }

/* Tenths */
.one-tenth {
  width: 10%; }

.two-tenths {
  width: 20%; }

.three-tenths {
  width: 30%; }

.four-tenths {
  width: 40%; }

.five-tenths {
  width: 50%; }

.six-tenths {
  width: 60%; }

.seven-tenths {
  width: 70%; }

.eight-tenths {
  width: 80%; }

.nine-tenths {
  width: 90%; }

/* Twelfths */
.one-twelfth {
  width: 8.333%; }

.two-twelfths {
  width: 16.666%; }

.three-twelfths {
  width: 25%; }

.four-twelfths {
  width: 33.333%; }

.five-twelfths {
  width: 41.666%; }

.six-twelfths {
  width: 50%; }

.seven-twelfths {
  width: 58.333%; }

.eight-twelfths {
  width: 66.666%; }

.nine-twelfths {
  width: 75%; }

.ten-twelfths {
  width: 83.333%; }

.eleven-twelfths {
  width: 91.666%; }

.show {
  display: block !important; }

.hide {
  display: none !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

/*================ Our responsive classes, if we have enabled them ================*/
@media only screen and (max-width: 480px) {
  /** Whole */
  .small--one-whole {
    width: 100%; }
  /* Halves */
  .small--one-half {
    width: 50%; }
  /* Thirds */
  .small--one-third {
    width: 33.333%; }
  .small--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .small--one-quarter {
    width: 25%; }
  .small--two-quarters {
    width: 50%; }
  .small--three-quarters {
    width: 75%; }
  /* Fifths */
  .small--one-fifth {
    width: 20%; }
  .small--two-fifths {
    width: 40%; }
  .small--three-fifths {
    width: 60%; }
  .small--four-fifths {
    width: 80%; }
  /* Sixths */
  .small--one-sixth {
    width: 16.666%; }
  .small--two-sixths {
    width: 33.333%; }
  .small--three-sixths {
    width: 50%; }
  .small--four-sixths {
    width: 66.666%; }
  .small--five-sixths {
    width: 83.333%; }
  /* Seventh */
  .small--one-seventh {
    width: 14.285%; }
  /* Eighths */
  .small--one-eighth {
    width: 12.5%; }
  .small--two-eighths {
    width: 25%; }
  .small--three-eighths {
    width: 37.5%; }
  .small--four-eighths {
    width: 50%; }
  .small--five-eighths {
    width: 62.5%; }
  .small--six-eighths {
    width: 75%; }
  .small--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .small--one-tenth {
    width: 10%; }
  .small--two-tenths {
    width: 20%; }
  .small--three-tenths {
    width: 30%; }
  .small--four-tenths {
    width: 40%; }
  .small--five-tenths {
    width: 50%; }
  .small--six-tenths {
    width: 60%; }
  .small--seven-tenths {
    width: 70%; }
  .small--eight-tenths {
    width: 80%; }
  .small--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .small--one-twelfth {
    width: 8.333%; }
  .small--two-twelfths {
    width: 16.666%; }
  .small--three-twelfths {
    width: 25%; }
  .small--four-twelfths {
    width: 33.333%; }
  .small--five-twelfths {
    width: 41.666%; }
  .small--six-twelfths {
    width: 50%; }
  .small--seven-twelfths {
    width: 58.333%; }
  .small--eight-twelfths {
    width: 66.666%; }
  .small--nine-twelfths {
    width: 75%; }
  .small--ten-twelfths {
    width: 83.333%; }
  .small--eleven-twelfths {
    width: 91.666%; }
  .small--show {
    display: block !important; }
  .small--hide {
    display: none !important; }
  .small--text-left {
    text-align: left !important; }
  .small--text-right {
    text-align: right !important; }
  .small--text-center {
    text-align: center !important; }
  .small--left {
    float: left !important; }
  .small--right {
    float: right !important; }
  .grid-uniform .small--one-half:nth-child(2n+1),
  .grid-uniform .small--one-third:nth-child(3n+1),
  .grid-uniform .small--one-quarter:nth-child(4n+1),
  .grid-uniform .small--one-fifth:nth-child(5n+1),
  .grid-uniform .small--one-sixth:nth-child(6n+1),
  .grid-uniform .small--two-sixths:nth-child(3n+1),
  .grid-uniform .small--three-sixths:nth-child(2n+1),
  .grid-uniform .small--two-eighths:nth-child(4n+1),
  .grid-uniform .small--four-eighths:nth-child(2n+1),
  .grid-uniform .small--five-tenths:nth-child(2n+1),
  .grid-uniform .small--one-twelfth:nth-child(12n+1),
  .grid-uniform .small--two-twelfths:nth-child(6n+1),
  .grid-uniform .small--three-twelfths:nth-child(4n+1),
  .grid-uniform .small--four-twelfths:nth-child(3n+1),
  .grid-uniform .small--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /** Whole */
  .medium--one-whole {
    width: 100%; }
  /* Halves */
  .medium--one-half {
    width: 50%; }
  /* Thirds */
  .medium--one-third {
    width: 33.333%; }
  .medium--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium--one-quarter {
    width: 25%; }
  .medium--two-quarters {
    width: 50%; }
  .medium--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium--one-fifth {
    width: 20%; }
  .medium--two-fifths {
    width: 40%; }
  .medium--three-fifths {
    width: 60%; }
  .medium--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium--one-sixth {
    width: 16.666%; }
  .medium--two-sixths {
    width: 33.333%; }
  .medium--three-sixths {
    width: 50%; }
  .medium--four-sixths {
    width: 66.666%; }
  .medium--five-sixths {
    width: 83.333%; }
  /* Seventh */
  .medium--one-seventh {
    width: 14.285%; }
  /* Eighths */
  .medium--one-eighth {
    width: 12.5%; }
  .medium--two-eighths {
    width: 25%; }
  .medium--three-eighths {
    width: 37.5%; }
  .medium--four-eighths {
    width: 50%; }
  .medium--five-eighths {
    width: 62.5%; }
  .medium--six-eighths {
    width: 75%; }
  .medium--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium--one-tenth {
    width: 10%; }
  .medium--two-tenths {
    width: 20%; }
  .medium--three-tenths {
    width: 30%; }
  .medium--four-tenths {
    width: 40%; }
  .medium--five-tenths {
    width: 50%; }
  .medium--six-tenths {
    width: 60%; }
  .medium--seven-tenths {
    width: 70%; }
  .medium--eight-tenths {
    width: 80%; }
  .medium--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium--one-twelfth {
    width: 8.333%; }
  .medium--two-twelfths {
    width: 16.666%; }
  .medium--three-twelfths {
    width: 25%; }
  .medium--four-twelfths {
    width: 33.333%; }
  .medium--five-twelfths {
    width: 41.666%; }
  .medium--six-twelfths {
    width: 50%; }
  .medium--seven-twelfths {
    width: 58.333%; }
  .medium--eight-twelfths {
    width: 66.666%; }
  .medium--nine-twelfths {
    width: 75%; }
  .medium--ten-twelfths {
    width: 83.333%; }
  .medium--eleven-twelfths {
    width: 91.666%; }
  .medium--show {
    display: block !important; }
  .medium--hide {
    display: none !important; }
  .medium--text-left {
    text-align: left !important; }
  .medium--text-right {
    text-align: right !important; }
  .medium--text-center {
    text-align: center !important; }
  .medium--left {
    float: left !important; }
  .medium--right {
    float: right !important; }
  .grid-uniform .medium--one-half:nth-child(2n+1),
  .grid-uniform .medium--one-third:nth-child(3n+1),
  .grid-uniform .medium--one-quarter:nth-child(4n+1),
  .grid-uniform .medium--one-fifth:nth-child(5n+1),
  .grid-uniform .medium--one-sixth:nth-child(6n+1),
  .grid-uniform .medium--two-sixths:nth-child(3n+1),
  .grid-uniform .medium--three-sixths:nth-child(2n+1),
  .grid-uniform .medium--two-eighths:nth-child(4n+1),
  .grid-uniform .medium--four-eighths:nth-child(2n+1),
  .grid-uniform .medium--five-tenths:nth-child(2n+1),
  .grid-uniform .medium--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (max-width: 768px) {
  /** Whole */
  .medium-down--one-whole {
    width: 100%; }
  /* Halves */
  .medium-down--one-half {
    width: 50%; }
  /* Thirds */
  .medium-down--one-third {
    width: 33.333%; }
  .medium-down--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .medium-down--one-quarter {
    width: 25%; }
  .medium-down--two-quarters {
    width: 50%; }
  .medium-down--three-quarters {
    width: 75%; }
  /* Fifths */
  .medium-down--one-fifth {
    width: 20%; }
  .medium-down--two-fifths {
    width: 40%; }
  .medium-down--three-fifths {
    width: 60%; }
  .medium-down--four-fifths {
    width: 80%; }
  /* Sixths */
  .medium-down--one-sixth {
    width: 16.666%; }
  .medium-down--two-sixths {
    width: 33.333%; }
  .medium-down--three-sixths {
    width: 50%; }
  .medium-down--four-sixths {
    width: 66.666%; }
  .medium-down--five-sixths {
    width: 83.333%; }
  /* Seventh */
  .medium-down--one-seventh {
    width: 14.285%; }
  /* Eighths */
  .medium-down--one-eighth {
    width: 12.5%; }
  .medium-down--two-eighths {
    width: 25%; }
  .medium-down--three-eighths {
    width: 37.5%; }
  .medium-down--four-eighths {
    width: 50%; }
  .medium-down--five-eighths {
    width: 62.5%; }
  .medium-down--six-eighths {
    width: 75%; }
  .medium-down--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .medium-down--one-tenth {
    width: 10%; }
  .medium-down--two-tenths {
    width: 20%; }
  .medium-down--three-tenths {
    width: 30%; }
  .medium-down--four-tenths {
    width: 40%; }
  .medium-down--five-tenths {
    width: 50%; }
  .medium-down--six-tenths {
    width: 60%; }
  .medium-down--seven-tenths {
    width: 70%; }
  .medium-down--eight-tenths {
    width: 80%; }
  .medium-down--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .medium-down--one-twelfth {
    width: 8.333%; }
  .medium-down--two-twelfths {
    width: 16.666%; }
  .medium-down--three-twelfths {
    width: 25%; }
  .medium-down--four-twelfths {
    width: 33.333%; }
  .medium-down--five-twelfths {
    width: 41.666%; }
  .medium-down--six-twelfths {
    width: 50%; }
  .medium-down--seven-twelfths {
    width: 58.333%; }
  .medium-down--eight-twelfths {
    width: 66.666%; }
  .medium-down--nine-twelfths {
    width: 75%; }
  .medium-down--ten-twelfths {
    width: 83.333%; }
  .medium-down--eleven-twelfths {
    width: 91.666%; }
  .medium-down--show {
    display: block !important; }
  .medium-down--hide {
    display: none !important; }
  .medium-down--text-left {
    text-align: left !important; }
  .medium-down--text-right {
    text-align: right !important; }
  .medium-down--text-center {
    text-align: center !important; }
  .medium-down--left {
    float: left !important; }
  .medium-down--right {
    float: right !important; }
  .grid-uniform .medium-down--one-half:nth-child(2n+1),
  .grid-uniform .medium-down--one-third:nth-child(3n+1),
  .grid-uniform .medium-down--one-quarter:nth-child(4n+1),
  .grid-uniform .medium-down--one-fifth:nth-child(5n+1),
  .grid-uniform .medium-down--one-sixth:nth-child(6n+1),
  .grid-uniform .medium-down--two-sixths:nth-child(3n+1),
  .grid-uniform .medium-down--three-sixths:nth-child(2n+1),
  .grid-uniform .medium-down--two-eighths:nth-child(4n+1),
  .grid-uniform .medium-down--four-eighths:nth-child(2n+1),
  .grid-uniform .medium-down--five-tenths:nth-child(2n+1),
  .grid-uniform .medium-down--one-twelfth:nth-child(12n+1),
  .grid-uniform .medium-down--two-twelfths:nth-child(6n+1),
  .grid-uniform .medium-down--three-twelfths:nth-child(4n+1),
  .grid-uniform .medium-down--four-twelfths:nth-child(3n+1),
  .grid-uniform .medium-down--six-twelfths:nth-child(2n+1) {
    clear: both; } }

@media only screen and (min-width: 769px) {
  /** Whole */
  .large--one-whole {
    width: 100%; }
  /* Halves */
  .large--one-half {
    width: 50%; }
  /* Thirds */
  .large--one-third {
    width: 33.333%; }
  .large--two-thirds {
    width: 66.666%; }
  /* Quarters */
  .large--one-quarter {
    width: 25%; }
  .large--two-quarters {
    width: 50%; }
  .large--three-quarters {
    width: 75%; }
  /* Fifths */
  .large--one-fifth {
    width: 20%; }
  .large--two-fifths {
    width: 40%; }
  .large--three-fifths {
    width: 60%; }
  .large--four-fifths {
    width: 80%; }
  /* Sixths */
  .large--one-sixth {
    width: 16.666%; }
  .large--two-sixths {
    width: 33.333%; }
  .large--three-sixths {
    width: 50%; }
  .large--four-sixths {
    width: 66.666%; }
  .large--five-sixths {
    width: 83.333%; }
  /* Seventh */
  .large--one-seventh {
    width: 14.285%; }
  /* Eighths */
  .large--one-eighth {
    width: 12.5%; }
  .large--two-eighths {
    width: 25%; }
  .large--three-eighths {
    width: 37.5%; }
  .large--four-eighths {
    width: 50%; }
  .large--five-eighths {
    width: 62.5%; }
  .large--six-eighths {
    width: 75%; }
  .large--seven-eighths {
    width: 87.5%; }
  /* Tenths */
  .large--one-tenth {
    width: 10%; }
  .large--two-tenths {
    width: 20%; }
  .large--three-tenths {
    width: 30%; }
  .large--four-tenths {
    width: 40%; }
  .large--five-tenths {
    width: 50%; }
  .large--six-tenths {
    width: 60%; }
  .large--seven-tenths {
    width: 70%; }
  .large--eight-tenths {
    width: 80%; }
  .large--nine-tenths {
    width: 90%; }
  /* Twelfths */
  .large--one-twelfth {
    width: 8.333%; }
  .large--two-twelfths {
    width: 16.666%; }
  .large--three-twelfths {
    width: 25%; }
  .large--four-twelfths {
    width: 33.333%; }
  .large--five-twelfths {
    width: 41.666%; }
  .large--six-twelfths {
    width: 50%; }
  .large--seven-twelfths {
    width: 58.333%; }
  .large--eight-twelfths {
    width: 66.666%; }
  .large--nine-twelfths {
    width: 75%; }
  .large--ten-twelfths {
    width: 83.333%; }
  .large--eleven-twelfths {
    width: 91.666%; }
  .large--show {
    display: block !important; }
  .large--hide {
    display: none !important; }
  .large--text-left {
    text-align: left !important; }
  .large--text-right {
    text-align: right !important; }
  .large--text-center {
    text-align: center !important; }
  .large--left {
    float: left !important; }
  .large--right {
    float: right !important; }
  .grid-uniform .large--one-half:nth-child(2n+1),
  .grid-uniform .large--one-third:nth-child(3n+1),
  .grid-uniform .large--one-quarter:nth-child(4n+1),
  .grid-uniform .large--one-fifth:nth-child(5n+1),
  .grid-uniform .large--one-sixth:nth-child(6n+1),
  .grid-uniform .large--two-sixths:nth-child(3n+1),
  .grid-uniform .large--three-sixths:nth-child(2n+1),
  .grid-uniform .large--two-eighths:nth-child(4n+1),
  .grid-uniform .large--four-eighths:nth-child(2n+1),
  .grid-uniform .large--five-tenths:nth-child(2n+1),
  .grid-uniform .large--one-twelfth:nth-child(12n+1),
  .grid-uniform .large--two-twelfths:nth-child(6n+1),
  .grid-uniform .large--three-twelfths:nth-child(4n+1),
  .grid-uniform .large--four-twelfths:nth-child(3n+1),
  .grid-uniform .large--six-twelfths:nth-child(2n+1) {
    clear: both; } }

/*============================================================================
  PUSH
    - Push classes, to move grid items over to the right by certain amounts
==============================================================================*/
[class*="push--"] {
  position: relative; }

/* Whole */
.push--one-whole {
  left: 100%; }

/* Halves */
.push--one-half {
  left: 50%; }

/* Thirds */
.push--one-third {
  left: 33.333%; }

.push--two-thirds {
  left: 66.666%; }

/* Quarters */
.push--one-quarter {
  left: 25%; }

.push--two-quarters {
  left: 50%; }

.push--three-quarters {
  left: 75%; }

/* Fifths */
.push--one-fifth {
  left: 20%; }

.push--two-fifths {
  left: 40%; }

.push--three-fifths {
  left: 60%; }

.push--four-fifths {
  left: 80%; }

/* Sixths */
.push--one-sixth {
  left: 16.666%; }

.push--two-sixths {
  left: 33.333%; }

.push--three-sixths {
  left: 50%; }

.push--four-sixths {
  left: 66.666%; }

.push--five-sixths {
  left: 83.333%; }

/* Eighths */
.push--one-eighth {
  left: 12.5%; }

.push--two-eighths {
  left: 25%; }

.push--three-eighths {
  left: 37.5%; }

.push--four-eighths {
  left: 50%; }

.push--five-eighths {
  left: 62.5%; }

.push--six-eighths {
  left: 75%; }

.push--seven-eighths {
  left: 87.5%; }

/* Tenths */
.push--one-tenth {
  left: 10%; }

.push--two-tenths {
  left: 20%; }

.push--three-tenths {
  left: 30%; }

.push--four-tenths {
  left: 40%; }

.push--five-tenths {
  left: 50%; }

.push--six-tenths {
  left: 60%; }

.push--seven-tenths {
  left: 70%; }

.push--eight-tenths {
  left: 80%; }

.push--nine-tenths {
  left: 90%; }

/* Twelfths */
.push--one-twelfth {
  left: 8.333%; }

.push--two-twelfths {
  left: 16.666%; }

.push--three-twelfths {
  left: 25%; }

.push--four-twelfths {
  left: 33.333%; }

.push--five-twelfths {
  left: 41.666%; }

.push--six-twelfths {
  left: 50%; }

.push--seven-twelfths {
  left: 58.333%; }

.push--eight-twelfths {
  left: 66.666%; }

.push--nine-twelfths {
  left: 75%; }

.push--ten-twelfths {
  left: 83.333%; }

.push--eleven-twelfths {
  left: 91.666%; }

@media only screen and (min-width: 481px) and (max-width: 768px) {
  /* Whole */
  .push--medium--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium--one-third {
    left: 33.333%; }
  .push--medium--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium--one-quarter {
    left: 25%; }
  .push--medium--two-quarters {
    left: 50%; }
  .push--medium--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium--one-fifth {
    left: 20%; }
  .push--medium--two-fifths {
    left: 40%; }
  .push--medium--three-fifths {
    left: 60%; }
  .push--medium--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium--one-sixth {
    left: 16.666%; }
  .push--medium--two-sixths {
    left: 33.333%; }
  .push--medium--three-sixths {
    left: 50%; }
  .push--medium--four-sixths {
    left: 66.666%; }
  .push--medium--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium--one-eighth {
    left: 12.5%; }
  .push--medium--two-eighths {
    left: 25%; }
  .push--medium--three-eighths {
    left: 37.5%; }
  .push--medium--four-eighths {
    left: 50%; }
  .push--medium--five-eighths {
    left: 62.5%; }
  .push--medium--six-eighths {
    left: 75%; }
  .push--medium--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium--one-tenth {
    left: 10%; }
  .push--medium--two-tenths {
    left: 20%; }
  .push--medium--three-tenths {
    left: 30%; }
  .push--medium--four-tenths {
    left: 40%; }
  .push--medium--five-tenths {
    left: 50%; }
  .push--medium--six-tenths {
    left: 60%; }
  .push--medium--seven-tenths {
    left: 70%; }
  .push--medium--eight-tenths {
    left: 80%; }
  .push--medium--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium--one-twelfth {
    left: 8.333%; }
  .push--medium--two-twelfths {
    left: 16.666%; }
  .push--medium--three-twelfths {
    left: 25%; }
  .push--medium--four-twelfths {
    left: 33.333%; }
  .push--medium--five-twelfths {
    left: 41.666%; }
  .push--medium--six-twelfths {
    left: 50%; }
  .push--medium--seven-twelfths {
    left: 58.333%; }
  .push--medium--eight-twelfths {
    left: 66.666%; }
  .push--medium--nine-twelfths {
    left: 75%; }
  .push--medium--ten-twelfths {
    left: 83.333%; }
  .push--medium--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (max-width: 768px) {
  /* Whole */
  .push--medium-down--one-whole {
    left: 100%; }
  /* Halves */
  .push--medium-down--one-half {
    left: 50%; }
  /* Thirds */
  .push--medium-down--one-third {
    left: 33.333%; }
  .push--medium-down--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--medium-down--one-quarter {
    left: 25%; }
  .push--medium-down--two-quarters {
    left: 50%; }
  .push--medium-down--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--medium-down--one-fifth {
    left: 20%; }
  .push--medium-down--two-fifths {
    left: 40%; }
  .push--medium-down--three-fifths {
    left: 60%; }
  .push--medium-down--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--medium-down--one-sixth {
    left: 16.666%; }
  .push--medium-down--two-sixths {
    left: 33.333%; }
  .push--medium-down--three-sixths {
    left: 50%; }
  .push--medium-down--four-sixths {
    left: 66.666%; }
  .push--medium-down--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--medium-down--one-eighth {
    left: 12.5%; }
  .push--medium-down--two-eighths {
    left: 25%; }
  .push--medium-down--three-eighths {
    left: 37.5%; }
  .push--medium-down--four-eighths {
    left: 50%; }
  .push--medium-down--five-eighths {
    left: 62.5%; }
  .push--medium-down--six-eighths {
    left: 75%; }
  .push--medium-down--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--medium-down--one-tenth {
    left: 10%; }
  .push--medium-down--two-tenths {
    left: 20%; }
  .push--medium-down--three-tenths {
    left: 30%; }
  .push--medium-down--four-tenths {
    left: 40%; }
  .push--medium-down--five-tenths {
    left: 50%; }
  .push--medium-down--six-tenths {
    left: 60%; }
  .push--medium-down--seven-tenths {
    left: 70%; }
  .push--medium-down--eight-tenths {
    left: 80%; }
  .push--medium-down--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--medium-down--one-twelfth {
    left: 8.333%; }
  .push--medium-down--two-twelfths {
    left: 16.666%; }
  .push--medium-down--three-twelfths {
    left: 25%; }
  .push--medium-down--four-twelfths {
    left: 33.333%; }
  .push--medium-down--five-twelfths {
    left: 41.666%; }
  .push--medium-down--six-twelfths {
    left: 50%; }
  .push--medium-down--seven-twelfths {
    left: 58.333%; }
  .push--medium-down--eight-twelfths {
    left: 66.666%; }
  .push--medium-down--nine-twelfths {
    left: 75%; }
  .push--medium-down--ten-twelfths {
    left: 83.333%; }
  .push--medium-down--eleven-twelfths {
    left: 91.666%; } }

@media only screen and (min-width: 769px) {
  /* Whole */
  .push--large--one-whole {
    left: 100%; }
  /* Halves */
  .push--large--one-half {
    left: 50%; }
  /* Thirds */
  .push--large--one-third {
    left: 33.333%; }
  .push--large--two-thirds {
    left: 66.666%; }
  /* Quarters */
  .push--large--one-quarter {
    left: 25%; }
  .push--large--two-quarters {
    left: 50%; }
  .push--large--three-quarters {
    left: 75%; }
  /* Fifths */
  .push--large--one-fifth {
    left: 20%; }
  .push--large--two-fifths {
    left: 40%; }
  .push--large--three-fifths {
    left: 60%; }
  .push--large--four-fifths {
    left: 80%; }
  /* Sixths */
  .push--large--one-sixth {
    left: 16.666%; }
  .push--large--two-sixths {
    left: 33.333%; }
  .push--large--three-sixths {
    left: 50%; }
  .push--large--four-sixths {
    left: 66.666%; }
  .push--large--five-sixths {
    left: 83.333%; }
  /* Eighths */
  .push--large--one-eighth {
    left: 12.5%; }
  .push--large--two-eighths {
    left: 25%; }
  .push--large--three-eighths {
    left: 37.5%; }
  .push--large--four-eighths {
    left: 50%; }
  .push--large--five-eighths {
    left: 62.5%; }
  .push--large--six-eighths {
    left: 75%; }
  .push--large--seven-eighths {
    left: 87.5%; }
  /* Tenths */
  .push--large--one-tenth {
    left: 10%; }
  .push--large--two-tenths {
    left: 20%; }
  .push--large--three-tenths {
    left: 30%; }
  .push--large--four-tenths {
    left: 40%; }
  .push--large--five-tenths {
    left: 50%; }
  .push--large--six-tenths {
    left: 60%; }
  .push--large--seven-tenths {
    left: 70%; }
  .push--large--eight-tenths {
    left: 80%; }
  .push--large--nine-tenths {
    left: 90%; }
  /* Twelfths */
  .push--large--one-twelfth {
    left: 8.333%; }
  .push--large--two-twelfths {
    left: 16.666%; }
  .push--large--three-twelfths {
    left: 25%; }
  .push--large--four-twelfths {
    left: 33.333%; }
  .push--large--five-twelfths {
    left: 41.666%; }
  .push--large--six-twelfths {
    left: 50%; }
  .push--large--seven-twelfths {
    left: 58.333%; }
  .push--large--eight-twelfths {
    left: 66.666%; }
  .push--large--nine-twelfths {
    left: 75%; }
  .push--large--ten-twelfths {
    left: 83.333%; }
  .push--large--eleven-twelfths {
    left: 91.666%; } }

/*============================================================================
  PULL
    - Pull classes, to move grid items back to the left by certain amounts
==============================================================================*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before,
  .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../bower_components/slick-carousel/slick/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../bower_components/slick-carousel/slick/fonts/slick.eot");
  src: url("../bower_components/slick-carousel/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../bower_components/slick-carousel/slick/fonts/slick.woff") format("woff"), url("../bower_components/slick-carousel/slick/fonts/slick.ttf") format("truetype"), url("../bower_components/slick-carousel/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  margin-top: -10px;
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover,
  .slick-prev:focus,
  .slick-next:hover, .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before,
    .slick-prev:focus:before,
    .slick-next:hover:before, .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }

.slick-prev:before, .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -45px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/* 
*	Colours
* ============================================== */
/* 
*	Layout Variables
* ============================================== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  *zoom: 1; }
  .container:after {
    content: '';
    display: table;
    clear: both; }

@media screen and (max-width: 768px) {
  .container--mobile-full {
    padding: 0px; } }

/* 
*	picture grid global 
* ============================================== */
.img-grid article {
  background: black;
  outline: 1px solid white;
  padding: 0;
  *zoom: 1; }
  .img-grid article:after {
    content: '';
    display: table;
    clear: both; }
  .img-grid article a {
    text-decoration: none;
    color: white; }
  .img-grid article a:hover {
    color: #ff569e; }

@media (max-width: 768px) {
  .img-grid article {
    border-left: none;
    border-right: none; } }

.img-grid article {
  background: inhert; }

.img-grid article figure {
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
  overflow: hidden; }
  .img-grid article figure a {
    display: block;
    overflow: hidden;
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    transition: 500ms; }
  .img-grid article figure img {
    width: 100%;
    display: block;
    height: auto;
    float: left; }

.img-grid article:hover figure a {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1); }

.img-grid article .img-info {
  padding: 25px 30px 30px;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }
  .img-grid article .img-info h2 {
    color: white;
    padding-bottom: 10px !important;
    font-weight: 700; }

.img-grid .ajax-loaded {
  clear: both;
  background: black; }

img {
  max-width: 100%;
  height: auto; }

/* 
*	common btn
* ============================================== */
.btn {
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }

.btn-grey, .btn-pink, .btn-black, .btn {
  *zoom: 1;
  display: block;
  padding: 30px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase; }
  .btn-grey:after, .btn-pink:after, .btn-black:after, .btn:after {
    content: '';
    display: table;
    clear: both; }

.btn-grey {
  color: #939393;
  background: #dcdcdc; }
  .btn-grey:hover {
    background: darkgray;
    color: white; }

.btn-pink {
  background: #ff569e;
  color: white; }
  .btn-pink:hover {
    background: #ff2381;
    color: white; }

.btn--secondary-pink {
  background: #ff569e;
  color: white; }
  .btn--secondary-pink:hover {
    background: #ff2381;
    color: white; }

.btn-black {
  background: #000000;
  color: white; }
  .btn-black:hover {
    background: #1a1a1a;
    color: white; }

.btn--medium {
  width: 155px;
  margin: 0;
  height: 45px;
  line-height: 45px;
  padding: 0;
  font-size: 15px; }

/* 
*	Document Layout
* ============================================== */
html {
  background: black; }

body {
  position: relative;
  background: black;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 100;
  line-height: 28px;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  transition: opacity 300ms; }

body.faded {
  opacity: 1; }

html, body, *, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* 
	position the main content on top of the navigation, 
	when the body has the class "nav--open" translate 
	#main $nav-width from right to uncover nav below
*/
#nav-primary, #main {
  float: right; }

#nav-primary {
  width: 500px;
  max-width: 100%; }

#main {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-right: -500px; }
  @media (max-width: 500px) {
    #main {
      margin-right: 0; } }

#overlay--nav-open {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(47, 47, 47, 0.5);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  transition: opacity 500ms; }

body.overlay--opacity #overlay--nav-open {
  opacity: 1; }

body.overlay--height #overlay--nav-open {
  max-height: 9999px; }

.supports-csstransforms3d #main, .csstransforms3d #main {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: -moz-transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 500ms cubic-bezier(0.645, 0.045, 0.355, 1); }

.supports-csstransforms3d body.nav--open #main, .csstransforms3d body.nav--open #main {
  -webkit-transform: translate3d(-500px, 0, 0);
  -moz-transform: translate3d(-500px, 0, 0);
  -ms-transform: translate3d(-500px, 0, 0);
  -o-transform: translate3d(-500px, 0, 0);
  transform: translate3d(-500px, 0, 0); }

.supports-csstransforms3d body.nav--open .toggle-switch, .csstransforms3d body.nav--open .toggle-switch {
  opacity: 0; }

.no-csstransforms3d #main {
  left: 0; }

.no-csstransforms3d body.nav--open #main {
  left: -500px; }

.no-csstransforms3d body.nav--open .toggle-switch {
  opacity: 0; }

.hidden {
  display: none; }

/* 
*	Type Sizes
* ============================================== */
h1, .h1 {
  font-size: 64px;
  line-height: 75px;
  padding-bottom: 20px;
  font-weight: bold; }
  @media (max-width: 600px) {
    h1, .h1 {
      font-size: 40px;
      line-height: 50px; } }

h2, .h2, .wrap-bio .bio p:first-child, .intro p {
  font-size: 32px;
  line-height: 42px;
  padding-bottom: 20px; }

h3, .img-grid article .img-info h2, .sidebar h2, .h3 {
  font-size: 24px;
  line-height: 36px;
  padding-bottom: 20px; }

h4, .sidebar .latest-releases .release h3, .sidebar .latest-releases .release h2, .template-index .section-title, .track-list h3, .track-list .img-grid article .img-info h2, .img-grid article .img-info .track-list h2, .track-list .sidebar h2, .sidebar .track-list h2, .h4 {
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 20px; }

h5, .h5 {
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px; }

h6, .h6 {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 20px; }

h1, h2, h3, .img-grid article .img-info h2, .sidebar h2, h4, .sidebar .latest-releases .release h3, .sidebar .latest-releases .release h2, .template-index .section-title, .track-list h3, .track-list .img-grid article .img-info h2, .img-grid article .img-info .track-list h2, .track-list .sidebar h2, .sidebar .track-list h2, h5, h6 {
  font-weight: 700; }

p {
  font-size: 16px;
  line-height: 28px;
  padding-bottom: 30px; }

em {
  font-style: italic; }

.date, .policy {
  color: #939393;
  font-size: 15px;
  line-height: 23px;
  font-style: italic; }

main .category {
  color: #ff569e;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 20px;
  font-weight: 700; }
  main .category a {
    color: #ff569e; }
  main .category a:hover {
    text-decoration: underline; }

.uppercase {
  text-transform: uppercase; }

.bold, strong {
  font-weight: bold; }

hr {
  display: block;
  height: 1px;
  border: none;
  outline: none;
  background: #cbcbcb;
  padding: 0;
  margin: 30px 0;
  clear: both;
  float: left;
  width: 100%; }

/* 
*	Helpers
* ============================================== */
.text--right {
  text-align: right; }

.text--center {
  text-align: center; }

.text--left {
  text-align: left; }

/* 
*	Links / Buttons
* ============================================== */
a {
  text-decoration: underline;
  color: #ff569e;
  -webkit-transition: 500ms ease;
  -moz-transition: 500ms ease;
  transition: 500ms ease; }

a:hover {
  color: #db4c89; }

/* 
*	Iframes
* ============================================== */
iframe {
  max-width: 100%;}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* 
*	Navigation
* ============================================== */
#nav-primary {
  padding: 90px 60px;
  opacity: 0;
  -webkit-transition: 2000ms;
  -moz-transition: 2000ms;
  transition: 2000ms; }
  @media (max-width: 500px) {
    #nav-primary {
      padding-left: 30px;
      padding-right: 30px;
      position: fixed;
      right: 0;
      top: 0;
      height: 100%;
      overflow-y: scroll;
      z-index: 0 !important; } }
  #nav-primary a {
    text-decoration: none;
    color: white; }
    #nav-primary a:hover {
      color: #ff569e; }
  #nav-primary > ul > li {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222; }
  #nav-primary ul > li > ul {
    margin-top: 10px; }
  #nav-primary ul > li > ul > li {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
    padding: 0; }
    #nav-primary ul > li > ul > li a {
      color: #cbcbcb; }
  #nav-primary .social {
    display: none; }
    #nav-primary .social li {
      width: auto;
      margin-right: 15px;
      float: left; }
    #nav-primary .social li:last-child {
      margin-right: 0px; }
    #nav-primary .social span {
      font-size: 18px; }
  #nav-primary .new-releases {
    color: white;
    margin-top: 20px;
    clear: both; }
    #nav-primary .new-releases a {
      color: white; }
      #nav-primary .new-releases a .release {
        padding-bottom: 30px; }
      #nav-primary .new-releases a:hover {
        color: #ff569e; }
    #nav-primary .new-releases figure {
      padding: 0;
      width: 33%;
      float: left; }
      #nav-primary .new-releases figure img {
        width: 100%;
        height: auto; }
    #nav-primary .new-releases div {
      width: 66%;
      float: left;
      padding-left: 10px; }
      #nav-primary .new-releases div .title {
        font-weight: bold;
        display: block;
        padding-bottom: 5px; }
      #nav-primary .new-releases div .type {
        display: block; }
  #nav-primary .social-mobile {
    display: none !important; }
    @media (max-width: 600px) {
      #nav-primary .social-mobile {
        display: block !important; }
        #nav-primary .social-mobile li {
          margin-right: 25px !important; }
        #nav-primary .social-mobile span {
          font-size: 25px !important; } }

@media screen and (max-width: 760px) {
  #nav-primary {
    z-index: 500;
    background: black; }
    #nav-primary .sub-dir {
      display: none; }
    #nav-primary .social {
      display: inline-block; }
  .nav--open #nav-primary {
    max-width: 100%; } }

body.nav--open #nav-primary {
  opacity: 1; }

.close-nav {
  border: none !important;
  outline: none !important;
  border-radius: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: black !important;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 95px;
  right: -60px;
  z-index: 9999;
  height: 60px;
  width: 60px;
  display: block;
  cursor: pointer;
  -webkit-transform: translate3d(10px, 0, 0);
  -moz-transform: translate3d(10px, 0, 0);
  -ms-transform: translate3d(10px, 0, 0);
  -o-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  transition: 300ms;
  -webkit-transition-delay: 0.4s, 0s;
  -moz-transition-delay: 0.4s, 0s;
  transition-delay: 0.4s, 0s; }
  .close-nav i {
    display: block;
    position: relative;
    z-index: 4;
    background: black;
    color: white;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 60px;
    cursor: pointer;
    -webkit-transition: background 300ms;
    -moz-transition: background 300ms;
    transition: background 300ms; }
  .close-nav:hover {
    border: none;
    background: #ff569e !important; }
    .close-nav:hover i {
      background: #ff569e !important; }

.close-nav:hover {
  background: #ff2381; }

@media (min-width: 600px) {
  body.nav--open .close-nav {
    -webkit-transform: translate3d(-60px, 0, 0);
    -moz-transform: translate3d(-60px, 0, 0);
    -ms-transform: translate3d(-60px, 0, 0);
    -o-transform: translate3d(-60px, 0, 0);
    transform: translate3d(-60px, 0, 0); } }

@media (min-width: 600px) {
  .no-csstransforms3d body.nav--open .close-nav {
    margin-left: -60px; } }

.close-nav-mobile {
  display: none; }
  @media (max-width: 600px) {
    .close-nav-mobile {
      display: block;
      position: absolute;
      right: 30px;
      top: 30px;
      font-size: 50px; } }

/* 
*	Menu Burger
* ============================================== */
.toggle-switch {
  float: right;
  display: block;
  position: relative;
  overflow: hidden;
  color: white;
  margin: 10px 0 0 0;
  padding: 15px;
  right: -15px;
  width: 150px;
  height: 70px;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s; }
  .toggle-switch:hover {
    background: #ff569e;
    color: white !important; }

.toggle-switch:focus {
  outline: none; }

.toggle-switch .burger {
  display: block;
  position: absolute;
  top: 55%;
  right: -10px;
  background: white;
  width: 45px;
  height: 4px;
  margin: -4px auto 0;
  -webkit-transform: origin(left top);
  -moz-transform: origin(left top);
  -ms-transform: origin(left top);
  -o-transform: origin(left top);
  transform: origin(left top);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 800ms;
  -moz-transition: 800ms;
  transition: 800ms; }

.toggle-switch .burger::before,
.toggle-switch .burger::after {
  position: absolute;
  display: block;
  left: 0;
  width: 45px;
  height: 4px;
  background-color: white;
  content: "";
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }

.toggle-switch .burger::before {
  top: -12px; }

.toggle-switch .burger::after {
  bottom: -12px; }

.toggle-switch .text {
  font-size: 22px;
  font-weight: 700; }

@media screen and (max-width: 600px) {
  .toggle-switch {
    margin-top: 0;
    padding: 0;
    border: none !important;
    width: 100px;
    height: 50px; }
  .toggle-switch .text {
    font-size: 15px;
    float: right;
    margin-right: 50px; }
  .toggle-switch .burger,
  .toggle-switch .burger::before,
  .toggle-switch .burger::after {
    width: 35px; } }

@media (max-width: 450px) {
  .toggle-switch {
    text-indent: -9999px;
    overflow: hidden;
    width: 50px;
    margin-top: 0;
    right: 0; } }

/*
* home theme
* ============================================== */
body.home #site-header {
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

body.home.black .toggle-switch {
  color: black; }

body.home.black .toggle-switch:hover {
  border: 2px solid black; }

body.home.black .toggle-switch .burger,
body.home.black .toggle-switch .burger::before,
body.home.black .toggle-switch .burger::after {
  background: black; }

#logo {
  float: left;
  max-width: 140px;
  width: 100%;
  margin: 0; }
  #logo img {
    width: 100%;
    display: block; }

@media (min-width: 661px) {
  #logo {
    padding-top: 15px;
    padding-bottom: 15px; } }

@media screen and (max-width: 600px) {
  #logo {
    margin-top: 8px;
    width: 160px; } }

@media (max-width: 450px) {
  .wrap-logo {
    padding-left: 10px;
    padding-right: 10px; } }

@media (max-width: 350px) {
  #logo {
    width: 140px;
    margin-top: 10px; } }

/* 
*	Main
* ============================================== */
#main {
  background: white;
  *zoom: 1; }
  #main:after {
    content: '';
    display: table;
    clear: both; }

/* 
*	Header
* ============================================== */
#site-header {
  background: black;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  padding-bottom: 30px;
  margin-bottom: 30px; }
  #site-header a {
    text-decoration: none; }

body.single-artists #site-header {
  margin-bottom: 0; }

@media screen and (max-width: 600px) {
  #site-header {
    padding: 30px 0; } }

#topbar-global {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: black;
  text-align: right;
  font-size: 14px;
  margin-bottom: 30px;
  border-bottom: 1px solid #333; }
  #topbar-global ul {
    display: inline-block;
    text-align: right;
    font-weight: 700; }
  #topbar-global li {
    display: inline-block;
    margin: 0;
    padding: 0 0 0 15px; }
  #topbar-global .social {
    margin-left: 15px;
    font-weight: normal;
    font-size: 16px;
    line-height: 1; }
    #topbar-global .social li {
      padding-right: 0;
      padding-left: 5px; }
  #topbar-global a {
    color: #cbcbcb; }
    #topbar-global a:hover {
      color: #ff569e; }
  @media (max-width: 600px) {
    #topbar-global {
      padding: 0;
      height: auto;
      margin: 0;
      border: none; }
      #topbar-global ul {
        display: none; } }

/* 
*	Footer
* ============================================== */

.credits img {
position:relative;
display: inline-block;
float:left;
margin: 0 20px 20px 0;
}

#search-the-shop {
  padding: 30px;
  background: #f5f5f5;
  margin-top: -30px; }

.search-bar .btn {
  padding: 0 10px;
  background: black;
  color: white;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }
  .search-bar .btn:hover {
    background: #1a1a1a; }

.search-bar input {
  border: none !important;
  outline: none !important; }

#site-footer {
  padding: 50px 0;
  background: black;
  font-size: 15px;
  clear: both; }

#site-footer ul {
  font-weight: bold; }
  #site-footer ul ul {
    font-weight: normal;
    margin-top: 20px; }
    #site-footer ul ul li {
      margin-bottom: 10px; }

@media (max-width: 767px) {
  #menu-footer-menu > li {
    margin-bottom: 20px; }
    #menu-footer-menu > li ul {
      margin: 0;
      padding: 0; }
      #menu-footer-menu > li ul li {
        margin: 0;
        padding: 0; } }

#site-footer ul li a {
  color: white; }
  #site-footer ul li a:hover {
    color: #ff569e; }

@media screen and (max-width: 600px) {
  #site-footer {
    padding: 50px 30px; } }

footer {
  color: white;
  width: 100%; }
  footer a {
    text-decoration: none; }
  footer article * {
    display: inline-block; }
  footer #copyright {
    padding-top: 30px;
    font-weight: bold; }
    footer #copyright a {
      float: right;
      color: white;
      text-decoration: underline;
      text-transform: capitalize; }
    footer #copyright a:hover {
      color: #ff569e; }
    footer #copyright p {
      font-size: 15px; }

/* 
*	Home
* ============================================== */
.white-theme {
  background: black; }

#featured--home {
  width: 100%;
  background-color: black;
  position: relative;
  margin: 0px 0px 60px; }
  #featured--home .slide-container {
    height: 960px; }
    @media (max-width: 1440px) {
      #featured--home .slide-container {
        height: 650px; } }
    @media (max-width: 1100px) {
      #featured--home .slide-container {
        height: 550px; } }
    @media (max-width: 768px) {
      #featured--home .slide-container {
        height: 400px; } }
    @media (max-width: 500px) {
      #featured--home .slide-container {
        height: 100%; }
        #featured--home .slide-container .slide-expander {
          width: 100%;
          height: auto; } }
  #featured--home a {
    text-decoration: none; }
    #featured--home a:hover {
      color: #ff569e; }
  #featured--home .featured--home-img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%; }
  #featured--home .category {
    text-transform: uppercase; }
  #featured--home .fade-image {
    margin: 0 auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../images/featured-fade.png) center center no-repeat; }
  #featured--home #featured--info {
    position: absolute;
    bottom: 0;
    max-width: 850px;
    width: 100%;
    height: auto;
    background: black;
    padding: 35px;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    transition: 500ms; }
    @media (max-width: 910px) {
      #featured--home #featured--info {
        left: 0;
        max-width: 100%; } }
    #featured--home #featured--info h2 {
      font-size: 30px;
      line-height: 50px;
      color: white;
      padding-bottom: 5px;
      -webkit-transition: 500ms;
      -moz-transition: 500ms;
      transition: 500ms; }
  #featured--home a:hover #featured--info {
    background: #ff569e; }
  @media (max-width: 768px) {
    #featured--home {
      height: auto;
      margin-bottom: 0; }
      #featured--home .featured--home-img {
        position: static;
        top: 0;
        left: 0;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%; }
      #featured--home .container {
        padding: 0; }
      #featured--home #featured--info {
        clear: both;
        position: relative; }
        #featured--home #featured--info h2 {
          font-size: 24px;
          line-height: 36px; } }
  @media (max-width: 500px) {
    #featured--home {
      height: auto; }
      #featured--home .featured--home-img {
        position: absolute;
        top: 0;
        left: 0;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%; } }

@media (min-width: 769px) {
  .home-articles-container {
    padding-bottom: 60px; } }

.slide-caption {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  color: white;
  font-size: 16px;
  height: auto;
  padding: 15px 20px;
  margin: 0;
  background: black;
  line-height: 1;
  display: block; }
  @media (max-width: 767px) {
    .slide-caption {
      font-size: 13px;
      padding: 10px 10px; } }

/* 
*	Posts Grid Load More Btn
* ============================================== */
.load-more, #load-more, .btn-placements {
  display: block;
  width: 100%;
  height: 100px;
  line-height: 100px;
  color: white;
  background: #ff569e;
  border: none;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 50px 0 0 0;
  text-decoration: none;
  cursor: pointer;
  outline: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }
  @media (max-width: 768px) {
    .load-more, #load-more, .btn-placements {
      margin: 0; } }

.load-more:hover, #load-more:hover, .btn-placements:hover {
  background: #ff2381;
  color: white; }

#load-more.done {
  display: none;
  height: 0; }

.btn-placements {
  margin-top: 0; }

.btn-placements:hover {
  text-decoration: none !important; }

/* 
*	aboutus header
* ============================================== */
#featured--aboutus {
  position: relative;
  background: black;
  width: 100%;
  height: auto;
  color: #e1e1e1; }
  #featured--aboutus article {
    padding: 140px 30px 170px; }
    #featured--aboutus article .sliding-text {
      opacity: 0;
      padding: 0; }
      #featured--aboutus article .sliding-text .slick-slide {
        padding: 30px 0;
        background: black; }
    #featured--aboutus article p {
      font-size: 32px;
      padding-bottom: 0px;
      font-weight: bold; }
    #featured--aboutus article h2 {
      font-size: 82px;
      line-height: 1; }
    @media (max-width: 767px) {
      #featured--aboutus article {
        padding: 30px 30px 60px; }
        #featured--aboutus article h2 {
          font-size: 50px; } }
    @media (max-width: 500px) {
      #featured--aboutus article {
        padding: 0 30px; }
        #featured--aboutus article p {
          font-size: 24px; }
        #featured--aboutus article h2 {
          font-size: 30px; } }

#aboutus-nav {
  position: relative;
  background: #efefef;
  height: auto;
  text-align: center;
  *zoom: 1;
  -webkit-transition: height 500ms;
  -moz-transition: height 500ms;
  transition: height 500ms; }
  #aboutus-nav:after {
    content: '';
    display: table;
    clear: both; }
  @media (max-width: 990px) {
    #aboutus-nav .container {
      padding: 0; } }
  #aboutus-nav ul {
    text-align: left;
    *zoom: 1; }
    #aboutus-nav ul:after {
      content: '';
      display: table;
      clear: both; }
  #aboutus-nav li {
    display: inline-block;
    padding-right: 115px; }
    @media (max-width: 1250px) {
      #aboutus-nav li {
        padding-right: 90px; } }
    @media (max-width: 1150px) {
      #aboutus-nav li {
        padding-right: 70px; } }
    @media (max-width: 1070px) {
      #aboutus-nav li {
        padding-right: 40px; } }
    @media (max-width: 990px) {
      #aboutus-nav li {
        padding-right: 0;
        width: 50%;
        float: left;
        display: block; } }
    @media (max-width: 767px) {
      #aboutus-nav li {
        width: 100%;
        clear: both; } }
  #aboutus-nav li:last-child {
    padding-right: 0; }
  #aboutus-nav li a {
    background: inherit;
    display: inline-block;
    padding: 30px 0;
    color: #939393;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    transition: 500ms;
    border-bottom: 4px solid #efefef; }
    @media (max-width: 990px) {
      #aboutus-nav li a {
        display: block;
        float: left;
        width: 100%;
        padding: 30px;
        border: 1px solid white; } }
  #aboutus-nav a:hover {
    color: black;
    border-bottom: 4px solid #ff569e; }
    @media (max-width: 990px) {
      #aboutus-nav a:hover {
        border: 1px solid white;
        background: #ff569e;
        color: white; } }

/* 
*	aboutus info
* ============================================== */
.about-container .left-half {
  padding-right: 60px; }
  @media (max-width: 1050px) {
    .about-container .left-half {
      width: 55%; } }
  @media (max-width: 767px) {
    .about-container .left-half {
      width: 100%;
      padding-right: 30px;
      padding-bottom: 0 !important; } }
  .about-container .left-half .btn-custom {
    color: white !important;
    width: 275px;
    padding-top: 10px;
    padding-bottom: 10px; }

@media (max-width: 1050px) {
  .about-container .right-half {
    width: 45%; } }

@media (max-width: 767px) {
  .about-container .right-half {
    width: 100%; } }

.about-container .right-half p {
  padding-bottom: 15px; }

.about-container .wrap-releases .release {
  padding-bottom: 0;
  margin-bottom: 0; }

#aboutus-info {
  width: 100%;
  font-weight: 100;
  min-height: 500px; }
  #aboutus-info .right-half, #aboutus-info .left-half {
    padding-top: 40px;
    padding-bottom: 40px; }
  #aboutus-info .about-container:nth-child(even) {
    background: #f3f3f3; }
  #aboutus-info .container {
    *zoom: 1; }
    #aboutus-info .container:after {
      content: '';
      display: table;
      clear: both; }
  #aboutus-info .subtitle {
    display: block;
    padding-bottom: 20px; }

.dropbox-btn {
  *zoom: 1;
  text-align: left;
  width: 275px;
  font-weight: 100;
  position: relative;
  line-height: 1;
  padding: 20px 30px;
  text-decoration: none;
  margin-bottom: 30px; }
  .dropbox-btn:after {
    content: '';
    display: table;
    clear: both; }
  .dropbox-btn h3, .dropbox-btn .img-grid article .img-info h2, .img-grid article .img-info .dropbox-btn h2, .dropbox-btn .sidebar h2, .sidebar .dropbox-btn h2, .dropbox-btn span {
    margin: 0;
    padding: 0;
    line-height: inherit; }
  .dropbox-btn h3, .dropbox-btn .img-grid article .img-info h2, .img-grid article .img-info .dropbox-btn h2, .dropbox-btn .sidebar h2, .sidebar .dropbox-btn h2 {
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 4px; }
  .dropbox-btn span {
    font-size: 14px; }
  .dropbox-btn img {
    position: absolute;
    width: 40px;
    height: 17px;
    right: 30px;
    top: 50%;
    margin-top: -7px; }
  .dropbox-btn:hover {
    color: white; }

.partners-title {
  color: #5b5b5b;
  font-weight: bold;
  font-size: 20px;
  padding-top: 30px;
  padding-bottom: 10px; }

.partners-list li {
  display: inline-block;
  padding-right: 30px;
  margin-bottom: 10px; }

/* 
*	About Landing
* ============================================== */
.about-container {
  padding-top: 30px;
  padding-bottom: 30px; }
  .about-container .section-wrapper {
    padding-top: 15px; }

.section-title {
  padding-top: 30px;
  border-top: 1px solid #cbcbcb; }

.section-title.no-border {
  border: none;
  padding-top: 0; }

/* 
*	artists info
* ============================================== */
.feature-artist {
  position: relative;
  display: block;
  width: 100%;
  background: black;
  height: 30px;
  margin-bottom: 60px; }

.artist-nav {
  background: black;
  padding: 0;
  width: 100%;
  color: white;
  margin: 0px 0px 15px 0px; }
  .artist-nav .wrap-cols {
    *zoom: 1; }
    .artist-nav .wrap-cols:after {
      content: '';
      display: table;
      clear: both; }
  .artist-nav a {
    color: white; }
  .artist-nav a:hover {
    color: #ff569e; }
  .artist-nav span {
    display: inline-block;
    margin-left: 8px; }
  .artist-nav section {
    position: relative;
    width: 100%; }
    .artist-nav section div {
      padding-top: 0px; }
      .artist-nav section div ul {
        padding: 0 30px; }
        @media (max-width: 767px) {
          .artist-nav section div ul {
            padding: 0; } }
      .artist-nav section div ul * {
        display: block;
        width: 100%;
        margin: 5px 0;
        font-size: 16px;
        font-weight: bold;
        clear: both;
        float: left; }
  .artist-nav .artist-list {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #222; }
    @media (min-width: 768px) {
      .artist-nav .artist-list > * {
        padding-top: 15px;
        padding-bottom: 15px; } }

@media (max-width: 768px) {
  .artist-nav {
    margin-bottom: 0; }
    .artist-nav .artist-list {
      margin-top: 15px; } }

.filters {
  width: 60%;
  float: left;
  padding-top: 2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  padding: 5px 30px 5px 0px; }
  @media (max-width: 767px) {
    .filters {
      width: 60%;
      padding-bottom: 20px; } }
  .filters ul, .filters li {
    display: inline; }
  .filters ul {
    text-align: right;
    width: 100%;
    display: block; }
  .filters li {
    padding-left: 10px; }
    .filters li ul {
      display: inline; }
  .filters li.current-cat > a {
    color: #ff569e; }
  @media (max-width: 700px) {
    .filters {
      clear: both;
      width: 100%;
      display: block; }
      .filters ul {
        text-align: left;
        padding-left: 20px; } }
  @media (max-width: 450px) {
    .filters {
      clear: both;
      width: 100%;
      margin-top: 10px;
      margin-bottom: 10px; }
      .filters .customSelect.tinynav1 {
        display: inline-block !important;
        float: left;
        margin: 0; }
      .filters #tinynav1 {
        left: 0px !important; } }

.artist-list {
  clear: both;
  width: 100%; }

span.customSelect {
  font: 12px sans-serif;
  background: #fff url(http://i48.tinypic.com/2u7rpec.png) right center no-repeat;
  border: 1px solid #ddd;
  color: #555;
  padding: 7px 9px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px 2px;
  width: 100%; }

/* 
*	blog dropdown filter
* ============================================== */
.blog-list {
  font-weight: 700; }
  .blog-list div {
    padding-left: 0; }
  .blog-list ul {
    width: 80%; }

.min-nav {
  display: block;
  width: 100%;
  *zoom: 1; }
  .min-nav:after {
    content: '';
    display: table;
    clear: both; }
  .min-nav a {
    text-decoration: none; }
  .min-nav .artist-list, .min-nav .blog-list {
    display: block;
    max-height: 0px;
    overflow: hidden;
    *zoom: 1;
    -webkit-transition: max-height 500ms;
    -moz-transition: max-height 500ms;
    transition: max-height 500ms; }
    .min-nav .artist-list:after, .min-nav .blog-list:after {
      content: '';
      display: table;
      clear: both; }

@media (min-width: 768px) {
  .wrap-min-nav {
    padding-left: 0;
    padding-right: 0; }
  .min-nav ul {
    padding-left: 0 !important; } }

#load-btn {
  display: block;
  background: black;
  color: white;
  padding: 8px;
  width: 112px;
  margin: 10px 0; }

.toggle--div {
  display: block;
  width: 40%;
  float: left;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700; }
  @media (max-width: 767px) {
    .toggle--div {
      width: 40%; } }
  @media (max-width: 450px) {
    .toggle--div {
      width: 100%; } }

.artist-nav .toggle--div {
  padding: 5px 0px 5px 30px; }

.expand-list .toggle--div {
  color: #ff569e; }

/* 
*	blog 
* ============================================== */
.blog-nav {
  color: black;
  margin: 30px 0px 15px 0px; }
  .blog-nav a {
    color: black;
    text-decoration: none; }
  .blog-nav a:hover {
    color: #ff569e; }
  .blog-nav span {
    display: inline-block;
    margin: 2px 8px; }
  .blog-nav section {
    position: relative;
    width: 100%; }
    .blog-nav section div {
      padding-top: 10px; }
      .blog-nav section div ul li {
        display: inline-block; }
      .blog-nav section div ul a {
        padding: 8px;
        margin-right: 10px;
        float: left;
        background: black;
        color: white; }
      .blog-nav section div ul a:hover, .blog-nav section div ul .selected {
        background: #ff569e;
        color: white; }
      .blog-nav section div ul li.current-cat a {
        background: #ff569e; }

@media (min-width: 769px) {
  .blog-nav .toggle--div {
    display: none; }
  .min-nav .blog-list {
    height: auto !important;
    overflow: visible !important;
    max-height: none !important; } }

@media screen and (max-width: 768px) {
  .blog-nav {
    margin: 0;
    background: #dcdcdc;
    font-weight: bold;
    padding: 25px; }
    .blog-nav .toggle--div {
      width: auto; }
    .blog-nav ul {
      width: 100%; }
    .blog-nav a {
      color: #939393; }
    .blog-nav ul a {
      background: #ff569e; }
    .blog-nav span {
      float: right; } }

@media (min-width: 768px) {
  .blog-container {
    padding-bottom: 60px; } }

/* 
*	blog-details page
* ============================================== */
.blog-details-container {
  padding-top: 40px;
  font-weight: 100; }
  .blog-details-container article p {
    padding-bottom: 20px; }

.blog-details-container .blog-post {
  margin-bottom: 40px; }
  .blog-details-container .blog-post img {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%; }
  .blog-details-container .blog-post a {
    color: #ff569e; }
  .blog-details-container .blog-post h2 {
    font-size: 36px;
    margin-bottom: 10px;
    padding-bottom: 15px;
    line-height: 48px; }
  .blog-details-container .blog-post .blog-meta {
    margin-bottom: 30px; }
    .blog-details-container .blog-post .blog-meta * {
      display: inline-block; }
    .blog-details-container .blog-post .blog-meta p:first-child, .blog-details-container .blog-post .blog-meta #author {
      font-weight: bold; }

@media screen and (max-width: 600px) {
  .blog-details-container .blog-post {
    padding: 0 20px; } }

/* 
*	sidebar
* ============================================== */
.sidebar {
  margin-bottom: 60px; }
  .sidebar .wrap-widgets {
    background: #f3f3f3;
    padding: 30px; }
  .sidebar a {
    text-decoration: none; }
  .sidebar h2 {
    font-weight: bold; }

.sidebar .latest-releases .release {
  margin-bottom: 0; }
  .sidebar .latest-releases .release h3, .sidebar .latest-releases .release h2 {
    padding: 0;
    margin: 0; }
  .sidebar .latest-releases .release p {
    padding: 0;
    margin: 0; }
  .sidebar .latest-releases .release img {
    position: relative;
    width: 100%;
    padding: 0;
    margin: 0; }

.sidebar .tour-dates .left {
  width: 40%; }

.sidebar .tour-dates .right {
  width: 60%;
  padding-left: 10px; }

.sidebar .tour-dates .btn-grey, .sidebar .tour-dates .btn-pink {
  margin-top: 10px; }

.sidebar .tour-dates ul {
  margin-bottom: 40px; }

.sidebar .tour-dates li {
  border-bottom: solid 1px #dcdcdc;
  padding-top: 20px;
  padding-bottom: 20px;
  height: auto;
  *zoom: 1; }
  .sidebar .tour-dates li:after {
    content: '';
    display: table;
    clear: both; }

.sidebar .tour-dates li * {
  display: block; }

.sidebar .tour-dates h4, .sidebar .tour-dates .latest-releases .release h3, .sidebar .latest-releases .release .tour-dates h3, .sidebar .tour-dates .latest-releases .release h2, .sidebar .latest-releases .release .tour-dates h2, .sidebar .tour-dates .template-index .section-title, .template-index .sidebar .tour-dates .section-title, .sidebar .tour-dates .track-list h3, .track-list .sidebar .tour-dates h3, .track-list .sidebar .tour-dates h2, .sidebar .tour-dates .track-list h2, .sidebar .track-list .tour-dates h2 {
  margin: 0;
  padding: 0 0 5px 0; }

.sidebar .tour-dates em {
  font-size: 12px; }

.post-banner {
  margin-top: -30px; }

/* 
*	Related Posts
* ============================================== */
.related-posts {
  margin-bottom: 60px;
  border-bottom: 1px solid white; }
  .related-posts h2 {
    padding-top: 30px;
    border-top: solid 1px #dcdcdc; }
  @media (max-width: 768px) {
    .related-posts {
      margin-bottom: 0;
      background: black; }
      .related-posts h2 {
        color: white;
        padding-left: 30px;
        padding-right: 30px; }
      .related-posts article {
        border-bottom: 0; } }

/* 
*	Page Titles
* ============================================== */
.page-title-wrap {
  margin-top: -30px;
  color: white;
  padding: 60px 0 90px 0; }
  .page-title-wrap h1 {
    color: inherit;
    font-size: 80px;
    line-height: 90px; }
  @media (max-width: 768px) {
    .page-title-wrap {
      padding: 40px 0; }
      .page-title-wrap h1 {
        font-size: 50px;
        line-height: 60px; } }
  @media (max-width: 450px) {
    .page-title-wrap h1 {
      font-size: 30px;
      line-height: 40px; } }

.page-title-wrap.has-image {
  padding-bottom: 15px; }

/* 
*	Placements Page
* ============================================== */
.placements-section {
  padding-top: 30px;
  margin-top: 30px;
  *zoom: 1; }
  .placements-section:after {
    content: '';
    display: table;
    clear: both; }
  .placements-section h2 {
    font-weight: bold;
    margin-bottom: 30px; }

.wrap-featured-placements {
  margin-top: 0; }
  .wrap-featured-placements article span {
    color: #c3c3c3;
    font-style: italic;
    font-size: 12px; }

.placements-by-industry {
  clear: both;
  border-top: 1px solid #cbcbcb;
  margin-top: 60px;
  padding-top: 40px; }
  .placements-by-industry .grid__item {
    padding-bottom: 60px; }
    .placements-by-industry .grid__item h3, .placements-by-industry .grid__item .img-grid article .img-info h2, .img-grid article .img-info .placements-by-industry .grid__item h2, .placements-by-industry .grid__item .sidebar h2, .sidebar .placements-by-industry .grid__item h2 {
      font-weight: bold; }
    .placements-by-industry .grid__item li {
      margin-bottom: 20px;
      padding-bottom: 20px;
      border-bottom: 1px solid #cbcbcb; }
      .placements-by-industry .grid__item li div {
        padding: 5px 0; }
      .placements-by-industry .grid__item li .label {
        color: #7e7e7e; }
      .placements-by-industry .grid__item li .data {
        color: #4b4b4b; }

/* 
*	Tourdates Page
* ============================================== */
.tourdates-page {
  padding: 30px 0 0; }
  .tourdates-page .wrap-min-nav {
    padding-left: 30px;
    padding-right: 30px; }
  @media (max-width: 768px) {
    .tourdates-page {
      padding-top: 0; }
      .tourdates-page .tour-dates-header {
        display: none; }
      .tourdates-page .wrap-min-nav {
        padding-left: 0;
        padding-right: 0; }
        .tourdates-page .wrap-min-nav .grid__item {
          padding-left: 0; }
          .tourdates-page .wrap-min-nav .grid__item ul {
            padding-left: 0; } }

.wrap-all-tour-dates hr {
  margin-top: 10px;
  margin-bottom: 10px; }
  @media (max-width: 768px) {
    .wrap-all-tour-dates hr {
      margin: 0;
      display: none; } }

.wrap-all-tour-dates .tour-dates-header {
  font-weight: bold;
  text-transform: uppercase; }
  .wrap-all-tour-dates .tour-dates-header .grid__item {
    padding-top: 10px;
    padding-bottom: 10px; }
  @media (max-width: 767px) {
    .wrap-all-tour-dates .tour-dates-header {
      display: none; } }

.wrap-all-tour-dates .tourdate {
  padding-top: 15px;
  padding-bottom: 15px; }
  .wrap-all-tour-dates .tourdate .grid__item {
    padding-top: 15px;
    padding-bottom: 15px; }
    @media (max-width: 767px) {
      .wrap-all-tour-dates .tourdate .grid__item {
        padding-top: 5px;
        padding-bottom: 5px; } }
  .wrap-all-tour-dates .tourdate .grid__item:nth-child(1), .wrap-all-tour-dates .tourdate .grid__item:nth-child(4) {
    font-weight: bold; }
  .wrap-all-tour-dates .tourdate .buy-tickets-link {
    padding-top: 0;
    padding-bottom: 0; }
    .wrap-all-tour-dates .tourdate .buy-tickets-link .btn {
      height: 50px;
      line-height: 50px;
      padding: 0;
      font-size: 14px; }
  .wrap-all-tour-dates .tourdate .label-mobile {
    display: none; }
  @media (max-width: 768px) {
    .wrap-all-tour-dates .tourdate {
      padding-bottom: 30px; }
      .wrap-all-tour-dates .tourdate .label-mobile {
        display: inline; } }

.wrap-all-tour-dates .tourdate.even {
  background: #fafafa; }

.wrap-all-tour-dates .tourdate:last-child {
  padding-bottom: 100px; }

.tourdates-em {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 18px;
  display: block;
  font-weight: normal; }

/* 
*	Artist Page Template
* ============================================== */
.artists-container {
  padding-top: 30px;
  padding-bottom: 60px; }
  @media (max-width: 768px) {
    .artists-container .wrap-min-nav {
      padding-left: 0;
      padding-right: 0; } }
  @media (max-width: 768px) {
    .artists-container {
      padding-top: 0; } }

@media (max-width: 768px) {
  .page-template-template-artists .page-title-wrap, .page-template-template-tour-dates .page-title-wrap {
    padding-bottom: 0; } }

.artist-container {
  padding-bottom: 30px; }

/* 
*	Artist Header
* ============================================== */
.artist-header .banner {
  height: 650px;
  background-position: top center;
  background-size: cover; }
  @media (max-width: 1440px) {
    .artist-header .banner {
      height: 550px; } }
  @media (max-width: 768px) {
    .artist-header .banner {
      height: 400px; } }
  @media (max-width: 400px) {
    .artist-header .banner {
      height: 300px; } }

.artist-header .pagetitle .container {
  *zoom: 1;
  position: relative; }
  .artist-header .pagetitle .container:after {
    content: '';
    display: table;
    clear: both; }

.artist-header h1 {
  font-weight: bold;
  padding-bottom: 0;
  width: 55%;
  float: left; }
  @media (max-width: 767px) {
    .artist-header h1 {
      width: 100%; } }

.artist-header .social {
  width: 35%;
  padding-top: 25px;
  padding-bottom: 25px;
  float: right;
  height: 100%;
  line-height: 100%; }
  .artist-header .social ul, .artist-header .social li {
    display: inline-block; }
  .artist-header .social ul {
    float: right;
    text-align: right;
    height: 100%; }
    .artist-header .social ul li {
      padding: 10px; }
  .artist-header .social a {
    color: white;
    text-decoration: none; }
    .artist-header .social a:hover {
      color: #ff569e; }
  @media (max-width: 767px) {
    .artist-header .social {
      width: 100%;
      padding-bottom: 0;
      float: left; }
      .artist-header .social ul {
        text-align: left;
        float: left; } }

.artist-header .pagetitle {
  background: black;
  color: white;
  display: block;
  width: 100%;
  margin-bottom: 30px;
  padding: 30px 0; }

/* 
*	Artist Back button
* ============================================== */
.back-to-artists {
  margin-top: -30px;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px 0; }
  .back-to-artists a {
    text-decoration: none;
    color: #dcdcdc;
    font-weight: bold;
    font-size: 15px;
    *zoom: 1; }
    .back-to-artists a:after {
      content: '';
      display: table;
      clear: both; }
    .back-to-artists a:hover {
      color: #ff569e; }
      .back-to-artists a:hover i {
        border-color: #ff569e; }
  .back-to-artists i, .back-to-artists span {
    display: block;
    float: left; }
  .back-to-artists i {
    border-radius: 100%;
    border: 1px solid #dcdcdc;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    margin-top: 1px;
    font-weight: normal;
    -webkit-transition: border-color 500ms;
    -moz-transition: border-color 500ms;
    transition: border-color 500ms; }

/* 
*	Artist Content
* ============================================== */
.section-wrapper {
  padding: 30px 0; }
  .section-wrapper a {
    text-decoration: none; }
    .section-wrapper a:hover {
      text-decoration: underline; }

.bio-hidden {
  display: none; }

.expand-bio {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: none;
  color: #dcdcdc;
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 0;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms; }
  .expand-bio i {
    font-weight: bold; }
  .expand-bio:hover {
    color: black; }

/* 
*	Artist Bio
* ============================================== */
.wrap-bio-dates {
  padding-bottom: 0; }

.wrap-bio .intro, .wrap-bio .bio, .wrap-bio .bio-extended {
  padding-right: 60px; }
  @media (max-width: 767px) {
    .wrap-bio .intro, .wrap-bio .bio, .wrap-bio .bio-extended {
      padding-right: 0; } }

.wrap-bio .bio-extended {
  border-bottom: 1px solid #cbcbcb;
  margin-bottom: 30px; }

.wrap-bio .border {
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #cbcbcb; }

.wrap-bio .bio p:first-child {
  padding-bottom: 15px;
  font-weight: bold; }

@media (max-width: 500px) {
  .wrap-bio .bio p:first-child {
    font-size: 1em;
    line-height: 28px;
    padding-bottom: 15px;
    font-weight: bold; } }

.intro p {
  padding-bottom: 15px;
  font-weight: bold; }

/* 
*	Artist Page Tourdates
* ============================================== */
.wrap-tourdates h2 {
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0; }

.tourdates-listing {
  height: 350px;
  overflow: auto; }
  .tourdates-listing li {
    clear: both;
    border-bottom: 1px solid #cbcbcb;
    padding: 15px 0;
    *zoom: 1; }
    .tourdates-listing li:after {
      content: '';
      display: table;
      clear: both; }
    .tourdates-listing li .date {
      margin-bottom: 0;
      padding-bottom: 0; }
    .tourdates-listing li .city-date {
      width: 40%;
      padding-right: 20px;
      float: left; }
    .tourdates-listing li .location {
      width: 60%;
      float: left; }

.more-dates {
  margin: 30px 0; }

/* 
*	Artist Releases
* ============================================== */
.wrap-releases {
  *zoom: 1;
  padding-bottom: 0; }
  .wrap-releases:after {
    content: '';
    display: table;
    clear: both; }

.wrap-releases h2 {
  border-top: 1px solid #b0b0b0;
  padding-top: 30px;
  padding-bottom: 30px;
  font-weight: bold; }

.release {
  margin-bottom: 30px; }
  .release h3, .release .img-grid article .img-info h2, .img-grid article .img-info .release h2, .release .sidebar h2, .sidebar .release h2 {
    font-weight: bold;
    padding-bottom: 10px; }
  .release img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; }
  .release p {
    padding-bottom: 10px; }
  .release .buy {
    background: #ff569e;
    color: white;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
    text-decoration: none; }
    .release .buy:hover {
      background: #ff2381; }

/* 
*	Artist Videos
* ============================================== */
.videos-title {
  padding-top: 30px;
  border-top: 1px solid #b0b0b0; }

.video-wrapper {
  height: auto;
  height: 0;
  overflow: hidden;
  -webkit-transition: 500ms;
  -moz-transition: 500ms;
  transition: 500ms;
  clear: both;
  background: black;
  max-height: 0;
  *zoom: 1; }
  .video-wrapper:after {
    content: '';
    display: table;
    clear: both; }

.video-wrapper.showing {
  height: auto;
  max-height: 700px;
  margin: 30px 0; }

.video-player {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0; }

.video-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-thumb-container {
  padding-bottom: 30px; }
  .video-thumb-container textarea {
    width: 100%;
    outline: none;
    height: 100px;
    padding: 15px;
    border: 1px solid #dcdcdc;
    margin: 15px 0;
    color: #444;
    font-size: 13px;
    line-height: 20px; }
  .video-thumb-container .embed {
    margin-top: 15px; }

.video-thumb {
  position: relative; }
  .video-thumb img {
    width: 100%;
    height: auto;
    display: block; }
  .video-thumb button {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 0;
    outline: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    width: 80px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -40px;
    border-radius: 5px;
    z-index: 1;
    cursor: pointer;
    -webkit-transition: 500ms;
    -moz-transition: 500ms;
    transition: 500ms; }
    .video-thumb button span {
      display: none; }
    .video-thumb button:hover {
      background: black; }

.video-thumb.active {
  outline: 2px solid #ff569e; }

/* 
*	Artist Photos
* ============================================== */
.artist-image-thumb img {
  max-width: 100%;
  height: auto; }

.artist-photo-container {
  color: #a9a9a9;
  margin-bottom: 30px; }
  .artist-photo-container a {
    color: inherit;
    font-weight: 700; }
    .artist-photo-container a:hover {
      color: black; }

/* 
*	Artist Files
* ============================================== */
.file-download {
  width: 100%;
  padding: 30px;
  background: none;
  outline: none;
  border: 1px solid #cbcbcb;
  font-size: 60px;
  margin-bottom: 10px;
  display: block;
  *zoom: 1; }
  .file-download:after {
    content: '';
    display: table;
    clear: both; }
  .file-download .ion-ios-folder-outline {
    color: #cbcbcb;
    float: left; }
  .file-download .ion-ios-cloud-download-outline {
    color: #ff569e;
    float: right; }

.file-wrap h4, .file-wrap .sidebar .latest-releases .release h3, .sidebar .latest-releases .release .file-wrap h3, .file-wrap .sidebar .latest-releases .release h2, .sidebar .latest-releases .release .file-wrap h2, .file-wrap .template-index .section-title, .template-index .file-wrap .section-title, .file-wrap .track-list h3, .track-list .file-wrap h3, .file-wrap .track-list .img-grid article .img-info h2, .track-list .img-grid article .img-info .file-wrap h2, .file-wrap .img-grid article .img-info .track-list h2, .img-grid article .img-info .track-list .file-wrap h2, .file-wrap .track-list .sidebar h2, .track-list .sidebar .file-wrap h2, .file-wrap .sidebar .track-list h2, .sidebar .track-list .file-wrap h2 {
  padding-bottom: 5px;
  font-weight: bold; }

/* 
*	Artist Press Kit
* ============================================== */
.wrap-press-kit {
  padding-bottom: 100px; }

.presskit-download {
  width: 100%;
  padding: 80px;
  border: 1px solid #cbcbcb;
  text-align: center; }

.presskit-download a {
  background: #ff569e;
  color: white;
  display: inline-block;
  margin: 0 auto;
  padding: 40px 130px 40px 70px;
  text-align: center;
  outline: none;
  border: none;
  font-size: 24px;
  position: relative;
  text-decoration: none;
  font-weight: 700; }
  .presskit-download a i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 50px;
    height: 50px;
    right: 50px;
    line-height: 1;
    margin-top: -25px;
    top: 50%; }
  .presskit-download a:hover {
    background: #ff2381; }

/* 
*	SHOP 
*	Overrides Timber
*	Shop on shopify
* ============================================== */
.shop-container {
  padding-top: 30px;
  padding-bottom: 30px; }

.shop-nav {
  margin-top: 30px;
  margin-bottom: 30px; }
  @media (max-width: 767px) {
    .shop-nav {
      margin-bottom: 20px; } }

.blog-news h3, .blog-news .img-grid article .img-info h2, .img-grid article .img-info .blog-news h2, .blog-news .sidebar h2, .sidebar .blog-news h2 {
  margin-bottom: 0;
  padding-bottom: 5px; }

.blog-news em {
  color: #4c4c4c;
  font-size: 14px; }

.template-index .section-title {
  text-transform: uppercase;
  font-weight: bold; }

.shop-featured li {
  display: none; }

.shop-featured img {
  width: 100%;
  height: auto; }

.shop-featured .slick-dots {
  bottom: -40px; }
  .shop-featured .slick-dots li {
    display: inline-block; }

.pagination {
  text-align: left; }

.site-header__cart-toggle {
  margin-left: 15px;
  font-size: 14px;
  font-weight: bold;
  color: white !important;
  display: inline-block;
  background: #222;
  position: relative;
  height: 49px;
  line-height: 50px;
  padding: 0 30px 0 20px; }
  .site-header__cart-toggle i {
    font-size: 20px; }
  .site-header__cart-toggle span {
    position: absolute;
    top: -10px;
    right: 15px; }
  .site-header__cart-toggle:hover {
    color: white !important;
    background: #ff569e; }
  @media (max-width: 600px) {
    .site-header__cart-toggle {
      position: absolute;
      top: 31px;
      right: 110px;
      background: none;
      z-index: 1; }
      .site-header__cart-toggle:hover {
        background: none !important; } }
  @media (max-width: 450px) {
    .site-header__cart-toggle {
      right: 60px;
      top: 35px; } }

.page-title-shop {
  margin-top: -90px !important; }

.featured-collections .btn--medium {
  width: 100%; }

/* 
*	Shop by ARtist
* ============================================== */
/* 
*	Cart
* ============================================== */
.cart table {
  vertical-align: middle; }
  .cart table * {
    vertical-align: inherit; }

.cart__row {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px; }

.drawer__title {
  padding-bottom: 0; }

.drawer__close .icon {
  font-size: 20px; }

.ajaxcart__row p {
  padding-bottom: 10px; }
  .ajaxcart__row p a {
    font-weight: 700; }

.ajaxcart__footer .btn--medium {
  width: 100%;
  margin-bottom: 15px; }

/* 
*	Product Templates
* ============================================== */
#ProductPhoto img {
  width: 100%;
  height: auto; }

.product-single {
  padding-top: 30px; }

.audio-player {
  *zoom: 1;
  background: #f7f7f7; }
  .audio-player:after {
    content: '';
    display: table;
    clear: both; }
  .audio-player > div {
    border-top: 1px solid #e5e5e5; }

.track-list h3, .track-list .img-grid article .img-info h2, .img-grid article .img-info .track-list h2, .track-list .sidebar h2, .sidebar .track-list h2 {
  padding: 15px 30px;
  margin: 0;
  text-transform: uppercase; }

.sample-title {
  font-size: 18px;
  font-weight: bold;
  height: 76px;
  line-height: 76px;
  padding-left: 15px !important; }

.product-sigle .rte img {
  display: none; }

.wrap-offers {
  background: #f7f7f7;
  padding: 30px; }
  .wrap-offers form {
    margin-bottom: 0;
    box-shadow: none; }
    .wrap-offers form #AddToCart {
      margin-top: 35px;
      width: 100%; }
    .wrap-offers form label {
      font-weight: 700; }
  .wrap-offers #ProductPrice {
    margin-bottom: 0;
    padding: 25px 0;
    color: #ff569e;
    font-size: 40px; }

#radios {
  border-top: 1px solid #b0b0b0; }

.radio-container {
  *zoom: 1;
  padding: 25px 0;
  border-bottom: 1px solid #b0b0b0; }
  .radio-container:after {
    content: '';
    display: table;
    clear: both; }

.radio-container label {
  display: block;
  float: left;
  width: 100%;
  padding-left: 60px;
  margin-left: -39px;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px; }
  .radio-container label .price {
    display: block;
    clear: both;
    color: #ff569e;
    padding: 2px 0; }

.radio-container .iradio {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 39px;
  height: 39px;
  border: none;
  float: left;
  cursor: pointer;
  background: center center url(../images/icheck.png) no-repeat; }

.radio-container .iradio.checked {
  background: center top url(../images/icheck.png) no-repeat; }

.radio-container .iradio.disabled {
  background: center bottom url(../images/icheck.png) no-repeat; }

/* 
*	Collection Templates
* ============================================== */
.breadcrumb {
  margin-bottom: 0; }

.wrap-collection-header {
  background: black;
  color: white;
  margin-top: -60px; }

.collection-header {
  padding: 30px 0;
  margin: 0; }
  .collection-header .section-header__title {
    font-weight: bold;
    font-size: 55px;
    padding-bottom: 0; }

.collection-banner {
  width: 100%;
  height: 650px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-top: -60px;
  margin-bottom: 90px; }
  @media (max-width: 1440px) {
    .collection-banner {
      height: 550px; } }
  @media (max-width: 768px) {
    .collection-banner {
      height: 400px; } }
  @media (max-width: 400px) {
    .collection-banner {
      height: 300px; } }

.collection-banner-title {
  background: black;
  padding: 15px 30px 30px; }

.has-image .collection-banner {
  margin-bottom: 30px; }

.more-about-artist {
  padding: 0;
  max-width: 90%;
  float: right;
  padding: 0;
  height: 50px;
  line-height: 50px;
  padding: 0 20px; }

.collection-tags {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 14px; }
  .collection-tags li {
    display: inline-block;
    padding-right: 20px;
    padding-bottom: 16px; }
    .collection-tags li a {
      color: black;
      text-transform: uppercase;
      font-weight: bold;
      text-decoration: none;
      padding-bottom: 4px; }
    .collection-tags li a:hover {
      color: #ff569e; }
  .collection-tags li.filter--active a {
    border-bottom: 5px solid #ff569e; }

.product-box {
  margin-bottom: 60px; }
  .product-box h3, .product-box .img-grid article .img-info h2, .img-grid article .img-info .product-box h2, .product-box .sidebar h2, .sidebar .product-box h2 {
    padding-bottom: 0; }
    .product-box h3 a, .product-box .img-grid article .img-info h2 a, .img-grid article .img-info .product-box h2 a, .product-box .sidebar h2 a, .sidebar .product-box h2 a {
      color: black;
      font-weight: bold; }
  .product-box .grid__image {
    background: black; }
  .product-box img {
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    transition: opacity 500ms; }

.product-box:hover a {
  color: #ff569e; }

.product-box:hover img {
  opacity: 0.75; }

.template-index .product-box {
  margin-bottom: 30px; }

.product-vendor {
  font-weight: bold;
  color: #7B7B7B;
  padding-bottom: 5px; }

.product-price {
  font-weight: bold;
  color: #c2c2c2;
  font-size: 17px;
  padding-bottom: 15px; }

/* 
*	404
* ============================================== */
html.page404 {
  height: 100%;
  background: #ff569e; }

body.error404 {
  background: #ff569e;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 30px; }

.four-oh-four {
  padding: 0 30px;
  display: table;
  height: 100%;
  width: 100%;
  text-align: center; }
  .four-oh-four .wrap {
    display: table-cell;
    vertical-align: middle; }
    .four-oh-four .wrap > div {
      position: relative; }
      .four-oh-four .wrap > div .msg {
        position: absolute;
        width: 100%;
        top: 67%;
        color: white; }
        .four-oh-four .wrap > div .msg h1 {
          font-size: 20px;
          padding-bottom: 0; }
        .four-oh-four .wrap > div .msg a {
          color: white;
          font-weight: 700; }
          .four-oh-four .wrap > div .msg a:hover {
            color: black; }
  .four-oh-four .logo {
    margin-bottom: 90px;
    display: block; }

@media (max-width: 650px) {
  html.page404 {
    height: auto;
    height: 100%; }
  body.error404 {
    background: #ff569e;
    height: auto; }
  .four-oh-four {
    padding: 30px;
    display: block;
    height: auto;
    width: 100%;
    text-align: center; }
    .four-oh-four .wrap {
      display: block; }
      .four-oh-four .wrap > div {
        position: relative; }
        .four-oh-four .wrap > div .msg {
          position: static;
          width: 100%;
          top: auto;
          color: white; }
          .four-oh-four .wrap > div .msg h1 {
            font-size: 20px; }
          .four-oh-four .wrap > div .msg a {
            color: white;
            font-weight: 700; } }

/* 
*	Match Height
* ============================================== */
.img-grid article {
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 500ms, -webkit-transform 500ms, background-color 500ms;
  -moz-transition: opacity 500ms, -moz-transform 500ms, background-color 500ms;
  transition: opacity 500ms, transform 500ms, background-color 500ms; }

.img-grid article.faded {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1; }

/* 
*	SM Icon fonts
* ============================================== */
@font-face {
  font-family: 'socicon';
  src: url("../font/socicon.eot");
  src: url("../font/socicon.eot?#iefix") format("embedded-opentype"), url("../font/socicon.woff") format("woff"), url("../font/socicon.woff2") format("woff2"), url("../font/socicon.ttf") format("truetype"), url("../font/socicon.svg#sociconregular") format("svg");
  font-weight: normal;
  font-style: normal;
  text-transform: initial; }

.socicon {
  font-family: 'socicon' !important; }

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0; }

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto; }

.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px; }

a img.alignnone {
  margin: 5px 20px 20px 0; }

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0; }

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center; }

.wp-caption.alignnone {
  margin: 5px 20px 20px 0; }

.wp-caption.alignleft {
  margin: 5px 20px 20px 0; }

.wp-caption.alignright {
  margin: 5px 0 20px 20px; }

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }
