/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */

/* =============================================================================
 *   Base
 * ========================================================================== */

/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

html {
    background: #fff;
}


body {
    font-family: "Trebuchet MS", "Helvetica Neue", Arial, Helvetica, sans-serif;
    font-size: 87.5%;
}

body.front {
    background: #000;
}

body.not-front {
  background: #000 url(images/bg-pages.jpg) no-repeat top center; 
}


/* =============================================================================
 *   HTML Elements
 * ========================================================================== */

h1 {}

h2 {}

h3 {}

h4 {}

h5 {}

h6 {}

p {}

b,
strong {}

i,
em {}

dfn {}

sup {}

sub {}

del {}

ins {}

blockquote {}

cite {}

q {}

address {}

ul {}

ol {}

li {}

dl {}

dd {}

dt {}

abbr {}

acronym {}

pre,
code,
tt,
samp,
kbd,
var {
    font-family: Consolas, Monaco, 'Courier New', Courier, monospace, sans-serif;
}


/* =============================================================================
 *   Wrappers
 * ========================================================================== */

/*
 * Page wrapper, includes the .container class which sets the overall page or section width
 * Main wrapper in page.tpl.php, the .container class sets the width of the page, do not add width to it!
 */
#page {

}

.not-front #page {
    background: url("images/header-generic.jpg") no-repeat 50% 0;
    overflow: hidden;
}

#page .container {}

/*
 * Wraps all header elements - branding and .region-header
 */
#header {}

/*
 * Wraps the sidebars the content column
 */
#columns {
    margin: 0 auto;
}

.front #columns {
    background: url('images/bg-column-home.png') no-repeat 50% -26px;
}

/*
 * Main content column wrapper
 */
#content-column {

}

/*
 * Wraps the main-content-header, the content region and feed-icons. Use this wrapper to style the entire main content column
 */
#main-content {
    margin: 0;
}

/*
 * Wraps the content region, avoid applying styles to this wrapper, its used mainly for position and invisible gutters and can be problematic to style
 */
#content {}

/*
 * Footer wrapper
 */
#footer {
    background-color: #000;
    overflow: hidden;
}

/*
 * Panels may need additional margin wrangling when in the $content region
 */
#content .panel-display {}

/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width of the contained element - you
 * can style this but never add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps #page
 */
#page-wrapper {}
#page-wrapper .container {}

/*
 * Wraps the leaderboard
 */
#leaderboard-wrapper {}
#leaderboard-wrapper .container {}

/*
 * Wraps the header
 */
#header-wrapper {
    /* Debug styles, is this working */
    background: rgba(255, 192, 203, 0.5);
}
#header-wrapper .container {}

#header {
    position: relative;
    margin: 0 auto;
    height: 58px;
}

/*
 * Wraps the nav elements
 */
#nav-wrapper {}
#nav-wrapper .container {}

/*
 * Wraps breadcrumb
 */
#breadcrumb-wrapper {}
#breadcrumb-wrapper .container {}

/*
 * Wraps messages and help
 */
#messages-help-wrapper {}
#messages-help-wrapper .container {}

/*
 * Wraps the secondary content/preface region
 */
#secondary-content-wrapper {}
#secondary-content-wrapper .container {}

/*
 * Wraps the main content column
 */
#content-wrapper {}
#content-wrapper .container {}

/*
 * Wraps the tertiary content/postfix region
 */
#tertiary-content-wrapper {}
#tertiary-content-wrapper .container {}

/*
 * Footer wrapper
 */
#footer-wrapper {
    /* Debug styles, is this working? */
    background: rgba(255, 192, 203, 0.5);
}
#footer-wrapper .container {}


/* =============================================================================
 *   Branding
 * ========================================================================== */

/*
 * Wraps all the branding elements, logo, name and slogan
 */
#branding {}

.branding-elements {
    margin: 0;
}

/*
 * Logo
 */
#logo {
    padding: 10px 0;
}

#logo img {
    vertical-align: bottom;
}

/*
 * Wrapper for the site name and slogan (hgroup)
 */
#name-and-slogan {}

/*
 * Site name (h1)
 */
#site-name {
    margin: 0;
    height: 62px;
}

#site-name a {
    display: block;
    float: left;
    height: 62px;
    font: 21px "Black Ops One", Verdana, Helvetica, sans-serif;
    text-transform: uppercase;
    line-height: 61px;
    color: #000;

}

#site-name a:link,
#site-name a:visited {
    text-decoration: none;
}

#site-name a:hover,
#site-name a:focus,
#site-name a.active {
    border-bottom: 4px solid #e71d1f;
    color: #e71d1f;
}

/*
 * Site slogan (h2)
 */
#site-slogan {
    margin: 0;
}


/* =============================================================================
 *   Page content header
 * ========================================================================== */

/*
 * Main content header wraps the page title, tabs and actions links
 */
#main-content-header {}

/*
 * The main page title (h1)
 */
#page-title {
    margin: 0;
    color: #fff;
}

.front #page-title {
    display: none;
}

.not-front #page-title {
    font: 36px "Holtwood One SC", Verdana, Helvetica, sans-serif;
    text-transform: uppercase;
	 line-height: 39px;
	 margin-bottom: 18px;
}


/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */

/*
 * Feed icons
 */
.feed-icon {}

/*
 * Aggregator feed source
 */
#aggregator .feed-source .feed-icon {
    display: inline;
    float: none;
    margin-right: 10px;
}

.feed-details dt,
.feed-details dd {
    display: inline;
    margin: 0;
}

/*
 * Generic styles for the more link
 */
.more-link {}

/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
ul.links {
    margin: 0;
    padding: 0;
}

ul.links.inline {
    display: block;
}

ul.links li {
    list-style: none;
    padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
.search-results {
    margin: 0;
}


/* =============================================================================
 *   Regions
 * ========================================================================== */

/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
.region {}

/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
.region-inner {}

/*
 * Regions can be nested, such as when using Panels
 */
.region-inner .region-inner {}

/*
 * Header region, embedded in the #header
 */
.region-header {}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
.region-help {}

/*
 * Secondary content
 */
.region-secondary-content {}

/*
 * Sits above the main content header, like a content-top region
 */
.region-highlighted {
}

/*
 * Sits below the main content, like a content-bottom region
 */
.region-content-aside {}

/*
 * Sidebars - targets both
 */
.sidebar {}

/*
 * First sidebar
 */
.region-sidebar-first {
    background-color: #e0e0e0;
}

.not-front .region-sidebar-first {
}

.not-front .region-sidebar-first a {
    color: #333;
}

.not-front .region-sidebar-first a:hover {
    color: #e71d1f;
}

.not-front .region-sidebar-first .region-inner {
}
/*
 * Second sidebar
 */
.region-sidebar-second {}

/*
 * Tertiary content
 */
.region-tertiary-content {
    background-color: #161616;
    overflow: hidden;
}

.region-tertiary-content .region-inner {
}

/*
 * Footer region
 */
.region-footer {
    margin: 0 auto;
	 position: relative;
}


/* =============================================================================
 *   Links
 * ========================================================================== */

a {
    text-decoration: none;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
}

a:link,
a:visited {}

a:active,
a.active {}

a:hover,
a:focus {
    color:  #3399ff;
}


/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */

/*
 * Use one of the following id's for granular control:
 *  - #menu-bar (menu bar region)
 *  - #primary-menu (main menu)
 *  - #secondary-menu (secondary/user menu)
 * You can target all of these with .nav or div[id$="menu-bar"]
 */
.nav {
    clear: both;
    margin: 0;
}

.nav ul,
.nav ul.menu {
    margin: 0;
    padding: 0;
}

.nav li,
.nav ul.menu li {
    display: inline;
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav li a,
.nav ul.menu li a {
    display: block;
    white-space: nowrap;
    padding: 0 10px;
}

.nav li a:visited,
.nav ul.menu li a:visited {}

.nav li a:hover,
.nav li a:focus,
.nav ul.menu li a:hover,
.nav ul.menu li a:focus {}

.nav .block {
    margin-bottom: 0;
}

#menu-bar {
}

#menu-bar a {
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */

ul.sf-menu {
    margin-bottom: 0;
}

ul.sf-menu a {
    border-left: 0;
    border-top: 0;
    padding: 0 10px;
    text-decoration: none;
    height: 2.5em;
    line-height: 2.5em;
}

ul.sf-menu a:link,
ul.sf-menu a:visited {}

ul.sf-menu li {}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover {
    outline: 0;
}

ul.sf-menu a {}

ul.sf-menu a:focus,
ul.sf-menu a:hover,
ul.sf-menu a:active {
    outline: 0;
}

/*
 * Superfish blocks
 */
.block-superfish {}

#block-superfish-1 {
}

#block-superfish-1 a {
    font: 14px "Black Ops One", Verdana, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #000;
}

#block-superfish-1 a:hover, #block-superfish-1 a.active {
    color: #e71d1f;
    border-bottom: 4px solid #e71d1f;
}

.block-superfish .block-inner .content {}

.block-superfish ul {
    margin: 0 !important;
    padding: 0 !important;
}

.block-superfish ul ul {}

.block-superfish ul ul ul {}

.block-superfish ul ul ul ul {}

.block-superfish li {
    margin: 0 !important;
    padding: 0 !important;
}

/*
 * Vertical style
 */
.sf-vertical {
    width: 100%;
}

.sf-vertical li {
    width: 100%;
}

.sf-vertical li.last {}

.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
    left: 100%;
    top: 0;
    margin: 0;
    padding: 0;
}

.sf-vertical li a {
    padding: 0 10px;
}

/*
 * Navbar style
 */
.sf-navbar {
    padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
.sf-menu.sf-style-default a {
    padding: 0 10px;
}


/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */

ul.menu {
    padding-left: 15px;
}

ul.menu ul {
    padding-left: 15px;
}

ul.menu ul ul {}

ul.menu ul ul ul {}

ul.menu li {
    margin: 0;
}

ul.menu li.collapsed,
ul.menu li.expanded,
ul.menu li.leaf {}

ul.menu li a {}

ul.menu li a:link,
ul.menu li a:visited {}

ul.menu li a:active,
ul.menu li a.active {}

ul.menu li a:hover,
ul.menu li a:focus {}

ul.menu li.active a,
ul.menu li.active-trail a {}

ul.menu li.first,
ul.menu li.last {}

/* If li.content exists it's a problem, so reset the padding */
.block .menu li.content {
    padding: 0;
}


/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */

.book-navigation {}

.book-navigation .page-links {}

.book-navigation .page-previous {}

.book-navigation .page-next {}

.book-navigation .page-up {
    /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
    min-width: 2em;
    white-space: nowrap;
}

.book-navigation .menu {
    margin-left: 0;
}


/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */

#breadcrumb {
    margin: 10px 0;
}

/* If the label is set to show in theme settings the label class is added */
#breadcrumb .breadcrumb-label {
    font-size: 1em;
    display: inline;
    padding-right: 10px;
}

#breadcrumb .breadcrumb-label:after {
    content: ":";
}

#breadcrumb ol {
    margin: 0;
    padding: 0;
}

#breadcrumb .with-breadcrumb-label ol {
    display: inline;
}

#breadcrumb li {
    list-style: none;
    display: inline;
}

#breadcrumb li.crumb-first {}

#breadcrumb li.crumb-last {}

#breadcrumb a {}

#breadcrumb a:link,
#breadcrumb a:visited {}

#breadcrumb a:active,
#breadcrumb a.active {}

#breadcrumb a:hover,
#breadcrumb a:focus {}


/* =============================================================================
 *   Pagers
 * ========================================================================== */

ul.pager {
    clear: both;
    margin: 0;
    text-align: center;
}

.item-list ul.pager li {
    margin: 0;
}

ul.pager li {
    background-image: none;
    display: inline;
    list-style-type: none;
    padding: .5em;
}

ul.pager li.pager-current {
    font-weight: 700;
}

.block ul.pager li {
    margin: 0;
}

/*
 * Theme the various states of pager links
 */
ul.pager li {}

ul.pager li a {}

ul.pager li a:link,
ul.pager li a:visited {}

ul.pager li a:active,
ul.pager li a.active {}

ul.pager li a:hover,
ul.pager li a:focus {}

ul.pager li.pager-item {}
ul.pager li.first {}
ul.pager li.last {}
ul.pager li.pager-current {}
ul.pager li.pager-first {}
ul.pager li.pager-previous {}
ul.pager li.pager-next {}
ul.pager li.pager-last {}


/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */

#skip-link {
    left: 50%;
    margin-left: -6.5em;
    margin-top: 0;
    padding: 0 0.5em;
    position: absolute;
    width: 12em;
    z-index: 50;
}

#skip-link a {
    background: #444;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: block;
    line-height: 2;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#skip-link a:link,
#skip-link a:visited {
    background: #444;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: block;
    line-height: 2;
    padding: 0;
    text-align: center;
    text-decoration: none;
}

#skip-link a:hover,
#skip-link a:focus,
#skip-link a:active {
    outline: 0;
}


/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */

#tasks {
    margin-bottom: 15px;
}

ul.primary {
    border-bottom-color: #ccc;
    margin: 20px 0;
    padding: 0 0 0 5px;
}

ul.primary li {
    display: block;
    float: left;
    margin: 0 1px -1px;
}

ul.primary li a {
    background-color: #f5f5f5;
    border-color: #ccc;
    margin-right: 1px;
    padding: 0 10px;
    display: block;
    float: left;
    height: 1.5em;
    line-height: 1.5em;
}

ul.primary li a:hover,
ul.primary li a:focus {
    background-color: #eee;
    border-color: #ccc;
}

ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
    background-color: #fff;
    border-bottom-color: #fff;
}

ul.secondary {
    border-bottom: 1px solid #ccc;
    margin: 1em 0 0;
    padding: 0 .3em 1em;
}

ul.secondary li {
    border-right: 0;
    list-style: none;
    padding: 0 10px 0 0;
}

ul.secondary li a {}

ul.secondary li a:hover,
ul.secondary li a.active {
    border-bottom: none;
    text-decoration: underline;
}


/* =============================================================================
 *   Action links
 * ========================================================================== */

ul.action-links {
    margin: 20px 0 0;
    list-style: none;
}

ul.action-links li {}


/* =============================================================================
 *  Field Styling
 * ========================================================================== */

/*
 * Wrapper for any field
 */
.field {}

/*
 * Above and inline classes are on the field wrapper
 */
.field-label-above {}

/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
.field-label-inline {}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
.field-label {
    font-size: 1em;
    font-weight: 700;
    font-family: inherit;
    line-height: inherit;
    margin-bottom: 0;
}


/*
 * Field types (Core)
 */

/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
.field-type-image {}

.field-type-image .caption {}

.field-type-image .full-caption {}

.field-type-image .teaser-caption {}

/*
 * Taxonomy
 */
.field-type-taxonomy-term-reference {
    /* The same bottom margin as p, blockquote, ul, ol and dl */
    margin-bottom: 1.5em;
}

.field-type-taxonomy-term-reference.field-label-inline .field-items {
    margin: 0;
    padding: 0;
}

.field-type-taxonomy-term-reference.field-label-inline .field-item {
    display: inline;
    list-style: none;
    padding: 0 10px 0 0;
}

/*
 * Text
 */
.field-type-text {}

/*
 * Long text
 */
.field-type-text-long {}

/*
 * Text with summary
 */
.field-type-text-with-summary {}

/*
 * File
 */
.field-type-file {}

/*
 * Number/Integer
 */
.field-type-number-integer {}

/*
 * Decimal
 */
.field-type-number-decimal {}

/*
 * Number float
 */
.field-type-number-float {}

/*
 * List
 */
.field-type-list-text {}

/*
 * List boolean
 */
.field-type-list-boolean {}

/*
 * List integer
 */
.field-type-list-integer {}

/*
 * List float
 */
.field-type-list-float {}

/*
 * Field types (Contrib)
 */
.field-type-datetime {}

.field-type-node-reference {}

.field-type-user-reference {}

/*
 * Named fields
 */
.field-name-body {}

.field-name-field-image {}

.field-name-field-tags {}

/*
 * Underscores in field name are replaced with dashes
 */
.field-name-field-FIELDNAME {}

/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
.ia-n .field-type-image,
.iat-n .field-type-image {}

/*
 * Float left setting
 */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
    margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
    margin: 5px auto 15px;
}

/*
 * Float right setting
 */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
    margin: 5px 0 15px 20px;
}


/* =============================================================================
 *   Block Styling
 * ========================================================================== */

/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
.block {
    margin-bottom: 20px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
.block-inner {
    margin: 0;
}

/*
 * The first block in the region
 */
.block.first {}

/*
 * The last block in the region
 */
.block.last {}

/*
 * Zebra striping for each block in the region
 */
.block.odd {}

/*
 * Zebra striping for each block in the region
 */
.block.even {}

/*
 * Block title
 */
.block-title {
    margin: 0;
}

.not-front .region-sidebar-first .block-title {
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: normal;
}

.not-front .region-sidebar-first .item-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.not-front .region-sidebar-first .item-list ul li {
    margin: 0 0 30px;
}

/*
 * Block content wrapper
 */
.block-content {}

/*
 * Match item list and block menu margin and padding
 */
.block-content {
    font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
}

.block-content ul,
.block-content ol {
    padding: 0 0 0 15px;
}

.block-content li {
    margin: 0;
    padding: 0;
}

/*
 * Block for the latest news items in the first category
 */
#block-aggregator-category-1 {}

/*
 * Block for the latest news items in the first feed
 */
#block-aggregator-feed-1 {}

/*
 * First block created with "Add block" link
 */
#block-block-2 {}

/*
 * "Recent blog posts" block
 */
#block-blog-recent {}

/*
 * "Book navigation" block for the current book's table of contents
 */
#block-book-navigation {}

/*
 * "Recent comments" block
 */
#block-comment-recent {}

/*
 * "Active forum topics" block
 */
#block-forum-active {}

/*
 * "New forum topics" block
 */
#block-forum-new {}

/*
 * Language switcher block
 */
#block-locale-language {}

/*
 * Custom menu block
 */
#block-menu-menu-NAME {}

/*
 * "Recent content" block
 */
#block-node-recent {}

/*
 * "Syndicate" block for primary RSS feed; see also page.css's .feed-icon
 */
#block-node-syndicate {}

/*
 * "Most recent poll" block
 */
#block-poll-recent {}

/*
 * "Author information" block for the profile of the page's author
 */
#block-profile-author-information {}

/*
 * "Search form" block
 */
#block-search-form {}

/*
 * "Shortcuts" block
 */
#block-shortcut-shortcuts {}

/*
 * "Popular content" block
 */
#block-statistics-popular {}

/*
 * "Main menu" block
 */
#block-system-main-menu {}

/*
 * "Management" block for Drupal management menu
 */
#block-system-management {}

/*
 * "Navigation" block for Drupal navigation menu
 */
#block-system-navigation {}

/*
 * "User menu" block for Drupal user menu
 */
#block-system-user-menu {}

/*
 * "System help" block
 */
#block-system-help {}

/*
 * "Main page content" block
 */
#block-system-main {}

/*
 * "Powered by Drupal" block
 */
#block-system-powered-by {}

/*
 * "User login form" block
 */
#block-user-login {}

/*
 * "Who's new" block for a list of the newest users
 */
#block-user-new {}

/*
 * "Who's online" block for a list of the online users
 */
#block-user-online {}


/** Global Custom Blocks & Views **/

.region-sidebar-first #block-views-shop-views-block-1 .block-title {
    background-position: left -120px;
}

.region-sidebar-first #block-views-shop-views-block-1 .views-field-body table {
    width: 100%;
    float: none;
}

.region-sidebar-first #block-views-shop-views-block-1 .views-field-title {
    text-align: right;
    font-size: 15px;
    line-height: 18px;
}

.region-sidebar-first #block-views-shop-views-block-1 a.external-product-link {
    float: right;
}

#block-views-shop-views-block-1 .item-list ul li {
    margin: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:before,
.clearfix:after,
.row:before,
.row:after{
  display: table;
  content: " ";
}
.container:after,
.container-fluid:after,
.row:after,{
  clear: both;
}

.clearfix:after{
	content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
	float: left;
}


/* =============================================================================
 *   Node Styling
 * ========================================================================== */

.node {
    margin-bottom: 20px;
}
.node .node-content,
#block-views-music-blocks-block-1 .field-content,
#block-views-music-blocks-block-1 .field-content a,
.view-empty,
.view-shop-views .field-content{
	color: #999;
}

.node.node-promoted {}

.node.node-sticky {}

.node.node-by-viewer {}

.node.node-teaser {}

.node.node-full {}

.node.odd {}

.node.even {}

.node .node-title {
    margin: 0;
}

.node .user-picture {}

.node .submitted {}

.node .submitted .username {}

.node .submitted time {}

.node .node-content {}

.node ul.links {}

.node ul.links li {}

.node ul.links li a {}

.node ul.links li.node-read-more a {}

.node ul.links li.comment-add a {}

.node ul.links li.comment-comments a {}

.node ul.links li.comment-new-comments a {}

.node ul.links li.blog-sernames-blog a {}

.node ul.links li.print-html a {}

.node ul.links li.print-email a {}

.node ul.links li.print-pdf a {}

.preview .node {}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
.node-page {}

.node-article {}

.node-book {}

.node-forum {}

.node-poll {}


/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */

/*
 * Wrapper for the list of comments and its titles
 */
#comments {
    margin: 1.5em 0;
}

#comments h2 {}

#comments h2.comment-title {
    margin: 0;
}

#comments h2.comment-form {
    margin: 0;
}

/*
 * Wrapper for a single comment
 */
.comment {
    margin-bottom: 20px;
}

.comment.first {}

.comment.last {}

.comment.odd {}

.comment.even {}

.comment .user-picture {}

.comment .submitted {}

.comment .submitted p {}

.comment .submitted .username {}

.comment .submitted time {}

.comment .user-signature {}

.comment ul.links {}

/*
 * Comment title
 */
.comment-title {
    margin: 0;
}

/*
 * Comment states
 */
.comment-new {}

.comment-by-anonymous {}

.comment-by-node-author {}

.comment-by-viewer {}

.comment-title-hidden {}

.comment-with-picture {}

.comment-with-signature {}

/*
 * Preview of the comment before submitting new or updated comment
 */
.comment-preview {}

/*
 * "New" marker for comments that are new for the current user
 */
.new {
    color: #c00;
}

/*
 * Nested comments are indented
 */
.indented {
    margin-left: 40px;
}


/* =============================================================================
 *   Forms
 * ========================================================================== */

/*
 * Wrapper for a form element (or group of form elements) and its label
 */
.form-item {}

.form-item input.error,
.form-item textarea.error,
.form-item select.error {
    border: 1px solid #c00;
}

.form-item label {
    font-weight: 700;
}

.form-item label.option {}

/*
 * Highlight marks and form required mark
 */
.marker,
.form-required {
    color: #c00;
}

.form-item .description {
    font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item {}

/*
 * The submit button
 */
.form-submit {
    border: none;
    background-color: #e71d1f;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    color: #fff;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 39px;
}

.form-submit:hover {
    background-color: #e71d1f;
}

.container-inline div,
.container-inline label {
    display: inline;
}

/*
 * Define consistent borders
 */
fieldset {
    border: 1px solid #ccc;
}

/*
 * Tips for Drupal's input formats
 */
.tips {}

/*
 * Buttons used by contrib modules like Media
 */
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
}

/*
 * Password confirmation
 */
.password-parent,
.confirm-parent {
    margin: 0;
}


/* =============================================================================
 *   Tables
 * ========================================================================== */

table {
    margin: 10px 0;
    padding: 0;
    width: 100%;
}

table.sticky-header {
    z-index: 10;
}

table,
thead,
tbody,
tr,
th,
td {
    border-color: #ccc;
}

table,
td,
th {
    vertical-align: middle;
}

caption,
th,
td {
    text-align: left;
}

thead tr {
    font-weight: 700;
    background-color: #e5e5e5;

}

td,
th {
    border-bottom: 0;
    margin: 0;
    padding: 5px 7px;
}

tbody {}

tbody tr {
    border-top: 1px solid #ccc;
}

tr.odd {
    background: #fff;
}

tr.info,
tr.even,
tr:nth-child(2n+2) {
    border-bottom: 0;
    background-color: #f5f5f5;
}

tr.drag {}

tr.drag-previous {}

tr.odd td.active {
    background-color: #eee;
}

tr.even td.active {
    background-color: #ebebeb;
}

.lt-ie8 tr {}

.lt-ie8 tr.even,
.lt-ie8 tr.odd {}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
#forum td {}

#forum td .created,
#forum td .posts,
#forum td .topics,
#forum td .last-reply,
#forum td .replies,
#forum td .pager {
    white-space: normal;
}


/* =============================================================================
 *   Messages
 * ========================================================================== */

/* Left and right margin are set by the global gutter width */
div.messages {
    margin-bottom: 10px;
    margin-top: 10px;
}

div.messages ul {
    margin-top: 0;
    margin-bottom: 0;
}

div.status {}

div.warning {}

tr.warning {}

div.error,
tr.error {}

.error {}

.warning {}

/*
 * Unpublished nodes
 */
.node-unpublished,
.comment-unpublished {}

.node-unpublished,
.comment-unpublished {}

.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
    color: pink;
    color: rgba(239, 170, 170, 0.4);
    font-family: Impact,"Arial Narrow",Helvetica,sans-serif;
    font-size: 75px;
    font-weight: bold;
    height: 0;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    overflow: visible;
    text-align: center;
    text-transform: uppercase;
    word-wrap: break-word;
}

/*
 * Otherwise these elements will appear below the "Unpublished" text
 */
.lt-ie8 {}

.lt-ie8 .node-unpublished > *,
.lt-ie8 .comment-unpublished > * {
    position: relative;
}


/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */

.maintenance-page {}
.maintenance-page .container {
    padding: 40px 0;
}

.maintenance-page #site-name,
.maintenance-page #page-title {
    margin: 0;
}

.db-offline {}

.db-offline .container {
    margin: 0 auto;
    padding: 40px 0;
    width: 100%;
    max-width: 960px;
}

.db-offline div.messages {
    margin: 20px 0 0;
}

.db-offline #content {
    padding: 20px 0;
}


/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */

/*
 * Admin menu overrides
 */
#admin-menu {
    margin: 0;
    padding: 0;
}

/*
 * Devel Module
 */
.dev-query {
    background: #eee;
    padding: 30px;
}

/*
 * Styleguide module tweaks
 */
#styleguide-header {
    padding: 0 10px;
}

#styleguide-header .item-list {
    font-family: inherit;
    margin: 0 20px 20px 0;
    min-height: 260px;
    width: auto;
}

/** Add to Cal **/

.addtocal {
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
	 -webkit-transition: all .2s linear;
	 -moz-transition: all .2s linear;
	 -o-transition: all .2s linear;
	 -ms-transition: all .2s linear;
	 transition: all .2s linear;
}

.page-node .node-content .addtocal {
	float: none;
	margin: 12px 0 24px;
	width: 162px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	margin-bottom: 24px;
	border: none;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	background: #e71d1f;
	color: #fff;
}

.page-node .node-content .addtocal:hover {
	background-color: #666;
}

.page-node .node-content ul.addtocal_menu {
	margin-top: 39px;
}

/** Views Responsive Grid **/

.views-responsive-grid .views-row, .views-responsive-grid .views-column {
    overflow: hidden;
}

/** Service Links **/

.service-links ul.links li {
    display: inline-block;
	 vertical-align: middle;
	 height: 32px;
	 margin-top: 24px;
}

/* =============================================================================
 *   Pretty Photo
 * ========================================================================== */
.border-img{
    background-color: #292929;
    border: 1px solid #2B2B2B;
    box-shadow: 0 1px 2px 0px #1F1F1F;
    line-height: 0;
    margin-bottom: 10px;
    padding: 5px;
    position: relative;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}
.border-img:hover{ 
    background-color: #181818;
}
.border-img.alignleft{
    margin-right:20px !important;
    margin-bottom: 1px !important;
}
.border-img.alignright{
    margin-left:20px !important;
    margin-bottom: 1px !important;
}
.border-img.aligncenter {
    display: table;
    margin: 0 auto 10px;
    margin-bottom: 10px;
}
.border-img a{
    position: absolute;
    width: 36px;
    height: 36px;
    text-indent: -9999px;
    top: 50%;
    margin-top: -17px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;

}
.border-img a.img-view{
    left: -36px;
    background: url('../images/view.png') no-repeat;
}
.border-img a.img-link{
    right: -36px;
    background: url('../images/link.png') no-repeat;
}
.border-img a:hover{background-position: 0 -36px;}

/* =============================================================================
 *   Flex slider
 * ========================================================================== */

.flexslider {
    background: none;
    border: none;
}

.flexslider .slides {
    margin: 0;
    padding: 0;
}

.flex-direction-nav a{
    text-indent: 9999px;
    width: 44px !important;
    height: 44px !important; 
    position: absolute;
    top: 50%;
    margin-top: -22px;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;        
} 

.flex-direction-nav a.flex-prev{
    left: -100px;
    background: url('../images/slider-left-d.png') no-repeat;
}
.flex-direction-nav a.flex-next{
    right: -100px;
    background: url('../images/slider-right-d.png') no-repeat;
}
.flex-direction-nav a:hover{background-position: 0 -44px !important;}
#block-views-slideshow-block:hover .flex-direction-nav a,
.slider-blog:hover .flex-direction-nav a{display: block;}

/* =============================================================================
 *   80e Social Metrics Footer
 * ========================================================================== */

.block .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat center -161px;
    height: 40px;
    width: 100%;   
    display: block;
}

.block-social-metrics .block-inner {
    margin: 0 9px;
}

#block-social-metrics-tw .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat -198px 0px;
}

#block-social-metrics-tw .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat center -63px;
}

#block-social-metrics-fb .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat center -15px;
}

#block-social-metrics-sc .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat center -250px;
}

#block-social-metrics-ig .social_metrics .icon {
    background: url('images/social-metrics-icons2.png') no-repeat center -107px;
}

.block .social_metrics .count {
    color: #fff;
    font-family: 'Racing Sans One';
    font-size: 18px;
    background: #222222;
    display: block;
    text-align: center;
    padding: 0px 5px;
    border-radius: 3px;
}

.block .social_metrics .links {
    font-family: 'Karla'; 
    font-style: italic; 
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid #2d2d2d;   
}

.block .social_metrics .links span {
    position: relative;
    top: -12px;
    display: inline-block;
    background: #161616;
    padding: 2px 5px;
    color: #fff;
}

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

#block-menu-menu-footer-menu {
}

#block-menu-menu-footer-menu .block-content ul {
    text-align: right;
    margin: 0;
    padding: 0;
}

#block-menu-menu-footer-menu li {
    display: inline;
    color: #fff;
    font: 14px "Black Ops One", Verdana, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: right;
    vertical-align: baseline;
}

#block-menu-menu-footer-menu li.first {
    float: left;
    margin: 0;
    text-align: left;
    font-size: 21px;
}

#block-menu-menu-footer-menu li a {
    color: #fff;
}

#block-menu-menu-footer-menu li a:hover, #block-menu-menu-footer-menu li a.active-trail {
    color: #e71d1f;
}

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

#block-block-3 {
}

#block-block-3 .block-content ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
}

#block-block-3 li {
}

.logo-liljonapp a {
    display: block;
    background: url(images/logo-liljonapp.png) no-repeat 0 0;
    width: 211px;
    height: 48px;
    text-indent: -1000px;
    overflow: hidden;
}

/* =============================================================================
 *   Footer Terms & Privacy
 * ========================================================================== */

#block-block-2 {
}

#block-block-2 li, #block-block-2 a {
    color: #333333;
    font: 14px "Doppio One", Helvetica, sans-serif;
    text-transform: uppercase;
}

#block-block-2 .block-content ul {
    padding: 0;
    margin: 0;
}

#block-block-2 li {
    list-style: none;
    display: inline-block;
    margin: 0 12px 0 0;
}

#block-block-2 a:hover {
    color: #fff;
}

/* =============================================================================
 *   Views - Common Elements
 * ========================================================================== */

.more-link a {
    padding: 14px 20px;
    background-color: #666;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
}

/** Events **/

#content .view-events .views-field-city {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

#content .view-events .views-field-field-event-date, #content .view-events .views-field-field-event-date-1 {
    font-size: 14px;
    color: #fff;
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

#content .view-events .views-field-city a {
    color: #666;
}

#content .view-events .views-field-city a:hover {
    color: #e71d1f;
}

.view-events .views-field-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #333;
}

.view-events .views-field-title a {
    color: #ccc;
}
.sidebar .view-events .views-field-title a {
    color: #333;
}

.view-events .views-field-title a:hover	{
    color: #e71d1f;
}
.header-wrapper{
	background: #fff;
	border-bottom: 4px solid #ccc;
}

#content .view-events .addtocal {
    float: none;
    width: 173px;
    height: 37px;
    background-color: #666;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 37px;
}

#content .view-events .addtocal:hover {
    background-color: #e71d1f;
}

.node-events .field-name-field-location-2 {
   font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
   text-transform: uppercase;
   color: #333;
}

.node-events .field-name-field-event-date {
	font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
}

/** News **/

.view-news .views-field-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.region-sidebar-first .view-news .views-field-title {
   font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
   text-transform: uppercase;
}

.view-news .views-field-body{
	float: left;;
	color: #ccc;
}

.view-news .views-field-created {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.region-sidebar-first .view-news .views-field-created {
    font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
	 font-size: 10px;
}

.view-news .view-news .views-field-body {
    font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
}

#content .view-news .views-field-title {
    font-size: 21px;
    line-height: 23px;
}

#content .view-news .views-field-title a {
    color: #aaaaaa;
}

#content .view-news .views-field-created {
    font-size: 14px;
    color: #fff;
}

#content .view-news .views-field-body {
    font-size: 14px;
    color: #333;
}

.form-item-name{
	color: #fff;
}

.region-sidebar-first .view-news .views-column {
	margin-bottom: 30px;
}

/** Music & Videos **/

.view-photos-media-blocks .views-field-title, .view-music-blocks .views-field-title, .view-music-blocks .views-field-title, .view-photos-media-blocks .views-field-created, .view-music-blocks .views-field-created {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
}

.region-sidebar-first .view-photos-media-blocks .views-field-title {
	 font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
	 margin: 12px 12px 20px;
}

#content .view-photos-media-blocks .views-field-title, #content .view-music-blocks .views-field-title, .region-content-aside .view-music-blocks .views-field-title {
    font-size: 21px;
    line-height: 23px;
}

#content .view-photos-media-blocks .views-field-title a, #content .view-music-blocks .views-field-title a {
    color: #aaaaaa;
}

#content .view-photos-media-blocks .views-field-created, #content .view-music-blocks .views-field-created, .region-content-aside .view-music-blocks .views-field-created {
    font-size: 14px;
    color: #fff;
}

.region-sidebar-first .view-id-photos_media_blocks {   
    overflow: hidden;
}

.region-sidebar-first .view-id-photos_media_blocks .views-field-field-video-music-video,   
.region-sidebar-first .view-id-photos_media_blocks .views-field-field-embedded-video {   
    height: 135px;            
}

.region-sidebar-first .view-id-photos_media_blocks .border-img {
    position: absolute;
    background: #aaa;
    border: none;
}


/* =============================================================================
 *   Sections
 * ========================================================================== */

/** Home **/

.front #content .block-title {
    font-family: "Black Ops One",Arial, Helvetica, sans-serif;
    font-size: 34px;
    font-weight: normal;
    color: #fff;
    text-transform: uppercase;
}

#block-views-slideshow-block {
}

#block-views-slideshow-block .block-inner {
    margin: 0;
}

#block-block-1 {
}

#block-block-1 .block-title {
    background: url('images/bg-block-title-newsletter.png') no-repeat 100% 0;
    height: 17px;
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 13px;
    color: #fff;
}

#block-block-1 .block-content h2 {
    margin-bottom: 0;
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: normal;
    text-transform: uppercase;
    color: #cccccc;
}

#block-block-1 .form-item {
    margin-top: 0;
}

.front #block-views-shop-views-block-1 {
}

#views_slideshow_cycle_teaser_section_shop_views-block_1 {
	height: 228px;
}

.front #block-views-shop-views-block-1 .block-title {
    margin-bottom: 18px;
    background: url('images/bg-block-title-newsletter.png') no-repeat 100% 0;
    height: 17px;
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 13px;
    color: #fff;
}

#block-views-shop-views-block-1 .views-field-body table {
}

#block-views-shop-views-block-1 .views-field-body table, #block-views-shop-views-block-1 .views-field-body tbody, #block-views-shop-views-block-1 .views-field-body tbody tr {
    border: none;
}

#block-views-shop-views-block-1 .views-field-body td {
    text-align: right;
}

#block-views-shop-views-block-1 .views-field-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: normal;
    text-transform: uppercase;
    color: #cccccc;
}

#block-views-shop-views-block-1 .views-field-body .price-box {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #ccc;
    font-size: 24px;
}

#block-views-shop-views-block-1 a.external-product-link {
    padding: 14px 20px;
    background-color: #e71d1f;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
}

#block-views-shop-views-block-1 a.external-product-link:hover {	
    background-color: #666;
}

#block-views-shop-views-block-1 .views-field-field-external-product-link .item-list ul {	
    margin: 0;
    padding: 0;
    list-style: none;
}

#block-block-9 {
    text-align: right;
}

#block-block-9 .block-title {
    background: url('images/bg-block-title-app.png') no-repeat 100% 0;
    height: 17px;
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 13px;
    color: #000;
}

#block-block-9 .block-content h3 {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: normal;
    text-transform: uppercase;
    color: #e71d1f;
}

#block-views-events-block-1 {
}

#block-views-events-block-1 .block-title {
    background: url('images/bg-block-title-events.png') no-repeat 0 0;
    height: 47px;
    margin-bottom: 49px;
    color: #fff;
}

#block-views-events-block-1 .views-responsive-grid .views-row-1 {
    margin-bottom: 39px;
}

#block-views-events-block-1 .views-field-city {
    font-size: 24px;
    line-height: 26px;
    color: #000;
}

#block-views-events-block-1 .views-field-field-event-date {
    margin-top: 20px;
}

#block-views-events-block-1 .views-field-field-event-date .date-display-single {
    display: none;
}

#block-views-events-block-1 .more-link {
}

#block-views-events-block-1 .more-link a {
    display: block;
}

#block-views-news-block-2 {
}

#block-views-news-block-2 .block-title {
    background: url('images/bg-block-title-news.png') no-repeat 0 0;
    height: 36px;
    margin-bottom: 49px;
    color: #fff;
}

#block-views-news-block-2 .views-field-field-image {
}

#block-views-news-block-2 .views-row {
    margin-bottom: 27px;
}

#block-views-news-block-2 .views-column {
    overflow: hidden;
}

#block-views-news-block-2 .views-field-title, #block-views-news-block-2 .views-field-created, #block-views-news-block-2 .views-field-body {
}

#block-views-news-block-2 .more-link {
}

#block-views-news-block-2 .more-link a {
    display: block;
}

#block-views-photos-media-blocks-block-2 {
}

#block-views-photos-media-blocks-block-2 .block-title {
    background: url('images/bg-block-title-music-videos.png') no-repeat 0 0;
    height: 43px;
    margin-bottom: 49px;
    color: #fff;
}

.front .view-id-photos_media_blocks {   
    overflow: hidden;
}

#block-views-photos-media-blocks-block-2 .more-link {
}

#block-views-photos-media-blocks-block-2 .more-link a {
    display: block;
}

.front .view-id-photos_media_blocks .views-field-field-video-music-video,
.front .view-id-photos_media_blocks .views-field-field-embedded-video {    
    height: 163px;        
    margin-bottom: 19px;
    position: relative;
}

.front .view-id-photos_media_blocks .border-img {
    position: absolute;
    background: #fff;
    border: none;
}

.front #block-views-latest-from-twitter-block {
	position: relative;
}

#block-block-7 .block-title {   /*#block-views-latest-from-twitter-block*/
    background: url('images/bg-block-title-social-media.png') no-repeat 0 -3px;
    height: 48px;
    margin-bottom: 36px;
    color: #fff;
}

/*
.front #block-views-latest-from-twitter-block .view-header {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-size: 21px;
}


#block-views-latest-from-twitter-block .view-header a {
    color: #000;
}
*/
#block-views-latest-from-twitter-block .more-link{
	display: none;
}
#block-views-latest-from-twitter-block .view-header a:hover,
.social-link:hover {
    color: #e71d1f;
}

#block-views-latest-from-twitter-block .view-header .more-link a:hover{
	color: #FFF;
}


#block-views-latest-from-twitter-block .views-row {
    margin-bottom: 20px;
}

.front #block-views-instagram-site-wide-block .block-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    font-size: 21px;
    color: #000;
}

#block-views-instagram-site-wide-block .view-content img,
.facebook-image {
	width: 185px;
	box-shadow: 0 1px 2px 0px #1F1F1F;
	border: 5px solid #fff;
}

#block-views-instagram-site-wide-block .more-link {
}

#block-views-instagram-site-wide-block .more-link a {
    display: block;
}

/** Events **/

.page-events .attachment .view-events .views-row {
    overflow: hidden;
    margin-bottom: 39px;
}

.page-events .attachment .views-field-city {
    font-size: 88px;
    line-height: 90px;
}

.page-events .attachment .views-field-title {
    font-size: 34px;
    line-height: 36px;	
    margin-bottom: 18px;
}

.page-events .attachment .views-field-field-event-date-1 .date-display-single {
    display: none;
}

#content .attachment .view-events .addtocal {
    background-color: #e71d1f;
    float: left;
    margin-right: 24px;
}

.page-events .attachment .views-field-view-node a {
    display: block;
    float: left;
    width: 173px;
    height: 37px;
    background-color: #e71d1f;
    margin: 0;
    padding: 0;
    border: none;
    color: #fff;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 37px;
}

#content .attachment .view-events .addtocal:hover, .page-events .attachment .views-field-view-node a:hover {
    background-color: #666;
}

.page-events #content .views-responsive-grid .views-row {
    margin-bottom: 40px;
}

.page-events #content .views-responsive-grid .views-field-city {
    font-size: 34px;
    line-height: 36px;
    margin-right: 30px;
}

.page-events #content .views-responsive-grid .views-field-field-event-date-1 .date-display-single {
    display: none;
}

.page-events #content .views-responsive-grid .views-field-title {
    margin-bottom: 14px;
}

/** News **/

.page-news #content .views-row {
    overflow: hidden;
    margin-bottom: 28px;
}

.page-news #content .views-field-title {
    margin-bottom: 30px;
}

.page-news #content .views-field-title a:hover {
    color: #333;
}

.page-news #content .views-field-body {
    font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
    color: #ccc;
}

.page-news #content .views-field-field-image {
}

.page-news #content .views-field-field-image img {
	border: 6px solid #fff;
	box-shadow: 0 1px 2px 0px #1F1F1F;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.page-news #content .more-link a {
    display: block;
    width: 145px;
    height: 46px;
    padding: 0;
    line-height: 46px;
    text-align: center;
}

.page-news #content .more-link a:hover {
    background-color: #666;
}

/** Social Media **/

.page-node-703 #page-title {
    display: none;
}

.page-node-703 .block-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #000;
}

.page-node-703 #content .view-content {
    font-family: "Doppio One", Verdana, Arial, Helvetica, sans-serif;
}

.page-node-703 #block-views-tweets-block-2 {
    margin-bottom: 40px;
}

.page-node-703 #block-views-tweets-block-2 .item-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-node-703 #block-views-tweets-block-2 .item-list ul li {
    margin: 0 0 18px;
    font-size: 21px;
}

.page-node-703 #block-views-tweets-block-2 .item-list ul li.views-row-first {
    font-size: 34px;
    line-height: 36px;
}

.page-node-703 #block-views-tweets-block-2 .item-list ul li a {
    color: #fff;
}

.page-node-703 #block-views-social-media-block-1 a {
    color: #fff;
}

/** Music & Videos **/

.page-music-video .attachment .views-row {
    margin-right: 15px;
    margin-bottom: 30px;
}

.page-music-video .attachment .player {
    border: 6px solid #fff;
    background-color: #1f1e1d;
    margin-bottom: 15px;
}

.page-music-video .attachment .views-row iframe {
    margin: 0;
    width: 100%;
    height: 420px;
}

.page-music-video #content .views-responsive-grid .views-field-field-video-music-video, .page-music-video .region-content-aside .views-responsive-grid .views-field-field-sound-cloud {
    margin-right: 20px;
}

.page-music-video #content .views-responsive-grid .views-field-title, .page-music-video .region-content-aside .views-responsive-grid .views-field-title {
    margin-right: 20px;
}

.page-music-video #content .views-responsive-grid .views-row, .page-music-video .region-content-aside .views-responsive-grid .views-row {
    margin-bottom: 30px;
}

.page-music-video .views-responsive-grid .views-field-field-video-music-video,
.page-music-video .views-responsive-grid .views-field-field-embedded-video {    
    height: 163px;        
    margin-bottom: 19px;
    position: relative;
}

.page-music-video .views-field-field-video-music-video .border-img,
.page-music-video .views-field-field-embedded-video .border-img {
    position: absolute;
    background: #fff;
    border: none;
}


/** Shop **/

.page-shop #content .views-responsive-grid .views-field-title, .page-shop #content .views-responsive-grid .views-field-body, .page-shop #content .views-responsive-grid .views-field-field-external-product-link {
    margin-right: 18px;
}

.page-shop #content .views-responsive-grid .views-field-title {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    font-size: 18px;
}

.page-shop #content .views-responsive-grid .views-field-body table, .page-shop #content .views-responsive-grid .views-field-body tbody, .page-shop #content .views-responsive-grid .views-field-body tbody tr {
    border: none;
}

.page-shop #content .views-responsive-grid .views-field-body td {
    vertical-align: middle;
}

.page-shop #content .views-responsive-grid .views-field-body img {
    border: 6px solid #fff;
}

.page-shop #content .views-responsive-grid .views-field-body .price-box {
    font-family: "Holtwood One SC", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 24px;
}

.page-shop #content .views-responsive-grid .views-field-field-external-product-link .item-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-shop #content .views-responsive-grid .views-field-field-external-product-link li {
    margin: 0;
}

.page-shop #content .views-responsive-grid a.external-product-link {
    float: left;
    padding: 14px 20px;
    background-color: #e71d1f;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    color: #fff;
}

.page-shop #content .views-responsive-grid a.external-product-link:hover {
    background-color: #666;
}

.page-shop h1#page-title {
    display: none;
}

/** Additions **/

/*pager*/
.item-list .pager{
    overflow: hidden;
    margin-bottom: 10px;
}
.item-list ul.pager li{
    background: #ddd;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px; 
    color: #999;
    margin-right: 24px;
    padding: 7px;
}

.item-list ul.pager li a{
    background: #ddd;
    font-family: "Black Ops One", Verdana, Arial, Helvetica, sans-serif;
    font-size: 14px; 
    color: #999;
}

.item-list ul.pager li.pager-current{
    background: #fff;
    color: #000;
}

.item-list ul.pager li.pager-previous,  .item-list ul.pager li.pager-next,  .item-list ul.pager li.pager-ellipsis{
    display: none;
}

.region-sidebar-first .block-title {
    background: url(images/bg-block-title-sidebar.png) no-repeat;
    padding-left: 37px;
    margin-bottom:10px;
}

.not-front .region-sidebar-first .block-content{
    margin: 0px 24px;
}

/*events*/
.region-sidebar-first #block-views-news-block-5 .block-title,
.region-sidebar-first #block-views-events-block-3 .block-title{
    background-position: 9px -10px;
}

/*recent video*/
.region-sidebar-first #block-views-photos-media-blocks-block-3 .block-title,
.region-sidebar-first #block-views-photos-media-blocks-block-4 .block-title{
    background-position: 9px center;
}

/*twitter*/
.region-sidebar-first #block-views-tweets-block-2 .block-title,
.region-sidebar-first #block-views-tweets-block-1 .block-title{
    background-position:left -120px;    
}

ul.addtocal_menu{
    margin-top: 20px;
}

ul.addtocal_menu li a{
    color: #000;
    font-family: "Doppio One", Helvetica, sans-serif;
}

article .field-type-taxonomy-term-reference ul{
    padding: 0px;
    margin: 0px;
}

article .field-type-taxonomy-term-reference li{
    list-style: none;
    display: inline;    
}

article .field-type-taxonomy-term-reference li a{
    color: #000;
}

#block-views-slideshow-block{    
    position: relative;
}

#block-views-slideshow-block .block-inner {
   border: solid 1px #fff;
}

#block-views-slideshow-block .flex-control-nav{         
    bottom: 17px;
    position: absolute;
    width: auto;
    right: 24px;
    padding: 0px;
}
#block-views-slideshow-block .flex-control-nav li a{
    margin-left: 10px;
    background: #d2d2d2;
    border: solid 1px #fff;
}

#block-views-slideshow-block .flex-control-nav li a.active{
    background:  #fff;
}

/** Website Badge **/

#block-block-6 {
	position: absolute;
	bottom: 6px;
	right: 0;
	margin: 0 -65px 0 0;
}

#block-block-6 .block-inner, #block-block-6 .block-inner p {
	margin: 0;
}


.view-instagram-site-wide- .view-header .social-title{
	margin-top: 84px;
}

#block-views-tweets-block-2 .view-tweets ul{
	list-style: none;
}
#block-views-tweets-block-2 .view-tweets ul li{
	margin-bottom: 30px;
}
.view-latest-from-twitter .view-content, .view-latest-from-twitter .view-content a,
#main-content #block-views-tweets-block-2 .view-tweets .view-content, 
#main-content #block-views-tweets-block-2 .view-tweets .view-content a{
	color: #888;
	font-size: 16px;
}

.view-latest-from-twitter .views-field-created-time,
#main-content #block-views-tweets-block-2 .view-tweets .views-field-created-time{
	color: #ccc;
	font-size: 14px;
}

.view-latest-from-twitter .view-content .views-row-1, .view-latest-from-twitter .view-content .views-row-1 a,
#main-content #block-views-tweets-block-2 .view-tweets .view-content .views-row-1, 
#main-content #block-views-tweets-block-2 .view-tweets .view-content .views-row-1 a{
	color: #fff;
	font-size: 22px;
}

#block-views-instagram-site-wide-block-1 .social-title{
	margin-top: 0;
}

.facebook-img img{
	   border: 5px solid #fff;
    box-shadow: 0 1px 2px 0 #1f1f1f;
}


#block-views-latest-from-twitter-block .more-link{
	margin-top: 15px;
	height: 35px;
}

.facebook-img{
	margin-bottom: 30px;
}

#block-views-instagram-site-wide-block-1 .image-style-none{
	border: 5px solid #fff;
    box-shadow: 0 1px 2px 0 #1f1f1f;
    margin-bottom: 30px;
    width: 185px;
}
.front #block-views-shop-views-block-1 .block-title{
	background-position: 88% 0;
}
#block-views-news-block-2 img{
	border: 4px solid #fff;
}
.view-music-blocks .views-field-title{
	color: #ccc;
}
.social-title{
	width: 100%;
	height: 50px;
}

.social-title > img {
    vertical-align: middle;
    margin-right: 5px;
}
.facebook-label{
	color: #fff;
	font-size: 20px;
	padding: 0 15px 15px 15px;
}
.social-link {
    color: #888;
    font-family: "Holtwood One SC",Verdana,Arial,Helvetica,sans-serif;
    font-size: 21px;
    text-decoration: none;
    vertical-align: middle;
}
#block-block-8 .row{
	padding: 0 20px;
}

.facebook-label.date {
    color: #ccc;
    font-size: 14px;
    font-style: italic;
    padding-bottom: 0;
}

.facebook-label.last {
    margin-bottom: 20px;
}

.facebook-label video{
	border: 5px solid #fff;
}


.full-size-video video{
	width: 50%;
	height: auto;
}

.facebook-image-link {
    border: 5px solid #fff;
}

.page-shop .price-label{
	font-size: 15px;
}
.page-shop .old-price{
	margin: 0;
}
.page-shop .special-price{
	margin: 0;
}
.page-shop .old-price {
    display: none;
}

.page-shop .price-label {
    display: none;
}