/* COLORS
Yellowish Green - #d5d654
Main Lime Green - #77bc1f
Dark Gray - #231f20
Purple - #9f26b4


/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

html,
button,
input,
select,
textarea {
    color: #000;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}


/* ===== Basic Styles ==================================================
   ========================================================================== */

body {
    font: 14px/24px 'Roboto', Helvetica, Arial, sans-serif;
    color: #000;
}
.wrapper {
    width: 90%;
    margin: 0 5%;
}
.header-container {
    position: absolute;
    width: 100%;    
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom: 7px solid #231f20;
    height: 400px;
}
header {
    height: 407px;
    position: relative;
}
h1,h2,h3,h4,h5,h6 {
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    line-height: 50px;
}
h1 {
    font-size: 40px;
}
h2 {
    font-size: 34px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 22px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}

a {
    color: #77bc1f;
    cursor: pointer;
}
.button {
    display: inline-block;
    padding: 6px 0;
    width: 172px;
   -webkit-border-radius: 2px;
    border-radius: 2px; 
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.button:hover {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;  
}

/* ==============
    MOBILE: Menu
   ============== */

nav.primary {
    display: none;
    text-align: center;
    z-index: 2;
}
header .mobile-menu-trigger {
    float: left;
    display: block;
    width: 48px;
    height: 41px;
    background: url(../img/mobile-menu-trigger.png) no-repeat;
    margin: 20px 0 0 2%;
}
nav.mobile {
    display: none;
    background: #000;
}
nav.mobile .mobile-menu-trigger-inside {
    display: block;
    float: right;
    width: 48px;
    height: 41px;
    background: url(../img/mobile-menu-trigger.png) no-repeat;
    margin: 20px 20px 0 0;
}
nav.mobile {
    text-align: center;
}
.nav-container {
    position: relative;
    z-index: 2;
    width: 194px;
    left: 50%;
    margin-left: -43%;
    margin-top: 40px;
}
nav.mobile .nav-container {
    position: static;
    margin: 0 auto;
}
nav.mobile .nav-container .mobile-menu-trigger-inside {
    display: none;
}
nav .logo {
    display: block;
    width: 194px;
    height: 245px;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    float: none;
    margin: 0;
    padding: 0;
    background: url(../img/logo-light.png) no-repeat;
}
nav.mobile .logo {
    width: 121px;
    height: 154px;
    background: url(../img/logo-light-mobile.png) no-repeat;
    margin:30px auto 0px;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    display: block;
    margin: 0;
    padding: 0;
    
}

nav ul li a {
    background: none;
    display: inline-block;
    font-weight: normal;
    float: none;
    padding: 14px 25px;
    line-height:30px;
    text-decoration: none;
    font-family: 'Marvel', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
nav ul li a:hover {
    color: #77bc1f
}
nav.mobile ul li a {
    color: #fff;
}
nav ul li a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 1px;
    width: 50px;
    margin-left: -25px;
    border-bottom: 1px solid #ccc;
}
nav ul li:last-child a:after {
    border:0;
}
nav .midnightHeader.light .logo {
    background: url(../img/logo-light.png) no-repeat;
}
nav .midnightHeader.dark .logo {
    background: url(../img/logo-dark.png) no-repeat;
}
nav .midnightHeader.light a {
    color: #fff;
}
nav .midnightHeader.dark a {
    color: #3d3834;
}
nav .midnightHeader.light a:hover, nav .midnightHeader.dark a:hover {
    color: #77bc1f;
}
nav .midnightHeader.light a:before {
    content: "";
    opacity: 0;
    display: block;
    width: 15px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 23px;
    background: url(../img/nav-hearts.png) 0 -31px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

nav .midnightHeader.dark a:before {
    content: "";
    opacity: 0;
    display: block;
    width: 15px;
    height: 16px;
    position: absolute;
    left: 0px;
    top: 23px;
    background: url(../img/nav-hearts.png) 0 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
nav .midnightHeader.light a:hover:before, nav .midnightHeader.dark a:hover:before {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 1;
}
nav .midnightHeader.light .logo:hover:before, nav .midnightHeader.dark .logo:hover:before {
    content: none;
}

nav a.home-button {
    display: none;
}

/* ==============
    MOBILE: Header Title
   ============== */

.mobile-logo {
    margin: 24px 0 0;
    text-align: center;
    position: relative;
}
.mobile-logo a {
    display: block;
    position: absolute;
    width: 140px;
    height: 177px;
    
    top: 0;
    left: 50%;
    margin-left: -70px;
    background: url(../img/logo-light.png) no-repeat;
    background-size: 140px 177px;
    text-indent: -9999px;
    overflow:hidden;
    white-space:nowrap;

}

.title-container {
    max-width: 375px;
    margin: 235px auto 51px;
}
.title-container a {
    text-decoration: none;
}
.title-container h1 {
    max-width: 375px;
    background: rgba(0,0,0,.45);
    border: 5px solid #fff;
    color: #d5d654;
    text-align: center;
    padding: 12px 14px;
    font-size: 32px;
    line-height:40px;

}
.title-container a.scroll-down {
    display: none;
    text-indent: -9999px;
    overflow: hidden;
    white-space: nowrap;
    width: 54px;
    height: 67px;
    background: url(../img/header-arrows.png) no-repeat;
    margin: 0 auto;
}

.header-social {
    display: none;
    float: right;
    position: relative;
    margin-top: 20px;
    z-index: 11;
}
.header-social ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-social ul li {
    display: inline-block;
    margin: 0 9px;
}
.header-social a {
    display: block;
    width: 52px;
    height: 53px;
    background: url(../img/social-icons-white.png) no-repeat;
}
.header-social a.twitter {
    background-position: 0 0;
}
.header-social a.facebook {
    background-position: -70px 0;
}
.header-social a.instagram {
    background-position: -140px 0;
}
.header-social p {
    color: #fff;
}
.header-social .phonenum {
    font-size: 18px;
    text-align: center;
    margin-top: 14px;
}

/* ==============
    MOBILE: Main
   ============== */

.main {
    padding: 30px 0;
}

.main article h1 {
    font-size: 2em;
}

.main aside {
    color: white;
    padding: 0px 5% 10px;
}



/* ===============
    ALL: IE Fixes
   =============== */

.ie7  {
}

/* ==========================================================================
   Main Body
   ========================================================================== */


.content {
    position: relative;
    z-index: 10;
}
.skull-divider {
    text-align: center;
    margin: 20px auto;
}
.skull-divider img {
    width: 34px;
    padding: 0 40px;
    background: white;
    position: relative;
}
.skull-divider span {
    display: block;
    position: relative;
}
.skull-divider span:before {
    content: "";
    position: absolute;
    height: 1px;
    border-top: 1px solid #ccc;
    top: 50%;
    width: 100%;
    left: 0;
}


/* ===============
    Home
   =============== */
#home-content {
}
#home-content {
    text-align: center;
}
#home-content .content-block {
    display: inline-block;
    vertical-align: top;
    margin: 30px auto 60px;
    width: 90%;
    text-align: left;

}
#home-content .content-block p, #home-content .content-block a {
    font-size: 13px;
}
#home-content .content-block a.arrow {
    display: block;
    position: relative;

   /* font-size: 26px;
    font-family: 'Marvel', sans-serif;
    text-transform:uppercase;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    padding-top: 20px;*/
    margin-bottom: 24px;
}
#home-content .content-block a.arrow img {
    width: 100%;
}

/*#home-content .content-block a.arrow:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -11px;
    top: 65px;
    width: 21px;
    height: 31px;
    background: url(../img/right-arrow.png) no-repeat;
}
#home-content .content-block.ourstory a.arrow {
    background: url(../img/ourstory-header.jpg) no-repeat;
}
#home-content .content-block.featureditem a.arrow {
    background: url(../img/featureditem-header.jpg) no-repeat;
}
#home-content .content-block.location a.arrow {
    background: url(../img/location-header.jpg) no-repeat;
}*/

#home-content .notice {
    text-align: center;
    background: #f0f0f0;
    padding: 30px;
    margin: 0 18px;
    overflow: hidden;
}


/* ===============
    Non-Home
   =============== */
.body-text {
    margin: 45px 0 40px;
}
.body-text-image {
    width: 100%;
    margin: 0 0 20px;
}

/* ===============
    Menu
   =============== */

.main.menu .body-text {
    margin-bottom:0;
}
.menu-section h3 {
    border-bottom: 1px solid #e6e6e6;
}
.menu-item {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    width: 46%;
    margin-bottom: 50px;
}
.menu-item.left {
    margin-right: 5%;
}
.menu-item a {
    display: inline-block;
    position: relative;
}
.menu-item a .hover-icon {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.4);
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 50%;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; 
}
.menu-item a .hover-icon .fa {
    color: #fff;
    font-size: 36px;
    position: absolute;
    left: 50%;
    margin-left: -16px;
    top: 39%;
}
.menu-item a:hover > .hover-icon {
    opacity:1;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out; 
}
.menu-item img {
    width: 100%;
}
.menu-item h4 {
    line-height: 24px;
    margin: 20px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}
.menu-item p {
    font-size: 13px;
}
.menu-item p .price {
    font-weight: bold;
}

.menu a h4 {
    display: inline-block;
    margin: 10px 0;
}

.menu a:nth-child(2) {
    padding-left: 50px;
}
/* ===== jQUERYUI TABS ===== */
.ui-widget-content {
    border: 0;
}
.ui-tabs .ui-tabs-panel {
    padding: 0;
}
.ui-tabs .ui-tabs-nav {
    text-align: center;
    margin: -10px 0 30px;
}
.ui-tabs .ui-tabs-nav li {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    display: inline-block;
    float: none;
    width: 43%;
    margin: 0 2% 8%;
    text-align: center;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: none;
    padding: 8px 0;
}
.ui-tabs .ui-tabs-nav li a {
    display: block;
    float: none;
    width: 100%;
    font-family: 'Marvel', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    outline: 0;
}


.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    padding-bottom:15px;
    margin-bottom:-15px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active:after {
    content: "";
    display: block;
    width: 18px;
    height: 11px;
    position: absolute;
    right: 50%;
    margin-right: -9px;
    bottom:7px;
    background: url(../img/menu-nav-down-arrow.png) no-repeat;
}


/* ===============
    Location Page
   =============== */

.main.location-page {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

.main.location-page #mtaco { /*google map*/
}
.main.location-page .skull-divider {
    position: absolute;
    top: 20px;
    z-index: 11;
    left: 50%;
    margin-left: -72px;
}
.main.location-page .skull-divider img {
    background: none;
}
.main.location-page .skull-divider span:before {
    content: none;
}
.main.location-page .body-text {
    position: absolute;
    top: 110px;
    z-index: 11;
    width: 80%;
    left: 50%;
    margin-left: -40%;
}
.location-box {
    width: 84%;
    background: #fff;
    padding: 8%;
    text-align: left;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0,0,0,.4);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.4);
}
.location-box h3 {
    color: #77bc1f;
    line-height: 24px;
    border-bottom: 1px solid #77bc1f;
    padding-bottom: 7px;
    margin: 0 0 15px;
    text-align: left;
}
.location-box h5 {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 24px;
}
.location-box p {
    margin: 0;
}
.location-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.location-box a {
    text-decoration: none;
}
.location-box a:hover {
    text-decoration: underline;
}


/* ===============
    Contact
   =============== */
.contact-info span {
    display: inline-block;
    margin: 0 15px 15px;
}
.contact-info .fa {
    vertical-align: middle;
}
.contact-info span a {
    color: #000;
    text-decoration: none;
}
.contact-info span a:hover {
    color: #77bc1f;
}
.contact-form {

}
.contact-form label {
    display: block;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 4px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 2px solid #231f20;
    padding: 10px;
    box-sizing: border-box;
}
.contact-form .form-row {
    margin: 22px 0;
}

.contact-form .button {
    background: #77bc1f;
    text-align: center;
    color: #fff;
    border: 0;
    font-size: 16px;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
}
.contact-form .button:hover {
    background: #9f26b4;
}



/* For Icons in Text Inputs */
.contact-form input::-webkit-input-placeholder {
    font-family: 'FontAwesome';
    color: #231f20;
    font-size: 18px;
}
.contact-form input::-moz-placeholder {
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form input:-moz-placeholder {   /* Older versions of Firefox */
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form input:-ms-input-placeholder { 
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form textarea::-webkit-input-placeholder {
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form textarea::-moz-placeholder {
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form textarea:-moz-placeholder {   /* Older versions of Firefox */
    font-family: 'FontAwesome';
    color: #231f20;
}
.contact-form textarea:-ms-input-placeholder { 
    font-family: 'FontAwesome';
    color: #231f20;
}

/* ==========================================================================
   Social Section
   ========================================================================== */


#social-section .main {
    padding: 0;
}

#social-section {
    /*height: 655px; content was too high*/
}
#social-section {
    background-image: url(../img/social-bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-bottom: 7px solid #231f20;
    border-top: 7px solid #231f20;    
}
#social-section .main {
    /*height: 655px; content was too high*/
}
#social-section h3 {
    color: #fff;
    font-size: 18px;
    line-height: 45px;
    border-bottom: 1px solid #fff;
    text-align: left;
    margin: 8px 0;
}
#social-section h3 span {
    float: right;
}
#social-section h3 a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    text-transform: none;

}
#social-section .social-button {
    background: #77bc1f;
    text-align: center;
    color: #fff;

    font-size: 14px;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    margin-top: 14px;
}
#social-section .social-button:hover {
    background: #9f26b4;
}
#social-section .top-row, #social-section .bottom-row {
    text-align: center;
    padding: 0 31px;
}
#social-section .twitter-feed, #social-section .instagram-feed, #social-section .yelp-reviews {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 0 0 20px;
}
#social-section .twitter-feed {
    margin-right: 80px;
}

/* ===== TWITTER ===== */

#twitterfeed ul {
    list-style: none;
    text-align: left;
    padding-left: 55px;
}
#twitterfeed ul li {
    margin: 10px 0 24px;
    position: relative;
}
#twitterfeed ul li:last-child {
    margin-bottom: 31px;
}
#twitterfeed ul li:before {
    content: "";
    display: block;
    position: absolute;
    width: 27px;
    height: 30px;
    top:-1px;
    left: -43px;
    background: url(../img/social-icons-cutout.png) no-repeat 0 0;
}
#twitterfeed p {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 24px;
}
#twitterfeed a {
    color: #fff;
}

/* ===== YELP ===== */
#yelp {
    width: 100% !important;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
}
#yelp #yelpheader {
    display: none !important;
}
#yelp .yelpreview {
    padding-left: 60px;
    margin-top: -45px;
    position: relative;
}
#yelp .yelpreview img {
    display: none;
}
#yelp .yelpreview:before {
    content: "";
    display: block;
    width: 28px;
    height: 37px;
    position: absolute;
    top: 30px;
    left: 15px;
    background: url(../img/social-icons-cutout.png) no-repeat -47px 0;
}
#yelp #recentreviews {
    display: none;
}
#yelp .yelpreviewimg {
    display: none;
}
#yelp .reviewername {
    display: none;
}
#social-section .yelp-reviews .social-button {
    margin-top: -35px;
}

/* -- mobile corrections -- */ 

#social-section {
    display: none;
}


/* ==========================================================================
   Charities Page
   ========================================================================== */
.one-half {
    width: 48%;
    float: left;
    margin-left: 4%;
    box-sizing: border-box;
}
.charity-section {
    padding-bottom: 30px;
}
.one-half:first-child {
    margin-left: 0;
}
.charity-image img {
    width: 100%;
}
.charity-text h3 {
    margin: 0;
    line-height: 22px;
    padding-bottom: 20px;
}
.row {
    overflow: hidden;
    position:relative;
}
.charity-list > .row {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
}
.charity-list > .row:last-child {
    border-bottom: none;
}
.charity-list {
    padding: 0px 15px;
    text-align: left;
}
.charity-full-width .charity-text {
    position: absolute;
    left: 50%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    top: 50%;
}
/* ==========================================================================
   MAD ABOUTS
   ========================================================================== */
a.green-button.button {
    background: #77bc1f;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    margin-top: 14px;
}
a.green-button.button:hover {
    background: #9f26b4;
}
.green-title {
    text-align: left;
    color: #77bc1f;
}
.purple-title {
    text-align: left;
    color: #9f26b4;
}
h1.green-title {
    font-size: 48px;
}
h2.green-title {
    font-size: 40px;
}
h5.green-title {
    font-size: 25px;
}
span.purple {
    color: #93278f;
}
a.purple-link {
    color: #9f26b4;
    font-size: 22px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Marvel', sans-serif; 
    font-weight: bold;
}
a.purple-link i {
    position: relative;
    top: -1px;
}
.mad-abouts.right {
    float: right;
}
.mad-abouts.image-overlay {
    position: relative;
    overflow: hidden;
}
.mad-abouts .overlay-title {
    background-color: #77bc1f;
    position: absolute;
    top: 30px;
    right: 0;
    padding: 6px 17% 20px 30px;
}
.mad-abouts .overlay-title h4{
    color: #fff;
    font-size: 28px;
    margin: 0 0 8px;
    padding: 0;
    text-align: left;
}
.mad-abouts .overlay-title p {
    color: #fff;
    text-transform: lowercase;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-size: 37px;
    margin: 0;
    padding: 0;
}
.mad-abouts .overlay-descr {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 170px 40px 0px 20px;
    background-color: rgba(159, 38, 180, 0.74);
    color: #fff;
}
.mad-abouts .overlay-descr .item-block {
    margin-bottom: 35px;
    overflow: hidden;
}
.mad-abouts .overlay-descr .block-text {
    float:left;
    padding-left: 10px;
    line-height: 20.5px;
}
.mad-abouts .tabs {
    margin: -10px 0 0px;
    padding: 0;
}
.mad-abouts .tabs ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
    display: block;
}
.mad-abouts .tabs li {
    width: 48%;
    margin: 0 0 4% 4%;
    padding-bottom: 0;
    display: block;
    float: left;
    list-style: none;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.mad-abouts .tabs li:nth-child(2n-1) {
    margin-left: 0;
}


.mad-abouts .overlay-descr img {
    float: left;
}


.mad-abouts .tabs .tab-image {
    display: block;
    position: relative;
}
.mad-abouts .tabs .tab-image img {
    width: 100%;
    display: block;
}
.mad-abouts .tabs li.active {
    background: none;
    background-color: transparent;
}
.mad-abouts .tabs li .tab-title {
    color: #9f26b4;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.75);
    font-family: 'Marvel', sans-serif;
    font-size: 24px;
    font-weight: bold;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;     
}
.mad-abouts .tabs .tab-title-inner {
    position: relative;
    top: 50%;
    transform:translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);    
}
.mad-abouts .tabs .tab-title .date {
    display: block;
    font-size: 19px;
    margin-bottom:8px;
}
.mad-abouts .tabs li:hover .tab-title {
    color: #fff;
    background-color: rgba(159, 38, 180, 0.85);
    height: 35%;
    font-size: 18px;
}
.mad-abouts .tabs li:hover .tab-title .date {
    margin-bottom: 0px;
    font-size: 14px;
}
.mad-abouts .tabs li:hover .tab-title-inner {
    margin-top: -2px;
}
.mad-abouts .tabs li.active .tab-title {
    color: #fff;
    background-color: rgba(159, 38, 180, 0.85);
    bottom: 0;
}

.madabout-popup {
    display: none;
    width: 100%;
    max-width: 800px;
}
.mad-about-popup .fancybox-skin {
    padding: 0 !important;
    border-radius: 0 !important;
}
.mad-about-popup .fancybox-close {
    background: none;
    right: 10px;
    top: 20px;
}
.mad-about-popup .fancybox-close:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\f00d';
    font-family: "FontAwesome";
    color: #777;
    font-size: 36px;

}
.mad-about-popup .fancybox-nav {
    width: 15%;
}
.mad-about-popup .fancybox-next {
    right: -15%;
}
.mad-about-popup .fancybox-prev {
    left: -15%;
}
.mad-about-popup .fancybox-next span,
.mad-about-popup .fancybox-prev span {
    background: none;    
    position: relative;
    visibility: visible;
}
.mad-about-popup span:before {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    font-family: "FontAwesome";
    content: '';
    font-size: 50px;
    color: #fff;
}
.mad-about-popup .fancybox-next span {
    right: -40px;
}
.mad-about-popup .fancybox-next span:before {
    content: '\f054';
}
.mad-about-popup .fancybox-prev span {
    left: 40px;
}
.mad-about-popup .fancybox-prev span:before {
    content: '\f053';
}
.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/* Add Animation */

.mad-abouts .four.columns:first-child {
    margin-left: 0;
}
.mad-abouts .four.columns {
    margin-left: 5%;
    width: 30%;
    float: left;
}
.mad-abouts .columns img {
    width: 100%;
    display: block;
}
.mad-abouts .tabs p {
    padding-left: 5px;
    line-height: 20px;
}
.mad-abouts.tab-content {
    background-color: #f0f0f0;
    padding: 28px 35px;
}
.mad-abouts.tab-content h5 {
    margin: 15px 0 4px;
    line-height: 28px;
    font-weight: bold;
}
.mad-abouts.tab-content h5.green-title {
    margin-bottom: 25px;
}   
.mad-abouts.tab-content p {
    margin-top: 0;
}
.mad-abouts.main-section {
    margin-top: 150px;
}
.mad-abouts.events h4 {
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 25px;
    margin-top: 20px;
}
.mad-abouts.events .date {
    float: left;
    width: 94px;
}
.mad-abouts.events .date h4 {

}
.mad-abouts.events .green-divider {
    height: 95px;
    background-color: #77bc1f;
    width: 4px;
    float:left;
}
.mad-abouts.events .info {
   margin-left: 130px;
}
.mad-abouts.events .info h4 {
    
}
.mad-abouts.events .info p {
    padding: 0;
    margin: 0;
    text-align: left;
}
#accordion {

}
.mad-abouts.accordion .ui-state-default, 
.mad-abouts.accordion .ui-widget-content .ui-state-default, 
.mad-abouts.accordion .ui-widget-header .ui-state-default {
    position: relative;
    background: #9f26b4;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    margin: 0;
    text-align: left;
    font-size: 20px;
}
.mad-abouts.accordion .ui-accordion-header:before {
    position: absolute;
    right: 30px;
    content: '\f078';
    font-family: "FontAwesome";
    font-size: 18px;
    top: 50%;
    margin-top: -25px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;     
}
.mad-abouts.accordion .ui-state-default span {
    display: none;

}
.mad-abouts.accordion .ui-accordion-header.ui-state-active:before {
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);    
}
.mad-abouts.accordion .ui-accordion-header.ui-state-active:after {
    content: '';
    display: block;
    position: absolute;
    right: 50%;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    background: none;
    background-color:rgba(159, 38, 180, 1) ;
    width: 60px;
    height: 25px;
    margin-right: -30px;
    margin-top: -1px;
    top: 100%;
}
.mad-abouts.accordion .ui-widget-content {
    background: none;
    background-color: #f0f0f0;
    padding: 30px 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 24px;
}
.mad-abouts.accordion p {
    font-size: 14px;
    line-height: 24px;
}

.mad-abouts.accordion .ui-widget-content p {
    font-size: 14px;
    line-height: 24px;
}
.mad-abouts .events span.green-title {
    font-family: 'Marvel', sans-serif;
    font-size: 18px;
    margin-right: 10px;
}
.accordion-block {
    width: 100%;
    margin-bottom: 3%;
}



.six.columns {
    float: left;
    width: 49%;
    margin-left: 2%;
}
.six.columns:first-child {
    margin-left: 0;
}
/* ==========================================================================
   Online Ordering
   ========================================================================== */
.online-ordering .wrapper {
    position: relative;
}
nav a.home-button {
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Marvel', sans-serif;
    font-size: 20px;
    margin-top: 15px;
    position: relative;
}
nav a.home-button i {
    padding-right: 8px;
}
.ordering-status-bar {
    position: absolute;
    width: 100%;
    top: -170px;
}
.ordering-step-row {
    overflow: hidden;
    max-width: 750px;
    margin: 0 auto;
}
.ordering-step {
    float: left;
    padding: 2%;
    background-color: rgba(0,0,0,0.6);
    position: relative;
    width: 20.8%;
    border: 3px solid #77bc1f;
}
.ordering-step.active {
    background-color: #fff;
}
.ordering-step.active .step-title {
    color: #77bc1f;
}
.ordering-step.active .step-descr {
    color: #000;
}
.ordering-step.left {
    border-right: none;
}
.ordering-step.middle {
    border-right: none;
    border-left: none;
}
.ordering-step.right {
    border-left: none;
}
.step-title,
.step-descr {
    text-transform: uppercase;
    font-family: 'Marvel', sans-serif;
    color: #fff;
}
.step-title {
    font-size: 25px;
}
.step-descr {
    font-size: 17px;
}
.location-area {
    position: relative;
    width: 100%;
    top: -102px;
    margin: 0 50px;
}
.location-row {
    overflow: hidden;
    max-width: 90%;
    margin: 0 auto;
}
.location-section {
    float: left;
    /*max-width: 300px;*/
    width: 36%;
    padding: 20px;
    border: 1px solid #999;
    border-radius: 8px;
    background-color: #fff;
}
.location-section:first-child {
    margin-right: 20%;
}
.online-ordering .section-title {
    color: #77bc1f;
    font-size: 22px;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #999;
}
.location-map iframe {
    max-width: 100%;
    display: block;
    margin-top: 20px;
    max-height: 350px;
}
.location-section span {
    text-transform: uppercase;
    font-weight: 700;
}
.location-address,
.location-hours {
    font-size: 14px;
    margin-top: 20px;
}
a.button.green {
    background: #77bc1f;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    padding: 10px 0;
}
a.location-order-now {
    width: 100%;
    margin-top: 20px;
}
a.button.green:hover {
    background-color: rgb(159, 38, 180);
}
a.location-order-now.ordering-na {
    background-color: #ea2227;
    cursor: default;
}
a.location-order-now.ordering-na:hover {
    background-color: #ea2227;
}
.pickup-container {
    position: relative;
    width: 100%;
    top: -102px;
}
.pickup-section {
    background-color: #fff;
    max-width: 400px;
    border: 1px solid #999;
    border-radius: 8px;
    margin: 0 auto;
    padding: 20px;
}
.pickup-section .section-title {
    margin-bottom: 20px;
}
.pickup-section .section-title.bottom {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 50px;
    text-align: center;
}
.pickup-section .section-line {
    text-transform: uppercase;
    font-family: 'Marvel', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: 8px;
    clear: both;
}
.pickup-section .section-line span {
    text-transform: none;
}
.pickup-section table {
    width: 100%;
    text-align: left;
    margin-top: 40px;
}
.pickup-section table tr:first-child {
    border-bottom: 1px solid #999;
    font-family: 'Marvel', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
}
.pickup-section table td {
    padding-top: 10px;
    vertical-align: top;
}
.pickup-section table td .extra {
    padding-left: 15px;
}
.pickup-section table .boxed-border {
    border: 1px solid #000;
    display: inline-block;
    padding: 2px 9px;
}
.pickup-section .order-total {
    border: 1px solid #999;
    border-radius: 8px;
    float: right;
    padding: 5px 10px;
    margin: 10px 0;
}
.pickup-section .order-total span {
    text-transform: uppercase;
    font-family: 'Marvel', sans-serif;
    color: #77bc1f;
    font-size: 16px;
    font-weight: 700;
    padding-right: 8px;
}
.menu-container {
    position: relative;
    width: 100%;
    top: -102px;
    overflow: hidden;
}
.menu-tabs {
    float: left;
    width: 19%;
    margin-right: 0.5%;
    background-color: #fff;
    border-radius: 8px;
}
.menu-tabs .section-title {
    border: none;
    text-align: center;
    padding-top: 20px;
    border: 1px solid #999;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}
.online-ordering .ui-tabs {
    padding: 0;
}
.online-ordering .ui-tabs .ui-tabs-nav {
    margin: 0 0 60px;
    padding: 0;
    margin-bottom: 0;
}
.online-ordering .ui-tabs .ui-tabs-nav li {
    width: 100%;
    margin: 0;
    margin-bottom: 2px;
    border-radius: 0;
    padding: 4px 0;
}
.online-ordering .ui-tabs .ui-tabs-nav li.ui-tabs-active:after {
    background: url(../img/right-arrow-sm.png) no-repeat;
    width: 8px;
    right: 16px;
    margin-right: 0;
    bottom: 19.5px;
}
.online-ordering .ui-tabs .ui-tabs-nav li.ui-tabs-active {
    padding: 4px 0;
}
.online-ordering .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    font-size: 20px;
}
.online-ordering .ui-widget-content {
    background: none;
}
.ordering-section {
    float: left;
    width: 57%;
    margin-right: 0.5%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #999;
    border-radius: 8px;
    height: 650px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.order-summary-container {
    float: left;
    width: 15%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #999;
    border-radius: 8px;
    height: 650px;
}
.order-summary-container .section-title {
    text-align: center;
}
.checkout-container {
    position: relative;
    width: 100%;
    top: -102px;
    overflow: hidden;
}
.checkout-form {
    float: left;
    width: 59%;
    margin-right: 0.5%;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #999;
    border-radius: 8px;
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.checkout-container .pickup-section {
    width: 34%;
    float: left;
}
.order-checkout .section-title {
    border-bottom: none;
    margin-bottom: 0;
}
.order-checkout table {
    margin-top: 0;
    margin-bottom: 30px;
}
.order-checkout .remove.button {
    font-size: 12px;
    width: auto;
    padding-left: 15px;
    display: inline-block;
}
.order-checkout .remove-extra.button {
    display: inline;
    padding-right: 10px;
    color: #000;
}
.order-checkout .order-total {
    clear: both;
    margin: 0;
}
.order-checkout .order-total.no-box {
    border: none;
}
.order-checkout .section-title.pickup-info {
    clear: both;
    padding-top: 40px;
}
.order-checkout .pickup-button {
    display: inline-block;
    vertical-align: top;
}
.pickup-button .button.green {
    border: 1px solid #77bc1f;
}
.pickup-button .button.green.purple {
    background-color: rgb(159, 38, 180);
    border: 1px solid rgb(159, 38, 180);
}
.pickup-button .button.green.purple:hover {
    background-color: #fff;
    border: 1px solid rgb(159, 38, 180);
    color: rgb(159, 38, 180);
}
.pickup-button .button.green:hover {
    background-color: #fff;
    border: 1px solid #77bc1f;
    color: #77bc1f;
}
.online-ordering .pickup-button label {
    font-size: 12px;
}
.online-ordering .pickup-button select {
    border-color: #000;
}

.online-ordering form .input-container {
    width: 100%;
    border: 1px solid #666;
    border-radius: 4px;
}
.online-ordering form input {
    width: 100%;
    border: none;
}
/* ==========================================================================
   Footer
   ========================================================================== */
.footer-container {
    background: url(../img/footer-pattern.png) repeat;
    border-top: 7px solid #231f20;    
}
.footer-container footer {
    padding: 55px 0 0;
}
.footer-logo {
    margin-bottom: 50px;
}
.footer-logo a {
    background: url(../img/logo-alt.png) no-repeat;
    width: 147px;
    height: 62px;
    margin: 0 auto;
}

.footer-social {
    text-align: center;
    margin-bottom: 50px;
}
.footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-social ul li {
    display: inline-block;
    margin: 0 20px;
}
.footer-social ul li a {
    width: 53px;
    height: 53px;
    background: url(../img/social-icons-color.png) no-repeat;
}
.footer-social ul li a.twitter {
    background-position: 0 0;
}
.footer-social ul li a.facebook {
    background-position: -70px 0;
}
.footer-social ul li a.instagram {
    background-position: -140px
     0;
}

.footer-info {
    margin-bottom: 50px;
    text-align: center;
}
.footer-info .section {
    margin-bottom: 30px;
}
.footer-info h3 {
    color: #9f26b4;
    font-size: 18px;
    margin-bottom: 0;
}
.footer-info p {
    margin: 0 0 25px;
}
.footer-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-nav ul li {
}
.footer-nav ul li a {
    display: inline-block;
    padding: 6px;
    font-size: 18px;
    color: #000;
    font-family: 'Marvel', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
}
.footer-nav ul li a:hover {
    color: #9f26b4;
}

.hours ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-container .copy-bar {
    background: #231f20;
    text-align: center;
}
.footer-container .copy-bar p {
    margin:0;
    padding: 8px;
    color: #fff;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/* ====================
    Hi Res Displays
   ==================== */
@media 
    (-webkit-min-device-pixel-ratio: 2), 
    (min-resolution: 192dppx) { 

    nav .logo {
        background: url(../img/logo-light@2x.png) no-repeat;
        background-size: 194px 245px;
    }
    
    nav .midnightHeader.light .logo {
        background: url(../img/logo-light@2x.png) no-repeat;
        background-size: 194px 245px;
    }
    nav .midnightHeader.dark .logo {
        background: url(../img/logo-dark@2x.png) no-repeat;
        background-size: 194px 245px;
    }
    .footer-logo a {
        background: url(../img/logo-alt@2x.png) no-repeat;
        background-size: 147px 62px;
    }

}
@media only screen and (min-width: 480px) {

/* ====================
    INTERMEDIATE: Hero
   ==================== */

    header {
        height: 557px;
    }
    .header-container {
        height: 550px;
    }
    .title-container {
        max-width: 375px;
        margin: 275px auto 0;
    }

    .title-container h1 {
        max-width: 375px;
        padding: 12px 8px;
        font-size: 42px;
        line-height:50px;
    }
    .title-container a.scroll-down {
        display: block;
    }
    .mobile-logo a {
        width: 160px;
        height: 202px;
        background-size: 160px 202px;
    }


/* ====================
    INTERMEDIATE: Menu
   ==================== */
    .ui-tabs .ui-tabs-nav li {
        width: 28%;
        margin-bottom: 30px;
    }



/* ========================
    INTERMEDIATE: Social
   ======================== */

   .header-social ul {
        display: block;
   }

    #social-section h3 {
        font-size: 22px;
    }

    /* ========================
    INTERMEDIATE: Mad Abouts
   ======================== */
    .mad-abouts .tabs li .tab-title {
        font-size: 30px;  
    }
    .mad-abouts .tabs .tab-title .date {
        display: block;
        font-size: 22px;
        margin-bottom:12px;
    }
    .mad-abouts .tabs li:hover .tab-title {        
        font-size: 20px;
    }
    .mad-abouts .tabs li:hover .tab-title .date {
        margin-bottom: 0px;
        font-size: 16px;
    }
    .mad-abouts .tabs li:hover .tab-title-inner {
        margin-top: -2px;
    }

}

@media only screen and (min-width: 768px) {


/* ============
    WIDE: Menu
   ============ */

    nav.primary {
        display: block;
    }
    header .mobile-menu-trigger {
        display: none;
    }
    nav.secondary {
        display: none;
    }


/* ============
    WIDE: Hero
   ============ */

    .header-container {
        background-position: 0 0;
        height: 675px;
    }

    header {
        height: 682px;
    }
    .title-container {
        margin: 0;
        position: absolute;
        z-index: 10;
        top: 240px;
        right: 80px;
    }
    .mobile-logo {
        display: none;
    }
    .title-container h1 {
        font-size: 42px;
    }

    .header-social {
        margin-top: 40px;
        display: block;
    }

/* ============
    WIDE: Main
   ============ */

    section.content {
       margin-left: 250px;
    }

    .body-text {
        text-align: left;
        padding: 0 5%;
    }
    .body-text-image {
        width: 360px;
        float: left;
        margin: 0 20px 15px 0;
    }

/* ============
    WIDE: Menu
   ============ */

    .ui-tabs .ui-tabs-nav li {
        width: 28%;
        margin-bottom: 30px;
    }

   .ui-tabs .ui-tabs-nav {
        margin: -10px 0 30px;
    }
    .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out; 
        background-image: none;
    }
    .ui-tabs .ui-widget-header .ui-state-hover {
        -webkit-transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out; 
    }

/* ============
    WIDE: Location Page
   ============ */

    .location-page-container {
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        background-image: url(../img/location-bg.jpg);
    }
    .main.location-page {
        width: 90%;
        padding: 0;
        margin: 0 5%;
    }
    .main.location-page .body-text {
        width: 370px;
        left: auto;
        right: 0;
        margin-left: 0;
    }
    .location-box {
        width: 315px;
        padding: 25px;
    }

    /* ============
    WIDE: Social
   ============ */

    #social-section .twitter-feed, #social-section .instagram-feed, #social-section .yelp-reviews {
        float: left;
    }
    #social-section .main {
        padding: 10px;
    }

    /* ============
    WIDE: Mad Abouts
   ============ */
    .mad-abouts .tabs li .tab-title {
        font-size: 26px;  
    }
  


    /* ============
    WIDE: Footer
   ============ */


   footer .inside-container {
        margin-left: 250px;
   }


}

@media only screen and (min-width: 1025px) {

/* ===============
    Desktop
   =============== */

/* ===============
    Desktop Main
   =============== */

    #home-content .content-block {
        margin: 30px 10px 60px;
        width: 30.3%;
    }
    #home-content .content-block:first-child {
        margin-left: 0;
    }
    #home-content .content-block:last-child {
        margin-right: 0;
    }

    #home-content .notice {
        text-align: left;
    }
    #home-content .notice .notice-image {
        float: left;
        margin: 0 30px 0 0;
    }
    #home-content .notice h3 {
        margin-top: 0;
        margin-bottom: 0;
    }
    #home-content .notice .header-overlay {
        width: 850px;
        height: 150px;
        text-align: center;
    }
    #home-content .title {
        line-height: 150px;
        color: #fff;
    }

/* ============
    Desktop: Contact
   ============ */

   .contact-form .left-side, .contact-form .right-side {
        display: inline-block;
        vertical-align: top;
        width: 45%;
   }
   .contact-form .left-side {
        margin-right: 8%;
   }

/* ===============
    Menu
   =============== */

    .main.menu .body-text {
        padding-left: 2%;
        padding-right: 2%;
    }
    .menu-item .menu-image {
        float: left;
        width: 46%;
        margin-right: 4%;
    }
    .menu-item .menu-description {
        float: left;
        width: 50%;
    }
    .menu-item h4 {
        margin-top: 0;
    }
    .ui-tabs .ui-tabs-nav li {
        width: 20%;
        margin: 0 2% 35px;
    }
    .ui-tabs .ui-tabs-nav li.first {
        margin-left: 0;
    }
    .ui-tabs .ui-tabs-nav li.last {
        margin-right: 0;
    }
    
    .ui-tabs .ui-tabs-nav {
        margin: -10px 0 60px;
    }

/* ============
    Desktop: Social
   ============ */
    #social-section {
        display: block;
    }

    #social-section h3 {
        width: 100%;
    }
    #social-section .yelp-reviews h3 {
        width: 45%;
    }
    #social-section .twitter-feed, #social-section .instagram-feed {
        width: 45%;
    }
    #social-section .twitter-feed {
        margin-right: 8%;
    }
    #social-section .yelp-reviews .social-button {
        float: left;
    }

    /* ============
     Desktop: Mad Abouts
    ============ */
    .mad-abouts.accordion .ui-state-default {
        font-size: 18px;
    }
    .mad-abouts.accordion .ui-accordion-header:before {
        right: 15px;
    }
    .accordion-block {
        width: 48.5%;
        float: left;
        margin-left: 3%;
        margin-bottom: 3%;
    }

    #accordion .accordion-block:nth-child(2n-1) {
        margin-left: 0;
    }
    #accordion .accordion-block:nth-child(2n+1) {
        clear: left;
    }

    .mad-abouts .tabs li,
    .mad-abouts .tabs li:nth-child(2n-1) {
        width: 23.5%;
        margin: 0 0 1% 1%;
    }

    .mad-abouts .tabs li:nth-child(4n+1),
    .mad-abouts .tabs li:first-child {
        margin-left: 0;
    }
    .mad-abouts .tabs li:nth-child(4n+1) {
        clear: left;
    }
    .mad-abouts .tabs li .tab-title {
        font-size: 22px;  
    }
    .mad-abouts .tabs .tab-title .date {
        display: block;
        font-size: 16px;
        margin-bottom:6px;
    }
    .mad-abouts .tabs li:hover .tab-title {        
        font-size: 16px;
    }
    .mad-abouts .tabs li:hover .tab-title .date {
        margin-bottom: 0px;
        font-size: 14px;
    }
    .mad-abouts .tabs li:hover .tab-title-inner {
        margin-top: -2px;
    }  
    .mad-about-popup span:before {
        display: block;
    }

/* ============
    Desktop: Footer
   ============ */

   .footer-container {
        border: 0;
   }
   .footer-info .section {
        display: inline-block;
        vertical-align: top;
        margin: 0 5% 30px;
   }
   .footer-info h3 {
        margin: 0 0 12px;
        line-height: 24px;
   }
}

@media only screen and (min-width: 1330px) {

/* ===============
    Maximal Width
   =============== */

    .nav-container {
        position: relative;
        width: 194px;
        left: 50%;
        margin-left: -575px;
        margin-top: 40px;
    }



    .wrapper {
        width: 1197px; /* 1330px - 10% for margins */
        margin: 0 auto;
    }

    /* ============
    MAX: Main
   ============ */
    #home-content .content-block {
        margin: 30px 10px 60px;
        width: 285px;
    }

/* ============
    MAX: Menu
   ============ */

/* ============
    MAX: Location
   ============ */
    .main.location-page {
        width: 1197px;
        margin: 0 auto;
    }
    .main.location-page .body-text {
        right: 0;
    }

    /* ============
    MAX: Social
   ============ */

    #social-section .twitter-feed, #social-section .instagram-feed, #social-section .yelp-reviews {
        float: none;
    }
    #social-section h3 {
        width: 400px;
    }
    #social-section .twitter-feed, #social-section .instagram-feed {
        width: 400px;
    }
    #social-section .twitter-feed {
        margin-right: 80px;
    }
    #social-section .yelp-reviews .social-button {
        margin-left: 60px;
    }
    #twitterfeed ul li {
        margin: 10px 0 50px;
    }
    #yelp .yelpreview {
        margin-bottom: 10px;
    }

    /* ============
     Desktop: Mad Abouts
    ============ */
    .mad-abouts.accordion .ui-state-default {
        font-size: 22px;
    }
    .mad-abouts.accordion .ui-accordion-header:before {
        right: 25px;
    }    
    .mad-abouts .tabs li .tab-title {
        font-size: 28px;  
    }
    .mad-abouts .tabs .tab-title .date {
        display: block;
        font-size: 20px;
        margin-bottom:10px;
    }
    .mad-abouts .tabs li:hover .tab-title {        
        font-size: 18px;
    }
    .mad-abouts .tabs li:hover .tab-title .date {
        margin-bottom: 0px;
        font-size: 16px;
    }
    .mad-abouts .tabs li:hover .tab-title-inner {
        margin-top: -2px;
    }  


}


@media (max-width: 1023px) {
    .one-half.charity-section {
        width: 100%;
        margin-left: 0;
        border-bottom: 1px solid #ccc;
        margin-top: 30px;
    }
    .one-half {
        margin-bottom: 0;
        border: none;
    }
    .one-half.charity-section:last-child {
        border-bottom: none;
    }
    .charity-list > .row {
        margin: 0;
    }
    .charity-full-width .charity-text {
        position: relative;
        transform:translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        top:0;
        left:0;
    }
}
@media (max-width: 400px) {
    .one-half {
        width: 100%;
    }
    .charity-image {
        margin-bottom: 30px;
    }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

.ir {
    display: block;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-indent: -9999px;
    white-space: nowrap;
}

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}
.positioned { /*used for putting content above the fixed/floating navigation*/
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}