/* ¡MOBILE OVERRIDES! */

body {
    -webkit-text-size-adjust: none;
}

.desktopOnly {
    display: none;
}

.mobileOnly {
    display: block;
}

h2 {
    font-size: 23px;
    padding-bottom: 1em;
}

/* ===\\==============//=== *
 * ====\\=== MENU ===//==== *
 * =====\\==========//===== */
.menuFocus {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -99;
    opacity: 0;

    transition-property: opacity, z-index;
    transition-duration: .3s, 0s;
    transition-delay: 0s, .3s;
}

.menuOpen .menuFocus {
    z-index: 400;
    opacity: 1;

    transition-property: opacity, z-index;
    transition-duration: .3s, 0s;
    transition-delay: 0s, 0s;
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 61px;
    z-index: 500;
    background-color: #fff;
}

.menuOpen header {
    position: absolute;
}

    header .trigger {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 2;
        overflow: hidden;
        background-color: #fff;
    }

        header .trigger:before {
            display: none;
        }

        header .logo {
            position: absolute;
            top: 8px !important;
            left: 4.5% !important;
            opacity: 1 !important;
        }

            /* header .logo img {
                position: relative;
                display: block;
                width: 140px;
                height: auto;
                left: -2px;
            } */

            header .logo img:nth-of-type(1) {
                display: none;
                position: relative;
                width: 140px;
                height: auto;
                left: -2px;
            }

            header .logo img:nth-of-type(2) {
                opacity: 1;
                position: relative;
                display: block;
                width: 140px;
                height: auto;
                left: -2px;
            }

        header .menuBtn {
            display: block;
            width: 28px;
            position: absolute;
            top: 21px;
            right: 4.5%;
        }

            header .menuBtn .line {
                position: relative;
                top: 0px;
                right: 0px;
                display: block;
                width: 100%;
                height: 4px;
                margin-bottom: 3px;
                background-color: #303030;

                transition: all .3s;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -o-transition: all .3s;
            }

            header .menuBtn .line:last-child {
                margin-bottom: 0px;
            }

            /*3 lines --> X animation*/
            .menuOpen header .menuBtn .line:first-child {
                transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                top: 7px;
            }

            .menuOpen header .menuBtn .line:nth-child(2) {
                opacity: 0;
            }

            .menuOpen header .menuBtn .line:last-child {
                transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                top: -7px;
            }

    header nav {
        position: absolute;
        z-index: 1;
        top: 61px;
        left: 0px;
        width: 100%;
        height: auto;
        background-color: #fff;
        margin-left: 0px;
        box-shadow: 0px -6px 30px 0px rgba(0, 0, 0, 0.45);

        -webkit-transform: translateY(-110%);
            -ms-transform: translateY(-110%);
                transform: translateY(-110%);

        -webkit-transition: -webkit-transform .3s;
            -ms-transition: -ms-transform .3s;
                transition: transform .3s;
    }

    .menuOpen header nav {
        -webkit-transform: translateY(0%);
            -ms-transform: translateY(0%);
                transform: translateY(0%);
    }

        header nav ul {
            font-size: 15px;
        }

            header nav ul li {
                display: block;
                color: #393939;
            }

                header nav > ul > li > a {
                    position: relative;
                    display: block;
                    line-height: 1;
                    padding: 30px 4.5%;
                    border-top: 1px solid #e7e7e7;
                    z-index: 2;
                }

                header nav > ul > li.hasSub > a:after {
                    content: '';
                    display: block;
                    position: absolute;
                    top: 50%;
                    right: 4.5%;
                    right: calc(4.5% + 8px);
                    border-left: 9px solid #f22c2c;
                    border-top: 6px solid transparent;
                    border-bottom: 6px solid transparent;

                    -webkit-transform: translateY(-50%) rotate(0deg);
                        -ms-transform: translateY(-50%) rotate(0deg);
                            transform: translateY(-50%) rotate(0deg);

                    -webkit-transition: -webkit-transform .2s;
                        -ms-transition: -ms-transform .2s;
                            transition: transform .2s;
                }

                header nav > ul > li.hasSub.clicked > a:after {
                    -webkit-transform: translateY(-50%) rotate(90deg);
                        -ms-transform: translateY(-50%) rotate(90deg);
                            transform: translateY(-50%) rotate(90deg);

                    -webkit-transition: -webkit-transform .2s;
                        -ms-transition: -ms-transform .2s;
                            transition: transform .2s;
                }

                header nav ul li ul {
                    position: relative;
                    top: 0px;
                    left: 0px;
                    width: 100%;
                    padding: 20px 0px;
                    background-color: #f22c2c;
                    z-index: 1;
                }

                header nav ul li.hasSub ul:before {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 7px;
                    position: absolute;
                    top: 0px;
                    left: 0px;
                    background-image: linear-gradient( rgba(0,0,0,.2), rgba(0,0,0,0) );
                }

                    header nav ul li ul li {

                    }

                        header nav ul li ul li a {
                            width: 91%;
                            margin: 0px auto;
                            padding: 16px 0px;
                            line-height: 1.3;
                            border-bottom: none;
                            display: block;
                            font-size: 11px;
                            color: #ffffff;
                            position: relative;
                        }

                            header nav ul li ul li a:after {
                                content: '';
                                display: block;
                                position: absolute;
                                top: 50%;
                                right: 8px;
                                border-left: 7px solid #ffffff;
                                border-top: 5px solid transparent;
                                border-bottom: 5px solid transparent;

                                -webkit-transform: translateY(-50%);
                                    -ms-transform: translateY(-50%);
                                        transform: translateY(-50%);
                            }





                           
/* ===\\==============//=== *
 * ====\\=== MAIN ===//==== *
 * =====\\==========//===== */

main {
    margin-bottom: 0px;
}

    main:before {
        height: 61px;
    }

    main:after {
        display: none;
    }

    #content .maxWidth {
        width: 91%;
    }



/* ===\\==============//=== *
 * ====\\=== HOME ===//==== *
 * =====\\==========//===== */

.home .hero {
    
}

.home .hero.cycle-slideshow .slide.version2.desktopOnly {
    display: none !important;
}

.home .hero.cycle-slideshow .slide.version2 .mainCaption h2.mobileOnly {
    display: block;
}

.home .hero.cycle-slideshow .slide.version2 .mainCaption ul.desktopOnly {
    display: none;
}

.home .hero.cycle-slideshow .slide.version2 .mainCaption span.button {
    font-size: 9px;
}

.home .hero .bigHolder {
    height: 100%;
}


article.news {
    padding: 75px 4.5%;
}

    article.news h1 {
        display: block;
    }

        article.news h1 span.smaller {

        }

    article.news .feed {
        display: block;
        border-top: 1px solid #4b4b4b;
        border-left: none;
        margin-left: 0px;
        margin-top: 12px;
        padding: 15px 0px 0px 0px;
    }


.randoText {
    margin: 50px 0px 35px;
}

.grid li {
    width: 30.33%;
}

.gutter-sizer {
    width: 4.5%;
}

.grid-sizer {
    width: 30.33%;
}

.home .video {
    padding-bottom: 1px;
}

    .home .video h1 {
        font-size: 19px;
        padding: 0px 20px;
        line-height: 1.3;
    }

    .home .vidHold {
        width: 80%;
        border: 6px solid #fff;
    }

        .vidHold .poster {
            display: none;
        }

        .home .video:before {
            height: 30%;
        }

        .home .video p {
            font-size: 12px;
            width: 85%;
            margin: 27px auto 40px;
        }




/* ===\\====================//=== *
 * ====\\=== EVENT PAGE ===//==== *
 * =====\\================//===== */

.cventLink.desk {
    display: none !important;
}

.cventLink.mob {
    display: inline-block !important; *display: inline; zoom: 1;
}

.event.corporate .eventHeader,
.event.camp .eventHeader {
    height: auto !important;
}

    .event.corporate .eventHeader:before,
    .event.camp .eventHeader:before {
        display: none;
    }

    .corporate .eventHeader .info,
    .camp .eventHeader .info,
    .contact .eventHeader .info {
        display: block;
        width: 91%;
        margin: auto;
        padding: 0% 0%;
        margin-top: 0px;
    }

        .eventHeader hr {
            display: none;
        }

        .eventHeader h1 {
            font-size: 28px;
            line-height: 1.1;
            padding: 20px 0px 25px;
            width: 62%;
        }

            .eventHeader h1 .smaller {
                font-size: 20px;
            }

            .linkinpark .eventHeader h1 .smaller {
                font-size: 20px;
            }

            /* Band logos in Headline (-_-) */
            .eventHeader h1 span.pic.logo-aliceinchains { width: 132px; }
            .eventHeader h1 span.pic.logo-stonetemplepilots { width: 36px; }
            .eventHeader h1 span.pic.logo-linkinpark { width: 136px; }
            .eventHeader h1 span.pic.logo-korn { width: 38px; }
            .eventHeader h1 span.pic.logo-head { width: 88px; }
            .nancywilson .eventHeader h1 span.pic.logo1 { width: 93px; }

        .eventHeader .info h2 {
            display: inline-block; *display: inline; zoom: 1;
            font-family: sans-serif;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .03em;
            padding: 15px 0px 50px;
            border-top: 1px solid rgb(255, 255, 255);
        }

    .eventHeader .floater {
        position: relative;
        bottom: 0px;
        left: 0px;
        z-index: 3;
        text-align: left;
        padding-bottom: 20px;
        width: 91%;
        margin: auto;
    }

    .eventHeader .bg.layer1 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-position: 100% 50% !important;
    }

    .eventHeader .bg.layer2 {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-position: 100% 50% !important;
    }

    .event .eventHeader .bg.mobileOnly {
        display: none;
    }

.event .dividerBar {
    height: 58px;
    padding-right: 0px;
    width: 91%;
    padding: 0px 4.5%;
    text-align: left;
    overflow: visible;
}

    .dividerBar .incentives {
        top: 72px;
        /*top: 100px !important;*/ /*just for when early bird is gone */
        left: 4.5%;
        text-align: left;
    }

    .linkinpark .dividerBar .incentives {
        top: 100px;
    }

        .dividerBar .incentives p {
            color: #000;
        }

            .dividerBar .incentives a {
                color: #000;
            }

    .event .dividerBar h3 {
        font-size: 22px;
        top: 0px;
        line-height: 1;
        margin-right: 0px;
        width: 100%;
    }

    .event .dividerBar h3:after {
        position: absolute;
        top: -1px;
        right: 0px;
    }

    .event.camp #content {
        padding-top: 60px;
    }

    .event .writeup .vidHold {
        margin-bottom: 25px;
    }

    .writeup h3 {
        color: #f22c2c;
        font-size: 16px;
        padding-bottom: .7em;
        line-height: 1.3;
    }


.rockers {}

    .event .rockers .inner {
        width: 91%;
    }

    .event .rockers:after {
        height: 130px;
    }

        .event .rockers h2 {
            font-size: 23px;
            line-height: 1.3;
        }

        .event .rockers ul li {
            margin-bottom: 35px;
            padding-bottom: 30px;
        }


.twoCols .right {
    margin-top: 60px;
}

.twoCols h2 {
    font-size: 23px;
}


ul.packages li.cell {}

    .packages h3 {
        color: #f22c2c;
        margin: 16px 17px 0px;
        position: relative;
        font-size: 13px;
        line-height: 1.25;
    }

    .packages li > span {
        padding-left: 17px;
        padding-bottom: 10px;
        padding-top: 8px;
        font-size: 10px;
    }

        .packages li ul {
            padding: 0px 17px;
        }

            .packages ul li {
                line-height: 1.4;
                padding-bottom: 0.7em;
            }

        .packages a.button {
            display: block;
            padding: 11px 20px;
            margin: 17px 0px 30px 17px;
            width: 60%;
            text-align: center;
        }



/* ===\\=========================//=== *
 * ====\\=== CORPORATE CAMPS ===//==== *
 * =====\\=====================//===== */

nav.headerCorp {
    display: none;
}

.fullWidthBar {
    margin-bottom: 60px;
}

    .fullWidthBar .info h2 {
        width: 91%;
        margin-bottom: 28px;
    }

    .fullWidthBar .info ul {
        width: 91%;
        margin: auto;
    }

.event.corporate .maxWidth img.v_middle {
    display: block;
    width: 100%;
    margin-right: 0px;
    margin-bottom: 35px;
}

.event.corporate .maxWidth .cycle-slideshow img.v_middle {
    display: inline-block;
}

.event.corporate .maxWidth .writeup.v_middle {
    width: 100%;
    margin: 0%;
    display: block;
}

.event.corporate .maxWidth.twoCols {
    margin-top: 15px !important;
}

    .corporate .twoCols blockquote {
        margin: 28px 22px 17px;
    }

    .corporate .twoCols h3 {
        margin: 0px 22px 30px;
    }




/* ===\\=======================//=== *
 * ====\\=== VIDEO GALLERY ===//==== *
 * =====\\===================//===== */

body.photoGallery h2,
body.videos h2 {
    font-size: 23px;
    line-height: 1.2;
    width: 100%;
    margin: 40px auto 0px;
}

body.photoGallery h2 {
    width: 91%;
}

.ytce {
    width: 235px !important;
    margin: auto;
}




/* ===\\===================//=== *
 * ====\\=== TEXT PAGE ===//==== *
 * =====\\===============//===== */

body.textPage #content .maxWidth {
    padding-top: 40px;
}

.textPage.contact form input,
.textPage.contact form textarea {
    box-shadow: none;
}




/* ===\\====================//=== *
 * ====\\=== PAST CAMPS ===//==== *
 * =====\\================//===== */
.pastCamps #grid .grid-item {
    width: 100%;
}

.pastCamps #grid .gutter-sizer {
    width: 4.5%;
}




/* ===\\==================//=== *
 * ====\\=== ABOUT US ===//==== *
 * =====\\==============//===== */

.about.event .hero.eventHeader {

}

    .about.event .eventHeader .bg.layer2 {
        display: block;
    }

    .about .hero .info {
        width: 91%;
        margin-top: 0px;
        display: inline-block; *display: inline; zoom: 1;
        vertical-align: middle;
    }

        .about .hero h1 {
            font-size: 22px;
            padding: 0px 0px 16px;
        }

        .about .eventHeader hr {
            height: 1px;
            width: 74px;
            background-color: #fff;
            background-image: none;
            margin: auto;
            box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 1);
            display: block;
        }

        .about .eventHeader.hero h2 {
            font-size: 12px;
            padding: 13px 0px 0px;
            font-family: 'Archivo Black';
            text-transform: none;
            display: block;
            border-top: 0px;
        }

.faqs {
    padding-bottom: 70px;
}

.faqs .col {
    display: block;
    width: 100%;
    margin: 0px;
}

    .faqs ul li {
        width: 100%;
    }

        .faqs ul li p {
            margin: 0px 15px;
        }

    .about.event .dividerBar h3 {
        margin-right: 0px;
    }




/* ===\\=================//=== *
 * ====\\=== ARTISTS ===//==== *
 * =====\\=============//===== */

.artists .hero {
    height: 370px !important;
}

    .artists .hero .vignette {
        display: none;
    }

    .artists .hero .photo {
        background-position: 50% 50% !important;
    }

.artists .grid .grid-sizer,
.artists .grid .grid-item {
    width: 30.33%;
}

.artists .grid .gutter-sizer {
    width: 4.5%;
}

    .artists .grid li .hoverlay {
        opacity: 1;
    }

        .artists .grid-item .hoverlay h4 {
            bottom: 9px;
            left: 9px;
            letter-spacing: 0em;
            font-size: 10px;
            opacity: 1;
        }




/* ===\\=============================//=== *
 * ====\\=== CAMPER TESTIMONIALS ===//==== *
 * =====\\=========================//===== */

.testimonials .writeup.left h2:first-child {
    padding-top: 40px;
}

.testimonials #sidebar {
    margin-top: 56px;
}

.event.corporate.testimonials .maxWidth.twoCols#client-testimonials {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}



/* ===\\===============//=== *
 * ====\\=== PRESS ===//==== *
 * =====\\===========//===== */

.press article.gallery {
    margin-bottom: 40px;
}

    .press .grid .gutter-sizer {
        width: 4.5%;
    }

    .press .grid .grid-sizer,
    .press .grid li.grid-item {
        width: 30.33%;
    }



/* ===\\========================//=== *
 * ====\\=== ABOUT PRODUCER ===//==== *
 * =====\\====================//===== */
.textPage .writeup figure.left {
    width: 100%;
    margin-right: 0px;
    clear: both;
    float: none;
}

.textPage .writeup figure figcaption p {
    padding-bottom: 0px;
}

.textPage .writeup figure figcaption {
    margin-bottom: 25px;
}

.writeup h1 {
    font-size: 31px;
}



/* ===\\======================//=== *
 * ====\\=== HALL OF FAME ===//==== *
 * =====\\==================//===== */

.hall-of-fame .grid .grid-sizer,
.hall-of-fame .grid li.grid-item {
    width: 100%;
}

.hall-of-fame .grid .gutter-sizer {
    width: 0%;
}

.textPage.hall-of-fame .gallery h3 {
    font-size: 16px;
}



/* ===\\===================//=== */
/* ====\\=== BROCHURES ===//==== */
/* =====\\===============//===== */

.brochureGrid li {
    width: 43%;
    margin-bottom: 20px;
    margin-right: 4%;
    height: auto;
}





/* ===\\=================//=== *
 * ====\\=== CONTACT ===//==== *
 * =====\\=============//===== */

body.contact {}

    .contact .eventHeader {
        margin-bottom: 55px;
    }

        .contact .eventHeader:before {
            display: none;
        }

        .contact .eventHeader h1 {
            padding-top: 40px;
        }

        .contact .eventHeader p {
            font-size: 10px;
        }

        .contact form {
            width: 100%;
            max-width: 440px;
            margin-top: 16px;
        }

            .contact form input,
            .contact form textarea {
                box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.36);
            }

        .contact .eventHeader .vignette {
            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 2;
            width: 100%;
            height: 230px;
            background-image: url('../images/vignette-caption.png');
            background-size: 1px 100%;
            background-repeat: repeat-x;
            background-position: top left;
            -webkit-transform: rotate(180deg);
                -ms-transform: rotate(180deg);
                    transform: rotate(180deg);
        }

        .contact .hero .bg {
            background-position: 72% 100% !important;
        }

.contact .col.left,
.contact .col.right {
    width: 100%;
    padding: 0%;
    margin-right: 0%;
    text-align: left;
    border-right: none;
    float: none;
    clear: both;
}

.contact .col.left {
    margin-bottom: 60px;
}

    .contact .col.left h2 {
        font-size: 23px;
    }

        .contact .col h2 span {
            font-size: 16px;
        }

    .contact .col.left a {
        font-size: 16px;
    }

.contact .col.right {
    border-top: 1px solid #e7e7e7;
    padding-top: 30px;
}

    .contact .col.right .googleMap {
        padding-bottom: 100%;
    }

    .contact .col.right h1 {
        font-size: 23px;
    }

    .contact .col.right h2 {
        font-size: 17px;
    }

    .contact .col.right a {
        font-size: 16px;
    }

.contact .preFooter {}

    .contact .preFooter h4 {
        padding-bottom: 1em;
        font-size: 20px;
    }

    .contact .preFooter p .spacer {
        display: block;
        height: 10px;
    }




/* ===\\===============================//=== *
 * ====\\=== PHOTO GALLERY OVERLAY ===//==== *
 * =====\\===========================//===== */

.overlay.gallery .thePhoto {
    height: 70%;
    width: 70%;
}




/* ===\\============================//=== *
 * ====\\=== NEWSLETTER OVERLAY ===//==== *
 * =====\\========================//===== */

@media all and (max-width: 414px) {

    .overlay.newsletter {
        position: absolute;
        top: 60px;
    }

    .overlay.newsletter:before {
        display: none;
    }

        .overlay.newsletter article {
            width: 80%;
            margin: 110px auto 0px;
        }
                /*
                .overlay.newsletter .graphic .background {
                    height: 167px;
                }
                */

            .overlay.newsletter h1 {
                font-size: 13px;
            }

            .overlay.newsletter td {
                width: 100%;
                display: block;
            }

                .newsletter form .split input {
                    width: 88%;
                    padding: 0% 6%;
                }

                .newsletter form p {
                    line-height: 1.4;
                    padding-bottom: 7px;
                }

}





/* ===\\================//=== *
 * ====\\=== FOOTER ===//==== *
 * =====\\============//===== */

.preFooter:before {
    top: -120px;
    height: 120px;
}

    .preFooter .inner {
        width: 91%;
    }

        .preFooter .inner .callout {
            position: relative;
            bottom: 0px;
            right: 0px;
            width: auto;
            border: none;
            padding: 18px 0px;
            text-align: left;
        }

            .preFooter .callout h4 {
                display: block;
            }

            .preFooter .callout img {
                margin-left: 0px;
                margin-right: 0px;
                margin-top: 13px;
            }

footer {
    height: auto;
}

    footer nav {
        margin: 0% 6% 40px;
        height: auto;
    }

        footer nav p.mobileOnly {
            display: block !important;
        }

    footer .bottom {
        height: auto;
    }

        footer .sponsors ul li {
            margin: 0px 7px 2px 13px;
        }

        footer .bottom p {
            width: 210px;
            margin: auto;
            padding: 6px 0px 25px;
        }



/* ============== */
/* CONTEST PAGE */
/* ============== */

.contest .formEl.fieldtype-input {
    width: 100% !important;
    margin-right: 0% !important;
    float: none !important;
}

