﻿
/* Skin Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/*Common Styles*/

:root {
    --main-color-hover: #ff3300;
    --accent-color: #ff3300;
    --nav-color: #000;
    --main-bg: #fff;
    --nav-height: 170px;
    --button-primary-bg-color: #2ea8d1;
    --button-primary-bg-hover-color: #2ea8d1;
}
.transparent-img-border {
    position: relative;
}
.transparent-img-border:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
    border: 5px solid #fff;
}
.transparent-img-border-dark {
    position: relative;
}
.transparent-img-border-dark:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.4;
    border: 5px solid #000;
}
.broken-line {
    background: url('/img/skin/slider/broken-line.png');
    background-repeat: repeat-x;
    height: 1px;
    width: 100%;
}

html {
    max-width: 1920px;
    margin: 0 auto;
}
body {
    font-size: 1.4rem;
    font-family: "Poppins", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: url('/img/skin/bg/bg-all-sides.jpg') no-repeat;
    background-size: initial;
    background-color: #f8ecd4;
    box-shadow: 0 0 0 10px rgb(255 255 255 / 30%);
}

/* Annoyingly busy backgrounds */
.musicLandingPage {
    background: url(/img/skin/bg/bg-repeating.jpg) repeat-y;
    background-size: initial;
}
.toursLandingPage, .setlistLandingPage {
    background-image: url(/img/skin/bg/bg-all-sides-no-moon.jpg);
}
.contestsPage {
    background: url(/img/skin/bg/bg-repeating.jpg) repeat-y;
    background-color: #f8ecd4;
}
.photoDownloadsPage {
    background: url(/img/skin/bg/bg-repeating.jpg) repeat-y !important;
    background-color: #f8ecd4;
}

@media (max-width: 1919px) {
    body {
        box-shadow: none;
        background-size: cover;
    }

        body.home {
            background-size: contain;
        }
    .toursLandingPage, .setlistLandingPage {
        background-size: contain;
    }
}

@media (max-width: 1023px) {
    .musicLandingPage,
    .albumPage,
    .toursLandingPage,
    .setlistLandingPage,
    .photoGalleriesLandingPage,
    .photoGallery,
    .videosLandingPage,
    .newsLandingPage {
        background: url(/img/skin/bg/bg-repeating.jpg) repeat-y !important;
    }

}

@media (max-width: 767px) {
    body.home {
        background: url('/img/skin/bg/bg-repeating.jpg') repeat-y !important;
        background-size: contain !important;
        background-color: #f8ecd4;
    }
    .sustainabilityPage {
        background: url(/img/skin/bg/bg-repeating.jpg) repeat-y;
        background-color: #f8ecd4;
    }
}

@media (max-width: 550px) {
    
}

.wide-wrap {
    width: 1420px;
    margin: 0 auto;
}

@media (max-width: 1419px) {
    .wide-wrap {
        width: 100%;
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }
}
.page {

}
.center {
    display: flex;
    justify-content: center;
}
section .std-pad {
    padding: 10rem 0;
}

@media (max-width: 550px) {
    section .std-pad {
        padding: 5rem 0;
    }
}

.paper-bg-standard {
    background: url(/img/skin/bg/paper-bg.jpg);
    padding: 3rem;
    border: 1px solid #ddd;
    box-shadow: -1px 6px 11px -5px #333;
    border-radius: 5px;
    position: relative;
}

    .paper-bg-standard .tl {
        position: absolute;
        top: -2rem;
        left: -2rem;
    }

    .paper-bg-standard .tr {
        position: absolute;
        top: -2rem;
        right: -2rem;
    }

    .paper-bg-standard .bl {
        position: absolute;
        bottom: -2rem;
        left: -2rem;
    }

    .paper-bg-standard .br {
        position: absolute;
        bottom: -2rem;
        right: -2rem;
    }

    .paper-bg-standard .tt {
        position: absolute;
        top: -1.6rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .paper-bg-standard .tb {
        position: absolute;
        bottom: -1.6rem;
        left: 50%;
        transform: translateX(-50%);
    }
.fanclub .no-access .login-dialog {
    background: url(/img/skin/bg/paper-bg.jpg);
    font-family: 'Special Elite Regular';
    font-weight: 600;
    padding: 2rem 1rem 1rem 1rem;
    box-shadow: -1px 6px 11px -5px #333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}
    .fanclub .no-access .login-dialog .login-message {
        font-family: Poppins;
        font-weight: 500;
        width: 50%;
        background-color: #c3d3a2;
        color: #000;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        margin: 0 auto 1rem auto;
    }
        .fanclub .no-access .login-dialog .login-message p:last-of-type {
            margin-bottom: 0;
        }
        .fanclub .no-access .login-dialog .login-message a {
            color: #0e6481;
            text-decoration: underline;
            font-weight: 600;
        }
.fanclub .no-access h4 {
    font-family: 'Special Elite Regular';
    font-weight: 600;
    padding:0;
    box-shadow: none;
    background-color: transparent;
}
.fanclub .no-access button {
    margin: 0 auto;
    font-family: Poppins;
    font-weight: 500;
}

@media (max-width: 768px) {
    .fanclub .no-access .login-dialog .login-message {
        width: 100%;
    }
}



/* Headlines
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DS Moster';
    text-transform: uppercase;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"], input[type="date"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    height: initial;
    background-color: #fff;
    border: none;
    border-radius: 2px;
    box-shadow: none;
    box-sizing: border-box;
}
.k-input-md .k-input-inner, .k-picker-md .k-input-inner {
    padding: 8px 8px;
}
input[type=password] {
    padding-left: 1rem !important;
}
input[type="checkbox"], input[type="radio"] {
    border: 1px solid #777;
}
.k-input {
    height: initial;
}
.k-input {
    border-color: rgb(0 0 0 / 25%) !important;
}
.k-input-md .k-input-button, .k-input-md .k-spinner-decrease, .k-input-md .k-spinner-increase, .k-picker-md .k-input-button, .k-picker-md .k-spinner-decrease, .k-picker-md .k-spinner-increase {
    padding: 18px 15px;
}
.k-combobox .k-clear-value {
    margin-top: 0;
}
input.k-textbox {
    padding: 8px 8px !important;
    border: 1px solid #ccc;
}
.k-form .k-form-legend {
    font-family: 'Special Elite Regular';
    font-size: 1.8rem;
}
.k-form .k-form-fieldset {
    margin: 2rem 0 0;
}
.k-button-solid-primary {
    border-color: var(--button-primary-bg-color);
    color: #fff;
    background-color: var(--button-primary-bg-color);
    background-image: none;
}
    .k-button-solid-primary:hover {
        border-color: #19566a;
        color: #fff;
        background-color: #19566a;
        background-image: none;
    }
    .k-button-solid-primary.k-active, .k-button-solid-primary.k-selected, .k-button-solid-primary:active {
        border-color: var(--button-primary-bg-color);
        background-color: var(--button-primary-bg-color);
    }
    .k-button-solid-primary.k-focus, .k-button-solid-primary:focus {
        border-color: #19566a;
        background-color: #19566a;
        border-color: #000;
        box-shadow: none;
    }
.k-button-solid-base.k-hover, .k-button-solid-base:hover {
    color: #000;
}
.k-button-solid-base:focus {
    border-color: #19566a;
    background-color: #19566a;
    border-color: #000;
    box-shadow: none;
}
.k-dialog-titlebar {
    background-color: #2ea8d1 !important;
    font-family: 'Special Elite Regular';
    text-transform: uppercase;
}

/* Elements - Headlines and Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.headline {
    display: flex;
    color: #000;
    font-family: 'DS Moster';
    text-transform: uppercase;
    font-size: 1.8rem;
}
    .headline img {
        display: inline-block;
        height: 45px;
    }

    .headline div {
        background: url('/img/skin/headlines/tape-bg.png');
        display: inline-block;
        height: 46px;
        margin: 0;
        z-index: 100;
    }

        .headline div > h5 {
            background: none;
            padding: 1.2rem 0 0 0;
            margin: 0;
            margin-right: -1.5rem;        
        }
@media (max-width: 550px) {
    .headline div > h5 {
        font-family: 'Special Elite Regular';
        font-weight: 600;
    }
}



.tape-button a {
    display: flex;
    color: #fff;
    font-family: 'DS Moster';
    text-transform: uppercase;
    font-size: 1.6rem;
}

    .tape-button img {
        display: inline-block;
        height: 48px !important;
        width: initial !important;
    }

.tape-button .content {
    background: url('/img/skin/buttons/orange-bg.png');
    display: inline-block;
    height: 48px !important;
    width: initial !important;
    margin: 0;
}

    .tape-button .content > div {
        background: none;
        padding: 1rem 0 0 0;
        margin: 0;
        margin-left: -2rem;
    }

button.tape-button {
    outline: none;
    border: none;
    background-color: transparent;
    position: relative;
    margin: 1.5rem 0 0 0;
    height: initial;
    padding: 0;
    display: flex;
}

/* Grey */

.tape-button.grey .content {
    background: url('/img/skin/buttons/grey-bg.png');
}
.tape-button.grey .content > div {
    padding: 1.1rem 0 0 0;
    margin-left: -3.7rem;
}

/* Smaller Button */
/* Green */

.tape-button.sm a {
    font-family: 'Special Elite Regular';
    font-size: 1.6rem;
}

.tape-button.sm img {
    height: 34px !important;
    width: initial !important;
}

.tape-button.sm .content {
    background: url('/img/skin/buttons/green-bg.png');
    height: 34px !important;
    width: initial !important;
}

    .tape-button.sm .content > div {
        background: none;
        padding: .7rem 0 0 0;
        margin: 0;
    }

/* Blue */
.tape-button.sm.blue .content {
    background: url('/img/skin/buttons/blue-bg.png');
}

/* Black */
.tape-button.sm.black img {
    height: 39px !important;
}
.tape-button.sm.black .content {
    background: url('/img/skin/buttons/black-bg.png');
    height: 39px !important;
}
.tape-button.sm.black .content > div {
    padding: 1rem 0 0 0;
}

/* Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal */
.modal-content {
    background-color: #fff;
    margin: 10rem auto 0 auto;
    padding: 1.5rem;
    width: 41rem;
    position: relative;
}

.close {
    color: #fff;
    float: right;
    font-size: 0px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

/* Privacy Policy */
.privacy-popup {
    background: url(/img/skin/bg/paper-bg.jpg);
    color: #000;
    border-radius: 0;
    border: 1px solid #ddd;
    box-shadow: -1px 6px 11px -5px #333;
    width: calc(100% - 4rem);
    max-width: 188rem;
    z-index: 2000;
}
    .privacy-popup button {
        border: 1px solid #ddd;
    }
    .privacy-popup a {
        color: var(--accent-color);
    }

/* Top Nav
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top-nav .social-icon-grid {
    padding-top: 1rem;
}
.top-nav .social-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
    .top-nav .social-icon-grid > div:nth-child(1) {
        justify-self: start;
    }
    .top-nav .social-icon-grid > div:nth-child(2) {
        justify-self: end;
    }
    .top-nav .social-icon-grid > div {
        display: flex;
    }
    .top-nav .social-icon-grid > div ul {
        margin: 0;
        display: flex;
        flex-direction: row;
    }
        .top-nav .social-icon-grid > div ul li {
            list-style: none;
            margin: 0 2px;
            background-color: #3c3c3c;
            border-radius: 100%;
            height: 30px;
            width: 30px;
            position: relative;
            transition: .25s;
        }
            .top-nav .social-icon-grid > div ul li:hover {
                background-color: var(--accent-color);
                transition: .25s;
            }
            .top-nav .social-icon-grid > div ul li a {
                display: flex;
                align-items: center;
            }
            .top-nav .social-icon-grid > div ul li a img {
                width: 1.6rem;
                filter: invert(100%);
            }
        .top-nav .social-icon-grid > div ul a {
            font-size: 1.6rem;
            color: #fff;
            position: absolute;
            webkit-transform: translate(-52%, -52%);
            transform: translate(-52%, -52%);
            top: 52%;
            left: 52%;
            display: inline-block;
        }


.top-nav .menu-bg {
    background: url('/img/skin/nav/nav-bg.png');
}

.top-nav {
    height: var(--nav-height);
    background-color: initial;
}

    .top-nav .menu {
        grid-template-columns: 1fr ;
        justify-items: center;
        grid-auto-rows: initial;
    }
        .top-nav .menu > div:nth-child(1) img {
            height: 20px;
        }

    .top-nav nav {
        margin-top: 2rem;
        justify-self: center;
        z-index: 1000;
        display: flex;
    }
        .top-nav nav ul {
            padding-top: .8rem;
        }
        .top-nav nav ul li.mobile-only {
            display: none;
        }
            .top-nav nav ul li.desktop-only {
                display: block;
            }
        .top-nav nav li a {
            font-family: 'DS Moster';
            font-size: 1.6rem;
        }

        .top-nav nav li span {
            font-family: 'DS Moster';
            font-size: 1.6rem;
        }

            .top-nav nav li a:hover,
            .top-nav nav li span:hover {
                color: #ff3300;
            }

        .top-nav nav li.active span,
        .top-nav nav li.active > a {
            color: #ff3300;
        }
        .top-nav nav li ul.sub-menu {
            background-color: initial;
            flex-direction: row;
            background: url(/img/skin/bg/paper-bg.jpg);
            box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
            top: 3.8rem;
            padding: 1.5rem 0 1.5rem 0;
            border: 1px solid #ddd;
            min-width: 225px;
        }
            .top-nav nav li ul.sub-menu li {
                border-top: none;
            }
                .top-nav nav li ul.sub-menu li a {
                    font-size: 1.6rem;
                    font-family: 'Special Elite Regular';
                    font-weight: 600;
                }
    .top-nav .tape {
        display: none;
    }
    .top-nav .has-submenu {
        position: relative;
    }
        .top-nav .has-submenu .tape {
            position: absolute;
            z-index: 2000;
            top: 2.2rem;
        }
        .top-nav .has-submenu .tape img {
            height: initial;
        }

@media (max-width: 1199px) {
    .top-nav nav li {
        margin: 0 0 0 1.5rem;
    }
        .top-nav nav li a {
            font-family: 'DS Moster';
            font-size: 1.5rem;
        }

        .top-nav nav li span {
            font-family: 'DS Moster';
            font-size: 1.5rem;
        }

}
@media (max-width: 1023px) {
    .bar1, .bar2, .bar3 {
        width: 35px;
        height: 5px;
        background-color: #000;
        margin: 6px 0;
        transition: 0.4s;
    }
    .top-nav nav {
        display: none;
    }
    .top-nav .menu {
        grid-template-columns: 1fr 7.55rem;
        justify-items: center;
        margin-top: 2rem;
    }

        .top-nav .menu > div:nth-child(1) {
            justify-self: center;
            margin-left: 7.5rem;
            z-index: 2000;
        }
        .top-nav .menu > div:nth-child(2) {
            z-index: 2000;
            margin-right: 2rem;
        }
    .left-nav-cap, .right-nav-cap {
        display: none;
    }
    .top-nav .menu-bg {
        background: none;
    }
    .top-nav .menu > nav {
        margin: -5rem -1rem 0 -1rem;
        width: 100%;
        background: url(/img/skin/bg/paper-bg.jpg);
    }
        .top-nav .menu > nav ul:not(.sub-menu) {
            margin: 5rem 0 0 2.5rem;
        }
    .top-nav nav ul li.mobile-only {
        display: block;
    }
    .top-nav nav ul li.desktop-only {
        display: none;
    }
    .top-nav .menu > nav {
        position: relative;
    }
    .top-nav .tape {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
        .top-nav .tape.top {
            margin-top: -1.6rem;
        }
        .top-nav .tape.bottom {
            bottom: -1.6rem;
        }
    .top-nav .tape img {
        height: initial;
    }
    .top-nav nav li ul.sub-menu {
        background: none;
        box-shadow: none;
        border: none;
        top: 0;
        padding: 0.5rem 0 0 1.5rem;
    }
    .top-nav .tape.top {
        display: none;
        margin-top: -300rem;
    }
}
@media (max-width: 550px) {
    .top-nav .menu > div:nth-child(1) img {
        height: initial;
        width: 100%;
    }
    .top-nav .menu > div:nth-child(1) {
        margin-left: 2.5rem;
    }
}



/* Footer */
.footer-bg-out {
    display: none;
}
body.home .footer-bg-out {
    display: block;
    background: url(/img/skin/bg/bg-all-sides.jpg) no-repeat;
    background-position-y: 100%;
    background-repeat: no-repeat;
    min-height: 73rem;
    margin-top: -65.5rem;
    padding: 0;
    z-index: -100;
    position: relative;
}
.footer-bg {
    background: url(/img/skin/bg/footer-bg.png);
    background-repeat: no-repeat;
    min-height: 73rem;
    margin-top: -65.5rem;
    padding: 0;
    z-index: -100;
    position: relative;
}
.footer {
    margin-top: -7.5rem;
    background: none;
    padding: 0;
}
    .footer .footer-container {
        position: relative;
        min-height: 7.5rem;
    }
    .footer .footer-grid {
        grid-template-columns: 1fr;
        position: absolute;
        bottom: 0;
        background: url(/img/skin/bg/footer-nav-bg.png);
        background-repeat: no-repeat;
        height: 7.5rem;
        background-position-x: 50%;
        text-align: center;
        z-index: 100;
    }
    .footer ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        list-style: none;
        align-content: center;
        margin: .7rem 0 .5rem 0;
        justify-content: center;
        padding: 0 10rem;
        align-items: center;
    }
    .footer ul li {
        margin: 0 .7rem;
        text-transform: uppercase;
        font-weight: 600;
    }
        .footer ul li img {
            filter: invert(1);
            height: 4rem;
        }
    .footer .copyright {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        list-style: none;
        justify-content: center;
        margin: 0;
        padding: 0 10rem;
        font-size: 1.1rem;
    }
    .footer a:hover {
        color: var(--accent-color);
    }

@media (max-width: 1199px) {
    .footer ul {
        padding: 0;
    }
    .footer .copyright {
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .footer ul {
        display: none;
    }

}


/* Page Section - About 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

section:nth-child(odd) {
    background-color: initial;
}
section:nth-child(even) {
    background-color: initial;
}

.about-section .about-grid > div:nth-child(1) {
    padding: 0;
    box-shadow: none;
}

/* Page Section - Hero Slider 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.slider-container {
    position: relative;
    background: url('/img/skin/slider/hand.png');
    background-repeat: no-repeat;
    background-position-y: 78%;
    background-position-x: -1.5%;
}
.slider-container > div {
    position: relative;
}

.slider-container .slide-left img,
.slider-container .slide-right img {
    width: 9rem;
}
    .slider-container .hero-slider {
        box-shadow: 0 0 18px 0px rgb(0 0 0 / 65%)
    }

.slide-left {
    position: absolute;
    top: 45%;
    cursor: pointer;
    left: 1rem;
    transition: all .25s;
}
    .slide-left:hover {
        left: .5rem;
        transition: all .25s;
    }
.slide-right {
    position: absolute;
    top: 45%;
    right: 1rem;
    cursor: pointer;
    transition: all .25s;
}
    .slide-right:hover {
        right: .5rem;
        transition: all .25s;
    }

.hero-slide {
    height: 570px;
}
    .hero-slide a {
/*        position: relative;
        z-index: 10000;
        display: flex;
        width: 100%;*/
    }
    .hero-slide > a > div {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        height: 570px;
        border: 5px solid rgb(246 234 210);
    }
    .hero-slide .bottom {
        position: absolute;
        bottom: 3rem;
    }
    .hero-slide .top {
        position: absolute;
        top: 3rem;
    }
    .hero-slide .middle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        width: 100%;
        margin-left: 3rem;
    }
    .hero-slide .top .captions {
        margin: 0;
    }

    .hero-slide > a > div > div {
        padding: 3rem;
        height: 100%;
        position: relative;
    }
    .hero-slide h1 {
        font-size: 6rem;
        line-height: 5.9rem;
        font-family: 'Special Elite Regular';
        margin-bottom: .5rem
    }
    .hero-slide h1 p {
        margin: 0;
    }
    .hero-slide h2 {
        font-family: 'Special Elite Regular';
        font-size: 2.4rem;
        text-transform: none;
        font-weight: 400;
        background: rgb(231 231 231 / 85%);
        /* #414141 */
/*        margin-left: -1.2rem;*/
        display: inline-block;
        margin-bottom: 1.5rem;
    }
        .hero-slide h2.grey-bg {
            background: rgb(65 65 65 / 90%);
        }
    .hero-slide h2 p {
        margin: 0;
        padding: .5rem 1.2rem 0 1.2rem;
    }
    .hero-slide .bottom .captions {
        margin-bottom: 0;
    }
    .hero-slide .slide-button {
        display: flex;
    }
    .hero-slide .slide-button img {
        display: inline-block;
        height: 48px;
    }
    .hero-slide .slide-button div {
        background: url('/img/skin/buttons/orange-bg.png');
        display: inline-block;
        height: 48px;
        margin: 0;       
    }
        .hero-slide .slide-button h5 {
            padding: 1rem 0 0 0;
            margin: 0;
            margin-left: -2rem;
        }

.slider-container .slide-numbers {
    font-family: 'Special Elite Regular';
    font-size: 1.6rem;
    margin-top: 1rem;   
}
    .slider-container .slide-numbers ul {
        display: flex;
        justify-content: flex-end;
        margin: 0;
    }
    .slider-container .slide-numbers ul li {
        list-style: none;
        cursor: pointer;
        position: relative;
    }
        .slider-container .slide-numbers ul li img {
            height: 28px;
            width: 28px;
            opacity: 0;
        }
        .slider-container .slide-numbers ul li.active img {
            opacity: 1;
        }
        .slider-container .slide-numbers ul li div {
            position: absolute;
            top: 0.5rem;
            left: 1.1rem;
            transition: color .25s;
        }
        .slider-container .slide-numbers ul li div:hover {
            color: var(--accent-color);
            transition: color .25s;
        }
.slider-container .slider-broken-line {
    text-align: right;
    margin-top: -.75rem;
    background: url('/img/skin/slider/broken-line.png');
    height: 1px;
    width: 500px;
    position: absolute;
    right: 0;
}

@media (max-width: 1399px) {
    .slide-left {
        display: none;
    }

    .slide-right {
        display: none;
    }
}
@media (max-width: 1199px) {
    .hero-slider.wrap {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
@media (max-width: 1024px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 450px;
        min-height: 450px;
    }
        .hero-slide h1 {
            font-size: 4.8rem;
            line-height: 5.0rem;
        }
        .hero-slide h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }
}
@media (max-width: 820px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 370px;
        min-height: 370px;
    }
}
@media (max-width: 768px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 350px;
        min-height: 350px;
    }

        .hero-slide h1 {
            font-size: 3.2rem;
            line-height: 3.4rem;
        }

        .hero-slide h2 {
            font-size: 2.0rem;
        }
        .hero-slide > div {
            padding: 1.5rem;
        }
}
@media (max-width: 550px) {
    .slider-container {
        background: none;
    }
    .hero-slide,
    .hero-slide > a > div {
        height: 240px;
        min-height: 240px;
    }

        .hero-slide h1 {
            font-size: 2.0rem;
            line-height: 2.2rem;
        }

        .hero-slide h2 {
            font-size: 1.6rem;
        }

        .hero-slide > div {
            padding: 1.5rem;
        }
        .hero-slide .bottom .captions {
            margin: 0;
            padding: 0;
        }
        .hero-slide .slide-button img {
            height: 35px;
        }

        .hero-slide .slide-button h5 {
            font-size: 1.2rem;
        }
        .hero-slide .slide-button div {
            height: 30px;
        }
}

@media (max-width: 425px) {
        .hero-slide,
        .hero-slide > a > div {
            height: 180px;
            min-height: 180px;
        }
}
@media (max-width: 390px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 165px;
        min-height: 165px;
    }
}
@media (max-width: 375px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 160px;
        min-height: 160px;
    }
}

@media (max-width: 375px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 145px;
        min-height: 145px;
    }
}
@media (max-width: 360px) {
    .hero-slide,
    .hero-slide > a > div {
        height: 135px;
        min-height: 135px;
    }
}


/* Newslist Page Section */
.page.home .login-dialog {
    display: none;
}
.page.home .page.fanclub {
    padding-bottom: 0;
}
.page.home .page {
    min-height: initial;
}
.page.home .fan-club-benefits.std-pad {
    padding: 0;
}

.page.home .fan-club-benefits .benefits-grid.paper-bg-standard {
    background: none;
    border: none;
    box-shadow: none;
}
    .page.home .fan-club-benefits .benefits-grid.paper-bg-standard .tl,
    .page.home .fan-club-benefits .benefits-grid.paper-bg-standard .tr,
    .page.home .fan-club-benefits .benefits-grid.paper-bg-standard .bl,
    .page.home .fan-club-benefits .benefits-grid.paper-bg-standard .br {
        display: none;
    }

.page.home .newslist .wrap {
    padding: 10rem 0;
}
.newslist.latest-news .headline {
    margin-bottom: 2rem;
}
.newslist.latest-news .latest-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 5rem;
}
.newslist.latest-news .latest-news-grid .broken-line {
    display: none;
}
.newslist .latest-news-grid .news-item-grid {
    display: block;
    padding: 2rem 0;
    border: none;
}
    .newslist .latest-news-grid .news-item-grid .image {

    }
    .newslist .latest-news-grid .news-item-grid img {
        height: 27rem;
        width: 27rem;
        object-fit: cover;
    }
.newslist .news-item-grid h6 {
    font-size: 1.2rem;
    text-transform: none;
    font-weight: 600;
    color: var(--accent-color);
    margin: 2rem 0 0.5rem 0;
    font-family: Poppins;
}
.newslist .news-item-grid h3 {
    font-family: Poppins;
    margin: 0 0 2rem 0;
    font-weight: 700;
    letter-spacing: normal;
    font-size: 1.6rem;
    text-transform: none;
    color: #000;
}
.newslist .news-item-grid p {
    font-weight: 500;
    line-height: 1.4;
}

.page.news .newslist .news-item-grid h3 {
    margin: 0 0 1rem 0;
    font-size: 2.4rem;
}

.newslist .news-item-grid .transparent-img-border-dark:after {
    opacity: .17;
}
.newslist .more-news .tape-button .content > div {
    padding: 1rem 2rem 0 2rem;
}
@media (max-width: 1199px) {
    .newslist.latest-news .latest-news-grid {
        grid-gap: 3rem;
    }

    .newslist .latest-news-grid .news-item-grid img {
        height: 18rem;
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .newslist.latest-news .latest-news-grid {
        grid-gap: 3rem;
    }
    .newslist .latest-news-grid .news-item-grid img {
        height: 20rem;
        width: 100%;
    }
}
@media (max-width: 1023px) {
    .newslist.latest-news .latest-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .newslist .latest-news-grid .news-item-grid img {
        height: 24rem;
    }
}
@media (max-width: 550px) {
    .newslist.latest-news .latest-news-grid {
        grid-template-columns: 1fr;
    }
    .page.home .newslist .wrap {
        padding: 5rem 0;
    }
    .newslist .latest-news-grid .news-item-grid img {
        height: 24rem;
    }
    .page.news .newslist .news-item-grid h3 {
        font-size: 2rem;
    }
    .page.news {
        padding-bottom: 35rem;
    }
}


/* Tours - Page Section */
.tours {
    background: url('/img/skin/bg/tour-bg-5.png');
    background-repeat: no-repeat;
    min-height: 105rem;
}
    .tours .tour-dates {
        margin-top: 2rem;
        padding: 0 11rem;
    }
    .tours .tour-date-item {
        border: none;
        padding: 1.5rem 0;
    }
        .tours .tour-date-item .info {
            width: 55%;
            padding-left: 0rem;
        }
        .tours .tour-date-item .tickets {
            width: 55%;
            display: flex;
            align-self: flex-end;
            justify-content: flex-end;
        }
        .tours .tour-date-item .black {
            margin-top: -2px;
        }
        .tours .tour-date-item .date {
            color: var(--accent-color);
            font-weight: 600;
            font-size: 1.4rem;
        }
        .tours .tour-date-item .info h4 {
            font-family: Poppins;
            font-size: 1.6rem;
        }
        .tours .tour-date-item .info h5 {
            font-family: Poppins;
            font-size: 1.4rem;
            font-weight: 500;
        }
        .tours .tour-date-item .info p {
            margin-bottom: 1rem;
        }
        .tours .tour-date-item .info ul {
            padding: .5rem 0 0 2.5rem;
            margin: 0;
        }
        .tours .tour-date-item .info ul li {
            list-style: disc;
            margin-bottom: 0;
        }
        .tours .tour-date-item .sold-out {
            font-family: 'Special Elite Regular';
            font-size: 2.2rem;
            font-weight: 600;
            text-transform: uppercase;
            padding-right: 1rem;
        }
    .tours .view-all {
        margin-top: 2.5rem;
    }
    .tours .no-tours {
        text-align: center;
        margin-top: 30rem;
        font-family: 'Special Elite Regular';
        font-size: 3rem;
        font-weight: 600;
    }
@media (max-width: 1919px) {
    .tours {
        background-size: contain;
    }
}
@media (max-width: 1440px) {
    .tours .no-tours {
        margin-top: 15rem;
    }
}
@media (max-width: 1024px) {
    .tours .no-tours {
        margin-top: 10rem;
        font-size: 2rem;
    }   
}
@media (max-width: 1023px) {
    .tours .tour-dates {
        margin-top: 2rem;
        padding: 0 1.5rem;
    }
    .tours .tour-date-item .tickets {
        width: 50%;
    }
    .tours {
        background: none;
    }
}
@media (max-width: 768px) {
    .tours .no-tours {
        margin-top: 5rem;
        font-size: 1.6rem;
    }  
}
@media (max-width: 767px) {
    .tours .tour-date-item .date {
        width: 100%;
        margin-bottom: 0;
    }
    .tours .tour-date-item .info {
        width: 100%;
    }
    .tours .tour-date-item .tickets {
        width: 100%;
    }
}
@media (max-width: 320px) {
    .tours .tour-date-item .tickets  {
        display: block;
    }
    .tours .tour-date-item .tickets .tape-button a {
        text-align: center;
        margin-bottom: .5rem;
    }
    .tape-button.sm .content {
        width: 100% !important;
    }
}

/* Setlist Page Section */
.setlist-list {
    margin-top: 7rem;
}
.setlist-list .setlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2.5rem;
    margin-top: 3rem;
    padding: 0;
}
.setlist-list .setlist-grid > div {
    background: url('/img/skin/bg/paper-bg.jpg');
    padding: 1.5rem;
    border: 1px solid #ddd;
}
    .setlist-list .setlist-grid .setlist-item {
        box-shadow: -1px 6px 11px -5px #333;
        position: relative;
    }
    .setlist-list .setlist-grid .setlist-item .top {
        display: grid;
        grid-template-columns: 7.5rem 1fr;
        font-family: 'Special Elite Regular';
        font-weight: 600;
        align-items: end;
    }
    .setlist-list .setlist-grid .setlist-item .date {
        font-size: 1.2rem;
    }
    .setlist-list .setlist-grid .setlist-item .loc {
        justify-self: end;
        font-size: 1.4rem;
    }
        .setlist-list .setlist-grid .setlist-item .title {
            display: flex;
            align-content: center;
            justify-content: center;
            min-height: 7rem;
            flex-wrap: wrap;
        }
    .setlist-list .setlist-grid .setlist-item h4 {
        font-family: 'Special Elite Regular';
        font-size: 1.8rem;
        font-weight: 600;
        text-align: center;
        margin: 0;      
    }
        .setlist-list .setlist-grid .setlist-item .setlist-text {
            font-family: 'Poppins';
            font-size: 1.4rem;
            font-weight: 500;
        }
        .setlist-list .setlist-grid .setlist-item .setlist-text {
            font-family: 'Poppins';
            font-size: 1.4rem;
            font-weight: 500;
            padding: 1.5rem 1rem 0 1rem;
            letter-spacing: -.25px;
        }
            .setlist-list .setlist-grid .setlist-item .setlist-text ol {
                margin-bottom: 1rem;
            }
        .setlist-list .setlist-grid .setlist-item .setlist-text ol li {
            margin: 0;
        }
                .setlist-list .setlist-grid .setlist-item .setlist-text p {
                    margin: 1rem 0;
                }

        .setlist-list .setlist-grid .setlist-item .tape {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
            .setlist-list .setlist-grid .setlist-item .tape.top {
                top: -1.6rem;
            }
            .setlist-list .setlist-grid .setlist-item .tape.bottom {
                bottom: -1.6rem;
            }
            .setlist-list .view-all {
                margin-top: 5rem;
            }

@media (max-width: 1199px) {
    .setlist-list .setlist-grid {
        grid-gap: 1.5rem;
        padding: 0; 
    }
}
@media (max-width: 1023px) {
    .setlist-list .setlist-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 3rem;
        grid-row-gap: 6rem;
        padding: 0 4rem;
    }
}
@media (max-width: 767px) {
    .setlist-list .setlist-grid {
        padding: 0;
    }
}
@media (max-width: 550px) {
    .setlist-list .setlist-grid {
        grid-template-columns: 1fr;
        padding: 0 0;
    }
}
@media (max-width: 375px) {
    .setlist-list .setlist-grid {
        padding: 0 0;
    }
}

/* Album Promo Page Section */
.album-promo {
    background: url('/img/skin/bg/album-promo-bg-2.png') no-repeat left 20%;
    min-height: 50rem;
    padding: 9rem 0 0 0;
}
.album-promo .promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
    .album-promo .promo-grid > div:nth-child(1) {
        position: relative;
    }
        .album-promo .promo-grid > div:nth-child(1) .stream-link {
            background: url('/img/skin/promo/stream-tape.png') no-repeat left 50%;
            position: absolute;
            right: 0;
            bottom: -8rem;
            width: 40rem;
            color: #fff;
            padding: 3rem 0 0 4rem;
            text-align: center;
            min-height: 16rem;
        }
        .album-promo .promo-grid > div:nth-child(1) .stream-link h5 {
            font-size: 1.4rem;
            text-transform: none;
            font-weight: 400;
            font-family: 'Special Elite Regular';
            margin: 0;
        }
            .album-promo .promo-grid > div:nth-child(1) .stream-link h4 {
                font-size: 2.1rem;
                font-weight: 400;
                font-family: 'Special Elite Regular';
                letter-spacing: 2px;
                margin: 0 0 0 -2rem;
            }
            .album-promo .promo-grid > div:nth-child(1) .stream-link a {
                color: #fff;
            }
        .album-promo .promo-grid > div:nth-child(1) a .stream-icon {
            color: #ff0000;
            font-family: Poppins;
            font-size: 1.6rem;
            font-weight: 500;
            text-transform: uppercase;
            margin: 0;
        }

    .album-promo .promo-grid > div:nth-child(2) {
        text-align: center;
        padding: 5rem 0 0 0;
    }
        .album-promo .promo-grid > div:nth-child(2) h5 {
            font-size: 2.2rem;
            font-weight: 400;
            font-family: 'Special Elite Regular';
            margin: 0;
        }
        .album-promo .promo-grid > div:nth-child(2) h1 {
            font-size: 4rem;
            font-weight: 400;
            margin: 0;
        }
        .album-promo .promo-grid > div:nth-child(2) h6 {
            font-size: 1.6rem;
            letter-spacing: 2px;
            font-weight: 600;
            text-transform: none;
            font-family: 'Special Elite Regular';
            margin: 0 0 2rem 0;
        }
        .album-promo .promo-grid > div:nth-child(2) h4 {
            font-size: 2.4rem;
            letter-spacing: 2px;
            font-weight: 500;
            text-transform: none;
            font-family: 'Special Elite Regular';
            margin: 0 0 1rem 0;
        }
        .album-promo .promo-grid > div:nth-child(2) .purchase-links {
            display: flex;
            margin-top: 2rem;
            justify-content: center;
        }
        .album-promo .promo-grid > div:nth-child(2) .purchase-links img {
            max-height: 6rem;
            margin: 0 3rem;
        }
            .album-promo .broken-line {
                margin-top: 20rem;
            }

@media (max-width: 1023px) {
    .album-promo .promo-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 5rem;
    }
    .album-promo .promo-grid > div:nth-child(2) {
        order: 1;
    }
        .album-promo .promo-grid > div:nth-child(2) .purchase-links {
            flex-wrap: wrap;
        }
        .album-promo .promo-grid > div:nth-child(2) .purchase-links a {
            margin-bottom: 2rem;
        }
}

/* Fan Club Join Page Section */
.fan-club-benefits .benefits-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
    padding: 5rem 3rem 3rem 0;
    opacity: .9;
}
    .fan-club-benefits .benefits-grid > div:nth-child(1) img {
        padding: 0;
        background: none;
        box-shadow: none;
        border-radius: 0;
    }
    .fan-club-benefits .benefits-grid > div:nth-child(2) {
        margin-left: -5rem;
    }
    .fan-club-benefits .benefits-grid h5 {
        letter-spacing: 0;
        font-weight: 500;
        font-family: 'Bluu Next';
        font-size: 8.0rem;
        margin-bottom: 0;
        color: #c4d49f;
        background: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
        margin: -5rem 0 0 -1rem;
    }
    .fan-club-benefits .benefits-grid p {
        font-weight: 700;
        font-size: 1.6rem;
        margin: -1rem 0 1rem 0;
    }
    .fan-club-benefits .benefits-grid ul {
        list-style: initial;
    }
    .fan-club-benefits .benefits-grid .benefit-item {
        font-size: 1.4rem;
        background: none;
        padding: 0;
        margin-bottom: 0;
        border-radius: 0;
    }
    .fan-club-benefits .benefits-grid .join-links {
        display: flex;
        justify-content: center;
    }
    .fan-club-benefits .benefits-grid .join-links button {
        margin: 0;
    }
    .fan-club-benefits .benefits-grid .join-links .tape-button.green {
        margin: .3rem 0 0 1rem;
    }
.fan-club-benefits .broken-line {
    margin-top: 8rem;
}
@media (max-width: 1199px) {
    .fan-club-benefits .benefits-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}
@media (max-width: 768px) {
    .fan-club-benefits .benefits-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 5rem;
        padding: 5rem 3rem 3rem 3rem;
    }
        .fan-club-benefits .benefits-grid > div:nth-child(1) {
            order: initial;
        }
        .fan-club-benefits .benefits-grid > div:nth-child(2) {
            margin-left: 0;
            padding: 0 5rem;
        }
        .fan-club-benefits .benefits-grid > div:nth-child(1) img {
            display: block;
        }
        .fan-club-benefits .benefits-grid h5 {
            text-align: center;
        }
}
@media (max-width: 767px) {
    .fan-club-benefits .benefits-grid h5 {
        text-align: center;
        font-size: 6rem;
    }
    .fan-club-benefits .benefits-grid {
        padding: 5rem 3rem 3rem 3rem;
    }
}
@media (max-width: 550px) {
    .fan-club-benefits .benefits-grid h5 {
        text-align: center;
        font-size: 4rem;
    }
    .fan-club-benefits .benefits-grid > div:nth-child(2) {
        margin-left: 0;
        padding: 0 2rem;
    }
    .fan-club-benefits .benefits-grid .join-links {
        display: block;
    }
        .fan-club-benefits .benefits-grid .join-links .tape-button.green {
            margin: 1rem 0 0 0;
        }
}


/* Sustainability Page Section */
.goodwill {
    text-align: center;
    padding-bottom: 10rem;
    background: url(/img/skin/bg/bg-all-sides.jpg) no-repeat;
    background-position-y: 100%;
}
.goodwill h3 {
    font-size: 2.2rem;
    font-family: Poppins;
    font-weight: 800;
    margin-bottom: 3rem;
}
    .goodwill .numbers-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        grid-gap: .5rem;
        padding: 0 15rem;
    }
        .goodwill .numbers-grid .numbers-box {
            border: 1px solid rgb(0 0 0 / 33%);
            background-color: #d3d3ca;
            padding: 2rem 1.5rem;
            min-height: 12.5rem;
            min-width: 18rem;
        }
            .goodwill .numbers-grid .numbers-box.green {
                background-color: #ccc8af;
            }
            .goodwill .numbers-grid .numbers-box.beige {
                background-color: #e5d6ba;
            }
            .goodwill .numbers-grid .numbers-box.taupe {
                background-color: #d8cfc4;
            }
            .goodwill .numbers-grid .logo {
                width: 12rem;
                margin: 0 2rem
            }
            .goodwill .numbers-grid .numbers-box h3 {
                font-family: 'Special Elite Regular';
                font-size: 4.2rem;
                font-weight: 400;
                margin: 0;
            }
            .goodwill .numbers-grid .numbers-box h6 {
                font-family: Poppins;
                font-size: 1.4rem;
                font-weight: 500;
                margin: -.5rem 0 0 0;
                line-height: 1.6rem;
            }
    .goodwill .sustainability-text p {
        font-weight: 500;
        margin: 3rem 0 1.5rem 0;
        line-height: 2.2rem;
        padding: 0 20rem;
    }
    .goodwill .sustainability-text a {
        font-weight: 600;
        text-decoration: underline;
    }

@media (max-width: 1199px) {
    .goodwill .numbers-grid {
        padding: 0 5rem;
    }
}
@media (max-width: 1023px) {
    .goodwill .numbers-grid {
        padding: 0;
    }
        .goodwill .numbers-grid .numbers-box {
            min-width: initial;
        }
            .goodwill .numbers-grid .numbers-box h3 {
                font-size: 3rem;
            }
    .goodwill .sustainability-text p {
        padding: 0 7rem;
    }
}
@media (max-width: 767px) {
    .goodwill > div > h3 {
        padding: 0 15rem;
    }
    .goodwill .numbers-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 1.5rem;
    }
        .goodwill .numbers-grid > div:nth-child(1) {
            justify-self: end;
        }
        .goodwill .numbers-grid > div:nth-child(4) {
            justify-self: end;
        }
        .goodwill .numbers-grid > div:nth-child(3) {
            order: -1;
            grid-column: 1/3;
            text-align: center;
            width: 100%;
            width: initial;
        }

    .goodwill .sustainability-text p {
        padding: 0 4rem;
    }
    .goodwill .numbers-grid .numbers-box {
        width: 18rem;
    }
}
@media (max-width: 550px) {
    .goodwill > div > h3 {
        padding: 0 2rem;
    }
    .goodwill .numbers-grid .numbers-box {
        width: 100%;
    }
    .goodwill .sustainability-text p {
        padding: 0 2rem;
    }
}

.goodwill .logos-grid {
    display: grid;
    grid-template-columns: 1fr 12rem 1fr;
    padding: 0 10rem;
}
.goodwill .logos-grid div img {
    max-width: 15rem;
}
    .goodwill .logos-grid div .text p {
        font-weight: 500;
        font-size: 1.6rem;
    }
@media (max-width: 768px) {
    .goodwill .logos-grid {
        padding: 0;
    }
}
@media (max-width: 767px) {
    .goodwill .logos-grid {
        padding: 0;
    }
    .goodwill {
        background: none;
    }
        .goodwill .logos-grid {
            grid-template-columns: 1fr;
        }
        .goodwill .logos-grid > div:nth-child(1) {
            order: 2;
        }
            .goodwill .logos-grid > div:nth-child(2) {
                order: 1;
            }
            .goodwill .logos-grid > div:nth-child(3) {
                order: 3;
            }
}

/* Tile List Page Section */

.tile-list {
/*    background: url(/img/skin/bg/bg-all-sides.jpg) no-repeat;
    background-position-y: 100%;*/
}
.tile-list .tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
    .tile-list .tiles div {
        margin: 0 2rem 5rem 2rem;
    }
    .tile-list .tiles img {
        max-width: 27rem;
    }
@media (max-width: 767px) {
    .tile-list {
        background: none;
    }
}

/* Hero Title Page Section */
.hero-title {
    background: none;
}

/* News Page */
.page.news .newslist .wrap {
    padding: 0 15rem;
}
.newslist .news-item-grid h6 {
    font-size: 1.4rem;
    margin: 0;
    font-family: Poppins;
}
.newslist .news-item-grid {
    display: grid;
    grid-template-columns: 27rem 1fr;
    grid-gap: 3rem;
    padding: 2rem 0;
    border-bottom: none;
}
.newslist .news-item-grid img {
    height: 27rem;
    width: 27rem;
    object-fit: cover;
}
.newslist .categories .cat {
    font-family: 'Special Elite Regular';
}
.article p {
    font-weight: 500;
    word-wrap: break-word;
}
.article .article-header {
    padding: 0 0 1rem 0;
}
.article .article-header h1 {
    font-size: 3.2rem;
    font-weight: 600;
    font-family: 'Poppins';
}
.article .article-header h6 {
    font-size: 1.4rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins';
}
.article .article-header h1:after {
    bottom: -0.5rem;
}
.article .article-content h1 {
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'Poppins';
    margin-bottom: 1rem;
}
.article .article-content .caption {
    font-weight: 600;
}
.article .article-content ol, 
.article .article-content ul {
    margin: -1rem 0 3rem 3rem;
    font-size: 1.6rem;
    font-weight: 500;
}
.article .article-content ol li,
.article .article-content ul li {
    list-style: disc;
}

.article.page .wrap {
/*    background: url(/img/skin/bg/paper-bg.jpg);
    padding: 2rem;
    border: 1px solid #ddd;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
    opacity: .85;
    min-height: 60rem;*/
}
.article.page .breadcrumb .wrap {
    background: none;
    box-shadow: none;
    border: none;
    padding: 0;
    min-height: initial;
}
.article.page .paper-bg-standard {
    margin-top: 2rem;
}
.article.page .paper-bg-standard img.tl,
.article.page .paper-bg-standard img.tr,
.article.page .paper-bg-standard img.bl,
.article.page .paper-bg-standard img.br {
    margin-bottom: 0;
    width: initial;
}
    .article.page .headline img {
        margin-bottom: 0;
        width: initial;
    }

@media (max-width: 767px) {
    .page.news .newslist .news-item-grid {
        grid-template-columns: 1fr;
    }
    .newslist .news-item-grid img {
        width: 100%;
        object-fit: cover;
    }
    .newslist .news-item-grid img {
        width: 100%;
        object-fit: cover;
    }
    .article-content .video-wrapper {
        width: 100%;
    }
    .article-content .video-wrapper iframe {
        width: 100%;
    }
}

/* Newsletter Signup
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.newsletter {
    padding-top: 0 !important;
    padding-bottom: 6rem !important;
}
    .newsletter .paper-bg-standard {
        width: 50%;
        margin: 0 auto;
    }
    .newsletter form {
        display: flex;
        max-width: initial;
        margin: 0 auto;
        justify-content: center;
    }
    .newsletter input[type=email]  {
        border: 1px solid #ccc !important;
        min-width: 30rem;
    }
.newsletter button.tape-button {
    margin: -3px 0 0 0;
}

@media (max-width: 1023px) {
    .newsletter .paper-bg-standard {
        width: 100%;
    }
    .newsletter input[type=email] {
        min-width: initial;
        padding: .6rem 1rem;
    }
}


/* Pager
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.pager .headline {
    font-family: 'Special Elite Regular';
    font-size: 2rem;
}
.pager .headline > div {
    padding: 1rem 2rem 0 3rem;
}
.pager a {
    font-family: 'Special Elite Regular';
    font-size: 2rem;
    color: #000;
    margin: 0 .5rem;
}
.pager > img {
    height: initial;
    width: initial;
}
.pager > div:not(.nh) {
    background: none;
    color: #000;
    border-radius: 0;
}
.pager .headline div > a:hover {
    background: none;
    color: var(--accent-color);
}

.pager > div:hover a {
    color: #000;
}
.pager div.current {
    position: relative;
    margin: 0 .5rem;
    background: none;
}
    .pager div.current img {
        position: absolute;
        height: 28px !important;
        width: 28px !important;
        max-width: initial;
        left: -.9rem;
    }
    .pager div.current.two-digit img {
        height: 32px !important;
        width: 42px !important;
        top: -2px;
    }
    .pager div.current.three-digit img {
        height: 35px !important;
        width: 54px !important;
        top: -4px;
    }
.pager .nh {
    margin: 0 .5rem;
    background: none;
}
@media (max-width: 550px) {
    .pager .headline {
        font-family: Poppins;
        font-size: 1.6rem;
        margin: 0 0.2rem;
    }
    .pager a {
        font-family: Poppins;
        font-size: 1.6rem;
        margin: 0 0.2rem;
    }
    .pager .headline > img {
        display: none;
    }
    .pager .headline > div {
        padding: 1rem 1rem 0 1rem;
    }
    .pager div.current.three-digit img {
        width: 44px !important;
    }
    .pager .nh {
        margin: 0 0.2rem;
        background: none;
    }
    .pager div.current img {
        left: -1.1rem;
    }
}

/* Login/Register Page */
.login .login-container {
    padding: 3rem 0;
    max-width: 45rem;
}
    .login .login-container .login-box {
        background: url(/img/skin/bg/paper-bg.jpg);
        border: 1px solid #ddd;
        box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
        position: relative;
    }
        .login .login-container .login-box .tape {
            position: absolute;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
            .login .login-container .login-box .tape.top {
                top: -1.6rem;
            }

.login.page input[type="email"],
.login.page input[type="date"],
.login.page input[type="number"],
.login.page input[type="search"],
.login.page input[type="text"],
.login.page input[type="tel"],
.login.page input[type="url"],
.login.page input[type="password"],
.login.page textarea,
.login.page select {
    border: 1px solid #e3e3e3;
    margin-bottom: 1rem;
    width: 100%;
}

/* Login/Register AZURE TEMPLATE Page */
.login.template.page {
    min-height: calc(100vh);
    padding-top: 10rem;
}
    .login.template.page .headline {
        margin-top: 10rem;
    }
    .login.template.page .login-container .login-box h1 {
        font-family: 'Special Elite Regular';
        font-size: 2.8rem;
        font-weight: 600;
    }
    .login.template.page .login-container .login-box h2 {
        font-family: Poppins;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .login.template.page .login-container .error {
        background-color: #ff0000;
        color: #fff;
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    .login.template.page .login-container .intro {
        font-family: Poppins;
        font-size: 1.8rem;
        font-weight: 600;
    }
    .login.template.page .login-container .error p {
        margin: 0;
    }

    .login.template.page .login-container .login-box ul {
        margin: 0;
    }
        .login.template.page .login-container .login-box ul li {
            list-style: none;
        }
    .login.template.page .login-container .login-box label {
        margin: 0;
    }

    .login.template.page input[type="email"],
    .login.template.page input[type="date"],
    .login.template.page input[type="number"],
    .login.template.page input[type="search"],
    .login.template.page input[type="text"],
    .login.template.page input[type="tel"],
    .login.template.page input[type="url"],
    .login.template.page input[type="password"],
    .login.template.page textarea,
    .login.template.page select {
        border: 1px solid #e3e3e3;
        margin-bottom: 1rem;
        width: 100%;
    }
    .login.template.page .login-container button {
        background-color: #2fa9d2;
        border-color: #2695bb;
    }
        .login.template.page .login-container button:hover {
            background-color: #1fb5e9;
            border-color: #1c6d89;
        }
    .login.template.page .login-container .divider h2 {
        font-family: Poppins;
        font-size: 1.8rem;
        font-weight: 600;
        margin: 1rem 0 1rem 0;
    }
    .login.template.page .login-container .create a {
        display: inline-block;
        margin-left: 0.5rem;
        font-weight: 600;
    }
    .login.template.page .login-container .helpLink {
        display: none;
    }
    .login.template.page .login-container .entry-item {
        position: relative;
    }
        .login.template.page .login-container .entry-item .error {
            background-color: #ff0000;
            color: #fff;
            padding: 0 1rem;
        }
        .login.template.page .login-container .entry-item .error p {
            margin: 0;
        }
        .login.template.page .login-container .entry-item a#forgotPassword {
            position: absolute;
            bottom: -1.2rem;
        }
    .login.template.page .login-container .entry .buttons {
        margin: 2rem 0;
    }
.login.template.page button[disabled], html input[disabled] {
    cursor: default;
    background-color: #e7e7e7;
}

    .login.template.page .login-container button {
        margin-right: .5rem;
    }
    .login.template.page .login-container .sendCode,
    .login.template.page .login-container .verifyCode,
    .login.template.page .login-container .sendNewCode,
    .login.template.page .login-container .changeClaims {
        background-color: #0a4799;
        border-color: #0a4799;
    }
        .login.template.page .login-container .sendCode:hover {
            background-color: #013478;
            border-color: #000f24;
        }
    .login.template.page .login-container #cancel {
        background-color: #5e5e5e;
        border-color: #404040;
    }

.page.register {
    min-height: 124rem;
}

.body.registerPage {
    background: url(/img/skin/bg/bg-all-sides-no-moon-short.jpg) no-repeat;
}

.register {
    
}
.register .register-container-grid {
    padding: 0;
}
.register .headline {
    margin: 6rem 0 3rem 0;
}

    .register .register-container-grid .register-box {
        background: none;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }
    .register .fan-club-benefits .benefits-grid .benefit-item {
        font-size: 1.6rem;
        background: none;
        padding: 0;
        margin-bottom: 0;
        border-radius: 0;
        border: none;
        font-weight: 500;
    }
    .register .fan-club-benefits .benefits-grid .benefits {
        padding: 0 5rem 2rem 2rem;
    }
    .register .register-container-grid .answer-buttons {
        display: flex;
        align-items: center;
    }
    .register.fanclub .register-container-grid {
        padding: 0 0 10rem 0;
    }
        .register.fanclub .register-container-grid .register-box.register-form-box {
            background: url(/img/skin/bg/paper-bg.jpg);
        }
.register-container-grid.second .fan-club-benefits .benefits-grid {
    grid-template-columns: 1fr;
}
    .register-container-grid.second .fan-club-benefits .benefits-grid > div:nth-child(2) {
        margin-left: 0;
    }
    .register-container-grid.second .fan-club-benefits .benefits-grid > div:nth-child(1) img {
        max-width: 37rem;
        margin: 0 0 3rem -6rem;
    }

.register-container-grid.free {
    padding: 0 35rem;
}
    .register-container-grid.free .register-box.register-form-box {
        background: url(/img/skin/bg/paper-bg.jpg);
    }
        .register-container-grid.free .fan-club-benefits {
            display: none;
        }

.register.page .benefits-grid {
    grid-template-columns: 1fr;
    padding-top: 0;
}
    .register.page {
        padding-bottom: 35rem !important;
    }
.register.page .benefits-grid > div:nth-child(1){
    margin-left: -8.5rem;
}
    .register.page .benefits-grid > div:nth-child(1) img {
        max-width: 50rem;
    }
    .register.page .benefits-grid > div:nth-child(2) {
        margin-left: 0;
    }
        .register.page #response-container {
            color: #ff0000;
            font-weight: 500;
            font-size: 1.6rem;
        }

/* Register Success Page */
.register.page .register-success {
    text-align: center;
    width: 50%;
    margin: 10rem auto 0 auto;
}
        .register.page .register-success h4 {
            font-family: 'Special Elite Regular';
            font-size: 3rem;
        }
    .register.page .register-success p {
        font-size: 1.6rem;
    }
    .register.page .register-success .buttons {
        display: flex;
        justify-content: center;
    }

/* Profile Page */
.sub-nav {
    background: initial;
}
.profile .sub-nav {
    padding-bottom: 0;
    margin-bottom: -2rem;
}
.profile .k-form {
    box-shadow: none;
    background: url(/img/skin/bg/paper-bg.jpg);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
}
.sub-nav ul {
    margin-left: .5rem;
}
.profile .sub-nav ul li {
    border: none;
    background-color: initial;
    text-align: left;
    margin-left: -1.5rem;
}
    .profile .sub-nav ul li.active {
        border: none;
    }
.profile .tape-button.sm a {
    font-size: 1.4rem;
}
.profile .tape-button.sm.black .content > div {
    padding: 1.1rem 0 0 0;
    color: #fff;
}
.profile legend {
    font-size: 1.6rem;
    font-family: 'Special Elite Regular';
    font-weight: 600;
}

.profile .profile-box {
    box-shadow: none;
    background: url(/img/skin/bg/paper-bg.jpg);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
}
    .profile .profile-box h1 {
        margin: 1rem 0 1rem;
        font-size: 1.8rem;
        font-family: 'Special Elite Regular';
        font-weight: 600;
        color: #000;
    }
    .profile .profile-box .item-box h2 {
        font-family: 'Poppins';
    }
    .profile .profile-box .item-box h3 {
        font-family: 'Poppins';
    }
    .profile .profile-box .item-box h4 {
        font-family: 'Poppins';
        color: var(--accent-color);
    }
.profile .order-item {
    background: none;
    background-color: #fff;
}

.profile .profile-box #add-address-form {
    background: none;
    background-color: #fff;
}

.profile .additional-settings {
    position: relative;
    background: url(/img/skin/bg/paper-bg.jpg);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
    padding: 2rem 2rem 4rem;
    display: none;
}
    .profile .additional-settings .tape {
        position: absolute;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -1.6rem;
    }
    .profile .additional-settings h1 {
        font-family: 'Special Elite Regular';
        font-size: 1.8rem;
        font-weight: 600;
        margin: 0;
    }
.profile .profile-box .item-box {
    max-width: 55rem;
}
    .profile .profile-box .item-box .credit-card {
        grid-template-columns: .75fr 2fr 1fr;
        grid-gap: 0.5rem;
    }
    .profile .profile-box .item-box .address .actions {
        width: 100%;
    }
    .profile .profile-box .item-box .address .actions button {
        width: 100%;
        border: none;
    }

.profile #add-address-form {
    margin: 1rem 0 0;
}
.profile #add-address-form {
    margin: 1rem 0 0;
}

@media (max-width: 1023px) {
    .profile .sub-nav ul {
        display: none;
    }
    .profile .additional-settings {
        display: block;
    }
        .profile .additional-settings .sub-nav {
            display: block;
        }
        .profile .additional-settings .sub-nav .wrap {
            padding: 0 !important;
        }
        .profile .additional-settings .sub-nav ul {
            display: flex;
            flex-direction: column;
            margin: 4rem 0 0 0;
        }
            .profile .additional-settings .sub-nav ul li {
                margin-left: 0;
            }
        .profile .additional-settings .sub-nav ul li a img {
            display: none;
        }
        .profile .additional-settings .tape-button.sm .content > div {
            color: #2ea8d1;
            text-decoration: underline;
            font-weight: 600;
            font-family: 'Special Elite Regular';
        }
    .profile .additional-settings .tape-button.sm.black .content {
        background: none;
        height: initial !important;
    }
}

@media (max-width: 550px) {
    .profile .profile-box .item-box .address {
        grid-template-columns: 1fr;
    }
        .profile .profile-box .item-box .address .actions {
            justify-self: initial;
        }
    .profile .profile-box .item-box .address button {
        width: 100%;
        margin-top: 1.5rem;
        padding: initial;
    }
    .profile .profile-box #add-address-form {
        margin: -7.5rem -2rem -3rem -2rem;
        z-index: 100;
        position: relative;
    }
    .profile .profile-box .item-box .credit-card {
        grid-template-columns: 1fr;
    }
        .profile .profile-box .item-box .credit-card > div:nth-child(2) {
            justify-self: initial;
        }
        .profile .profile-box .item-box .credit-card .actions div {
            width: 100%;
            margin-top: 1.5rem;
            padding: initial;
        }
    .k-form .k-form-fieldset {
        margin: 0;
    }
    .profile .profile-box h1 {
        margin: 0 0 1rem;
    }
}

/* Tour Page */

.page.tours {
    background: none !important;
}
    .page.tours .tours {
        background: none !important;
        padding: 7rem 0;
    }

    .page.tours .tour-selector {
        display: flex;
        align-items: center;
        font-family: 'Special Elite Regular';
        text-transform: uppercase;
        font-size: 1.4rem;
        max-height: 3.3rem;
    }
        .page.tours .tour-selector > div:nth-child(1) {
            background-color: #fff;
            color: #000;
            font-size: 1.8rem;
            font-weight: 600;
            padding: .4rem 1.5rem 0 1.5rem;
        }
        .page.tours .tour-selector > select {
            background-color: #000;
            color: #fff;
            border-radius: 0;
            padding: 1rem 1.5rem 0.7rem 1.5rem;
        }
        .page.tours .tour-selector > select > option {
            padding: 1rem 1.5rem 0.7rem 1.5rem;
        }
        .page.tours .tour-selector #band {
            min-width: 40rem;
            margin-right: 1rem;
        }
        .page.tours .tour-selector #page-selector {
            min-width: 19rem;
            background-color: #bc805c;
        }
        .page.tours .tour-dates {
            width: 100%;
            background-color: #fff;
            border: 1px solid #aaa;
            padding: 3rem 5rem;
            position: relative;
            margin-top: 3rem;
            min-height: 25rem;
        }
    .page.tours .no-tours {
        margin-top: 7rem;
    }
            .page.tours .tour-dates .tl {
                position: absolute;
                top: -2rem;
                left: -2rem;
            }
            .page.tours .tour-dates .tr {
                position: absolute;
                top: -2rem;
                right: -2rem;
            }
            .page.tours .tour-dates .bl {
                position: absolute;
                bottom: -2rem;
                left: -2rem;
            }
            .page.tours .tour-dates .br {
                position: absolute;
                bottom: -2rem;
                right: -2rem;
            }
    .page.tours .tour-date-item {
        display: block;
        text-align: center;
        padding: 0;
    }
        .page.tours .tour-date-item.show {
            display: block;
        }
        .page.tours .tour-date-item.hide {
            display: none;
        }
        .page.tours .tour-date-item .date {
            width: 100%;
            font-size: 1.8rem;
        }
        .tours .tour-date-item .info {
            width: 65%;
            margin: 0 auto;
        }
        .page.tours .tour-date-item .info h4 {
            font-family: 'DS Moster';
            font-size: 3.2rem;
        }
        .page.tours .tour-date-item .info h6 {
            font-family: Poppins;
            font-size: 1.8rem;
            color: #000;
            font-weight: 600;
            margin-top: -1rem;
        }
        .page.tours .tour-date-item .info h5 {
            font-family: Poppins;
            font-size: 1.6rem;
            color: #000;
        }
.page.tours .tour-date-item .info h5 p {
    margin-bottom: 1rem;
}
.page.tours .tour-date-item .broken-line {
    margin: 2rem 0;
}
.page.tours .tour-date-item .tickets {
    width: 100%;
    justify-content: center;
}
.page.tours .tour-date-item .sold-out {
    font-size: 3.2rem;
    color: var(--accent-color);
    margin-top: .5rem;
}

/* Setlist Page */

.page.tours .setlist-content {
    display: none;
}

.setlistLandingPage .modal-content {
    background: url('/img/skin/bg/paper-setlist-bg.jpg') no-repeat;
    background-size: cover;
}

.setlistLandingPage .modal-content .tl {
    position: absolute;
    top: -2rem;
    left: -2rem;
}

.setlistLandingPage .modal-content .tr {
    position: absolute;
    top: -2rem;
    right: -2rem;
}

.setlistLandingPage .modal-content .bl {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
}

.setlistLandingPage .modal-content .br {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
}

.setlistLandingPage .setlist-content .top {
    display: flex;
    font-family: 'Special Elite Regular';
    font-size: 1.4rem;
    font-weight: 600;
}
.setlistLandingPage .setlist-content .top .date {
    margin-right: 6rem;
    margin-bottom: 1.5rem;
}
.setlistLandingPage .setlist-content .title h4 {
    font-family: 'Special Elite Regular';
    font-size: 2.2rem;
    margin-bottom: 0;
    text-transform: none;
}
.setlistLandingPage .setlist-content .title img {
    margin-top: -1.5rem;
}
.setlistLandingPage .setlist-content .setlist-text ol {
    margin: 0 0 1.5rem 2rem;
}
    .setlistLandingPage .setlist-content .setlist-text ol li {
        font-weight: 500;
        margin-bottom: 0;
    }
.setlistLandingPage .setlist-content .encore-text {
    position: relative;
}
    .setlistLandingPage .setlist-content .encore-text h4 {
        font-family: 'Special Elite Regular';
        font-size: 1.6rem;
        color: #003366;
        font-weight: 600;
        margin-left: 4rem;
        margin-top: 3rem;
    }
    .setlistLandingPage .setlist-content .encore-text img {
        position: absolute;
        margin-left: 2rem;
        top: -1.5rem;
        left: 0;
    }
.setlistLandingPage .setlist-content .setlist-text h3 {
    font-family: 'Special Elite Regular';
    font-size: 1.6rem;
    margin: 2rem 0 0 2rem;
    font-weight: 600;
}
.setlistLandingPage .setlist-content .setlist-text .notes {
    margin: 1rem 0 0 2rem;
    font-weight: 500;
}

.page.tours .tour-selector.filters {
    margin-top: 2rem;
}

.page.tours .tour-selector.filters #year {
    margin-right: 1rem;
}
    .page.tours .tour-selector.filters select {
       min-width: 15rem;
    }
@media (max-width: 1023px) {
    .toursLandingPage, .setlistLandingPage {
        background: url(/img/skin/bg/bg-repeating.jpg) repeat-y !important;
    }
}
@media (max-width: 767px) {
    .page.tours .tour-selector #band {
        min-width: initial;
    }
}
@media (max-width: 550px) {
    .page.tours .tour-selector > div:nth-child(1) {
        width: 8rem;
        margin: 0 0 1rem 0;
    }
    .page.tours .tour-selector #band {
        width: calc(100% - 8rem);
        margin: 0 0 1rem 0;
    }
    .page.tours .tour-selector {
        flex-wrap: wrap;
    }
    .page.tours .tour-dates {
        margin-top: 6rem;
        padding: 3rem 3rem;
    }
    .page.tours .tour-selector #page-selector {
        width: 100%;
    }
    .tours .tour-date-item .info {
        width: 100%;
    }
    .page.tours .tour-date-item .date {
        font-size: 1.4rem;
    }
    .page.tours .tour-date-item .info h4 {
        font-family: 'Special Elite Regular';
        font-weight: 600;
        font-size: 2rem;
        line-height: 2.4rem;
        margin-bottom: 1rem;
    }
    .page.tours .tour-date-item .info h6 {
        margin: .5rem 0;
    }
    .page.tours .tour-date-item .info h5 p {
        margin-bottom: 0;
    }
    .page.tours .tour-date-item .tickets {
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    .page.tours .tour-date-item .tickets .tape-button {
        margin-bottom: .5rem;
    }
    .page.tours .tours {
        padding: 0 0 5rem 0;
    }
    .setlistLandingPage .page.tours .tour-selector > div:nth-child(1) {
        width: 100%;
    }
    .setlistLandingPage .page.tours .tour-selector #month,
    .setlistLandingPage .page.tours .tour-selector #year {
        width: calc(50% - .5rem);
    }
    .modal-content {
        width: 85%;
    }
}
@media (max-width: 320px) {
    .setlistLandingPage .page.tours .tour-selector #month,
    .setlistLandingPage .page.tours .tour-selector #year {
        width: calc(100% - .5rem);
        margin: 0 0 1rem 0;
    }
    .setlistLandingPage  .page.tours .tour-dates {
        margin-top: 11rem;
    }
}

/* Music Page */
.page.music {
    padding-bottom: 10rem;
    /*min-height: 1000rem;*/
}
.page.music .std-pad {
    padding: 5rem 0;
}
.page.music .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8rem;
}
    .page.music .filters .album-category {
        background-color: #000;
        color: #fff;
        font-family: 'Special Elite Regular';
        font-size: 1.3rem;
        text-transform: uppercase;
        padding: 1rem 2rem .5rem 2rem;
        border-radius: 2rem;    
        margin: 0 .5rem 1rem;
        cursor: pointer;
        transition: all .25s;
    }
        .page.music .filters .album-category:hover {
            background-color: #fff;
            color: #000;
            transition: all .25s;
        }
    .page.music .filters .album-category.active {
        background-color: #fff;
        color: #000;        
    }
        .page.music .mobile-filters  {
            display: none;
        }
.albums .albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 5rem;
}
.albums .album-grid {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    margin-bottom: 0;
}
    .albums .album-grid > div:nth-child(1) img {
        box-shadow: none;
        border: none;
    }
    .albums .album-grid h5 {
        font-size: 1.2rem;
        font-weight: 600;
        font-family: Poppins;
        margin: 0 0 0;
        color: var(--accent-color);
    }
    .albums .album-grid h1 {
        font-size: 1.6rem;
        font-family: Poppins;
        font-weight: 600;
        margin: 0 0 0;
        text-transform: none;
        color: #000;
    }

/* Music Page - Detail page */
.album .album-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    grid-gap: 2rem;
    padding: 0 15rem;
}
    .album .album-detail-grid > div:nth-child(2) {
        box-shadow: -1px 6px 11px -5px #333;
        background: url(/img/skin/bg/paper-bg.jpg);
        padding: 4rem;
        border: 1px solid #aaa;
        position: relative;
    }
        .album .album-detail-grid > div:nth-child(2) .tape {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }
            .album .album-detail-grid > div:nth-child(2) .tape.top {
                top: -1.6rem;
            }
            .album .album-detail-grid > div:nth-child(2) .tape.bottom {
                bottom: -1.6rem;
            }
        .album .album-detail-grid > div:nth-child(2) h6 {
            font-family: 'Special Elite Regular';
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
        }
            .album .album-detail-grid > div:nth-child(2) img.line {
            margin: -2rem 0 0 -.5rem;
        }
        .album .album-detail-grid > div:nth-child(2) h3 {
            font-family: 'Special Elite Regular';
            font-size: 2.4rem;
            font-weight: 600;
        }
    .album .album-detail-grid .social-icon-grid {
        position: absolute;
        top: 4rem;
        right: 4rem;
    }
        .album .album-detail-grid .social-icon-grid ul {
            display: flex;
        }
        .album .album-detail-grid .social-icon-grid li {
            list-style: none;
            margin: 0 2px;
            background-color: #3c3c3c;
            border-radius: 100%;
            height: 25px;
            width: 25px;
            position: relative;
            transition: .25s;
        }
        .album .album-detail-grid .social-icon-grid li:hover {
            background-color: var(--accent-color);
            transition: .25s;
        }
            .album .album-detail-grid .social-icon-grid li a {
                font-size: 1.4rem;
                color: #fff;
                position: absolute;
                webkit-transform: translate(-52%, -52%);
                transform: translate(-52%, -52%);
                top: 52%;
                left: 52%;
                display: inline-block;
            }
@media (max-width: 1919px) {
    
}
@media (max-width: 1023px) {
    .page.music .filters {
        display: none;
    }
    .page.music .mobile-filters {
        display: block;
        display: flex;
        align-items: center;
        font-family: 'Special Elite Regular';
        text-transform: uppercase;
        font-size: 1.4rem;
        max-height: 3.3rem;
    }
        .page.music .mobile-filters > div:nth-child(1) {
            background-color: #fff;
            color: #000;
            font-size: 1.8rem;
            font-weight: 600;
            padding: 0.4rem 1.5rem 0 1.5rem;
        }
        .page.music .mobile-filters > select {
            background-color: #000;
            color: #fff;
            border-radius: 0;
            padding: 1rem 1.5rem 0.7rem 1.5rem;
        }
    .albums .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .album .album-detail-grid {
        padding: 0;
    }

}
@media (max-width: 767px) {
    .albums .albums-grid {
        grid-template-columns: 1fr;
    }
    .albums .album-grid > div:nth-child(1) img {
        max-width: 100%;
    }
    .album .album-detail-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 320px) {
    .page.music .mobile-filters > div:nth-child(1) {
        width: 100%;
    }
    .page.music .mobile-filters > select {
        width: 100%;
    }
}

/* Photo Galleries */
.page.galleries {
    padding-bottom: 15rem;
}
    .page.galleries .hero-slide {
        box-shadow: 0 0 18px 0px rgb(0 0 0 / 65%);
    }

.galleries .galleries-grid .gallery-thumb .thumbnail-one,
.galleries .galleries-grid .gallery-thumb .thumbnail-two,
.galleries .galleries-grid .gallery-thumb .thumbnail-three,
.galleries .galleries-grid .gallery-thumb .thumbnail-four {
    box-shadow: 0 0 18px 0px rgb(0 0 0 / 65%);
}
.galleries .galleries-grid .gallery-thumb h3 {
    color: #000;
    font-weight: 600;
    font-family: 'Special Elite Regular';
}
.gallery .headline img {
    width: initial;
    object-fit: initial;
    max-height: initial;
}
.breadcrumb {
    background: none;
}
    .breadcrumb a {
        font-weight: 500;
        font-size: 1.8rem;
        /*background-color: rgb(0 0 0 / 45%);*/
        padding: .5rem 1rem;
        color: #000;
        /*border: 1px solid #ababab;*/
    }
        .breadcrumb a:hover {
            /*background-color: #000;*/
        }
.gallery .photo-gallery img {
    box-shadow: 0 0 5px 0px rgb(0 0 0 / 65%);
}

@media (max-width: 550px) {
    .breadcrumb a {
        font-size: 1.4rem;
    }
    .gallery .headline {
        margin-bottom: 2rem;
    }
    page.gallery {
        padding-bottom: 10rem;
    }
}
@media (max-width: 424px) {
    .breadcrumb a {
        font-size: 1.4rem;
        font-family: Poppins;
        letter-spacing: 0px;
    }
}
@media (max-width: 374px) {
    .breadcrumb {
        margin-left: -3rem !important;
    }
    .breadcrumb a {
        font-size: 1.3rem;
        letter-spacing: 0px;
    }
}

/* Video Gallery */
.page.videos {
    padding-bottom: 10rem;
}
.videos .videos-grid {
    margin: 5rem 0;
}
.videos .videos-grid h5 {
    font-size: 1.4rem;
    margin: 0;
    font-family: Poppins;
    text-transform: none;
    font-weight: 600;
    color: var(--accent-color);
}
.videos .videos-grid h1 {
    font-family: Poppins;
    margin: 0 0 2rem 0;
    font-weight: 700;
    letter-spacing: normal;
    font-size: 1.6rem;
    text-transform: none;
    color: #000;
}
.video .video-info h1 {
    text-align: left;
    margin: 0;
    font-size: 2.8rem;
    font-weight: 600;
    font-family: 'Special Elite Regular';
}
.video .video-info h5 {
    font-weight: 600;
    font-size: 1.6rem;
    font-family: Poppins;
    color: #000;
}
@media (max-width: 767px) {
    .video .video-info h1 {
        font-size: 1.8rem;
    }
    .video .video-info h5 {
        font-size: 1.4rem;
    }
}

/* Page Nav */
.sub-nav .items {
    background-color: rgb(0 0 0 / 45%);
    padding: 1rem 1rem .5rem 1rem;
    width: fit-content;
    margin: 0 auto;
}
    .sub-nav .items a {
        font-family: Poppins;
        font-size: 1.5rem;
        margin: 0 1rem;
        color: #dbdbdb;
        text-transform: uppercase;
    }
        .sub-nav .items a.active {
            color: #b4d9ff;
            font-weight: 500;
        }
        .sub-nav .items a:hover {
            color: #b4d9ff;
        }

/* Merch Slider */
.merch-slide {
    padding: 1.5rem;
    margin: 1rem;
    box-shadow: 0 0px 10px 0 #cecece;
    box-shadow: -1px 6px 11px -5px #333;
    border: 1px solid #fff;
    transition: border .5s;
    background: url(/img/skin/bg/paper-bg.jpg);
    border: 1px solid #ddd;
    min-height: 40rem;
}
    .merch-slide h5 {
        color: #000;
        font-family: Poppins;
        margin: 1rem 0 0 0;
        font-weight: 600;
        text-align: center;
        font-size: 1.8rem;
        line-height: 2rem;
    }
    .merch-slide h6 {
        color: #000;
        font-family: Poppins;
    }

/* Warehouse  */
.page.fanclub {
   padding-bottom: 15rem;
}
.sub-nav {
    margin: -4.2rem 0 4rem 0;
}
.sub-nav .items {
    display: flex;
    justify-content: center;
}
    .page.fanclub section .std-pad {
        padding: 5rem 0;
    }

    .page.fanclub .slider-container {
        padding-bottom: 5rem;
        background-position-y: 36%;
    }

    .page.fanclub .newslist.latest-news .latest-news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .page.fanclub .newslist .latest-news-grid .news-item-grid {
        display: grid;
        border-bottom: 1px solid rgb(204 204 204 / 40%);
    }
/*        .page.fanclub .newslist .latest-news-grid .news-item-grid img {
            height: 16rem;
            width: 27rem;
        }*/
    .page.fanclub .newslist .news-item-grid h3 {
        margin: 0 0 .5rem 0;
    }
    .page.fanclub .newslist .news-item-grid p {
        margin-bottom: 1rem;
    }
    .page.fanclub .videos h3 {
        margin: 0;
    }
    .page.fanclub .videos .videos-grid {
        margin: 0;
    }
    .page.fanclub .go-to {
        margin: 0 auto;
    }
    .page.fanclub .galleries h3 {
        margin: 0;
    }
    .page.fanclub .featured-merch h3 {
        margin: 0;
    }

.contests .contest-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4rem;
    margin-top: 2rem;
    position: relative;
}

    .contests .contest-grid .contest-item {
        margin: 0;
        background: url(/img/skin/bg/paper-bg.jpg);
        border: 1px solid #fff;
        border-radius: 0;
        position: relative;
    }
        .contests .contest-grid .contest-item:nth-child(even) {
            /*transform: rotate(1deg);*/
            transition: all .5s;
        }
/*            .contests .contest-grid .contest-item:nth-child(even):hover {
                transform: rotate(0deg);
                transition: all .5s;
            }*/
        .contests .contest-grid .contest-item:nth-child(odd) {
            /*transform: rotate(-2deg);*/
            transition: all .5s;
        }
/*            .contests .contest-grid .contest-item:nth-child(odd):hover {
                transform: rotate(0);
                transition: all .5s;
            }*/
/*        .contests .contest-grid .contest-item:nth-child(3n) {
            transform: rotate(0deg)
        }
        .contests .contest-grid .contest-item:nth-child(4n) {
            transform: rotate(-2deg)
        }*/
        .contests .contest-grid .contest-item .tl {
            position: absolute;
            top: -2rem;
            left: -2rem;
        }
        .contests .contest-grid .contest-item .tr {
            position: absolute;
            top: -2rem;
            right: -2rem;
        }
        .contests .contest-grid .contest-item .bl {
            position: absolute;
            bottom: -2rem;
            left: -2rem;
        }
        .contests .contest-grid .contest-item .br {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
        }
        .contests .contest-grid .contest-item h4 {
            font-family: 'Special Elite Regular';
            font-size: 1.8rem;
            font-weight: 600;
            text-align: center;
            margin: 0;
            padding: 2rem;
        }
        .contests .contest-grid .contest-item .contest-info {
            font-weight: 500;
            padding: 2rem 1rem;
        }
        .contests .contest-grid .contest-item .contest-interaction {
            display: flex;
            justify-content: center;
            flex-direction: column;
            margin-bottom: 2rem;
        }
        .contests .contest-grid .contest-item .contest-interaction h5 {
            font-family: 'Special Elite Regular';
            font-size: 1.6rem;
        }

        .contests .contest-grid .contest-item .contest-winner-details p {
            font-weight: 500;
        }
        .contests .contest-grid .contest-item .contest-winner-details img {
            max-width: 30rem;
            margin-right: 1rem;
        }
        .contests .contest-grid .contest-item .contest-winner-details .winner-photos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }



        @media (max-width: 1023px) {
            .contests .contest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {

}
@media (max-width: 550px) {
    .contests .contest-grid {
        grid-template-columns: 1fr;
    }
    .page.fanclub .newslist .latest-news-grid .news-item-grid {
        grid-template-columns: 1fr;
    }
        .page.fanclub .newslist .latest-news-grid .news-item-grid img {
            height: 30rem;
            width: 100%;
        }
}

/* Photo Downloads Page */
.page.photo-downloads {
    padding-bottom: 15rem;
}

    .page.photo-downloads .download-subtitle {
        margin: 4rem 0;
        font-size: 2.4rem;
        font-weight: 500;
        text-transform: uppercase;
    }

.page.photo-downloads .download {
    padding: 0 10rem;
}
    .page.photo-downloads .broken-line {
        margin: 5rem 0 0 0;
    }
    .page.photo-downloads .download h4 {
        font-size: 3rem;
        font-weight: 600;
        color: var(--accent-color);
        text-align: center;
        font-family: 'Special Elite Regular';
        margin-top: 5rem;
    }
    .page.photo-downloads .download .photo-captions {
        font-size: 1.6rem;
        font-weight: 600;
        text-align: center;
        margin: 2rem 0 1rem 0;
    }
    .page.photo-downloads .download .downloads-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .page.photo-downloads .download .downloads-grid > div {
        margin: 2rem 3rem;
    }
        .page.photo-downloads .download .downloads-grid > div .tape-button {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

@media (max-width: 767px) {
    .page.photo-downloads .download {
        padding: 0;
    }

}

/* Music Downloads Page */
.page.music-download {
    padding-bottom: 15rem;
}
    .page.music-download .download-info {
        background-color: #fff;
        color: #000;
        padding: 2rem 5rem;
        margin-top: 5rem;
        box-shadow: -1px 6px 11px -5px #333;
        position: relative;
        background: url(/img/skin/bg/paper-bg.jpg);
    }
        .page.music-download .download-info .tl {
            position: absolute;
            top: -2rem;
            left: -2rem;
        }

        .page.music-download .download-info .tr {
            position: absolute;
            top: -2rem;
            right: -2rem;
        }

        .page.music-download .download-info .bl {
            position: absolute;
            bottom: -2rem;
            left: -2rem;
        }

        .page.music-download .download-info .br {
            position: absolute;
            bottom: -2rem;
            right: -2rem;
        }
    .page.music-download .download-info h3 {
        text-align: center;
        font-family: 'Special Elite Regular';
        margin-top: 3rem;
    }
        .page.music-download .download-info p {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
        }
        .page.music-download .download-info p a {
            color: var(--accent-color);
        }
        .page.music-download .download-info .downloads h3 {
            margin-bottom: 1rem;
        }
        .page.music-download .download-info .download-buttons {
            display: flex;
            margin: 2rem 0;
            justify-content: center;
            flex-wrap: wrap;
        }

@media (max-width: 767px) {
    .page.music-download .download-info {
        padding: 2rem;
    }
        .page.music-download .download-info .download-buttons .tape-button {
            margin-bottom: 2rem;
        }
}
@media (max-width: 1023px) {
    .sub-nav {
        display: none;
    }
}


/* Support Page */

.supportPage {
    background: url('/img/skin/bg/bg-repeating.jpg') repeat-y;
    background-color: #f8ecd4;
}
.page.support {
    padding-bottom: 25rem;
}
    .page.support p {
        font-weight: 500;
        font-size: 1.6rem;
    }
    .page.support ul {
        margin: -2rem 0 2rem 2rem;
    }
.page.support ul li {
    list-style: disc;
    font-size: 1.6rem;
}
.page.support .headline {
    margin-bottom: 3rem;
}
.page.support .page-text {
    font-weight: 500;
}
    .page.support .common-questions {
        margin-top: 5rem;
    }
.page.support .common-question-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    margin-bottom: 3rem;
}
    .page.support .common-question-grid > div {
        background: url(/img/skin/bg/paper-bg.jpg);
        padding: 3rem 1.5rem;
        border: 1px solid #ddd;
        box-shadow: -1px 6px 11px -5px #333;
        border-radius: 5px;
    }
    .page.support .common-question-grid > div h5 {
        font-family: Poppins;
        font-size: 1.8rem;
        font-weight: 600;
    }
        .page.support .common-question-grid > div ol,
        .page.support .common-question-grid > div ul {
            margin: -2rem 0 2rem 2rem;
        }

    .page.support .faq-items {
        background: url(/img/skin/bg/paper-bg.jpg);
        padding: 3rem 0;
        border: 1px solid #ddd;
        box-shadow: -1px 6px 11px -5px #333;
        border-radius: 5px;
    }
        .page.support .faq-items .cat-title {
            font-size: 2.4rem;
            font-weight: 600;
            background-color: rgb(0 0 0 / 10%);
            padding: 0.5rem 2rem;
            cursor: pointer;
            text-transform: uppercase;
            display: grid;
            align-items: center;
            grid-template-columns: 1fr 5rem;
        }
        .page.support .faq-items .cat-title > div:nth-child(2) {
            justify-self: end;
        }
        .page.support .faq-items .c-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 2rem;
            padding: 2rem;
        }
            .page.support .faq-items .c-grid > div {
                border: 1px solid #ddd;
                border-radius: 5px;
                padding: 2rem;
                background-color: #fff;
            }
        .page.support .faq-items .faq-question {
            font-size: 1.8rem;
            line-height: 2.4rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .page.support .faq-items .faq-question .faq-answer {
            margin: 0.5rem 2rem;
        }

@media (max-width: 1023px) {
    .supportPage {
        background-size: contain;
    }
    .page.support .common-question-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page.support .faq-items .c-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .page.support .common-question-grid {
        grid-template-columns: 1fr;
        margin: 0 -1.5rem 3rem -1.5rem;
    }
    .page.support .faqs {
        margin: 0 -1.5rem 3rem -1.5rem;
    }
    .page.support .faq-items .c-grid {
        grid-template-columns: 1fr;
        margin: 0 -1rem 0 -1rem;
    }
    .page.support .faq-items .cat-title {
        font-size: 1.8rem;
        line-height: 2rem;
    }
}

/* Sustainability Page */
.sustainabilityPage {
    background-size: initial;
}
.page.sustainability {
    font-size: 1.6rem;
    padding-bottom: 15rem;
}
    .page.sustainability .numbers {
        margin-top: 5rem;
    }
        .page.sustainability .numbers .numbers-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        .page.sustainability .numbers .numbers-grid > div {
            text-align: center;
            max-width: 25rem;
            display: flex;
            align-items: center;
            align-content: center;
        }
            .page.sustainability .numbers .numbers-grid > div h5 {
                font-family: 'Special Elite Regular';
                font-size: 4rem;
                line-height: 4.6rem;
                font-weight: 600;
                margin: 0;
            }
            .page.sustainability .numbers .numbers-grid > div h5 p {
                margin: 0;
                color: #000;
            }
            .page.sustainability .numbers .numbers-grid > div h6 {
                font-family: Poppins;
                font-size: 2.8rem;
                font-weight: 500;
                margin: -1.5rem 0 0 0;
            }
        .page.sustainability .numbers .info {
            margin-top: 5rem;
            font-weight: 500;
        }
            .page.sustainability .numbers .info h3 {
                text-align: center;
                font-family: 'Special Elite Regular';
                text-decoration: none;
            }
    .page.sustainability .volunteer {
        margin-top: 5rem;
        font-weight: 500;
    }
        .page.sustainability .volunteer h3 {
            text-align: center;
            font-family: 'Special Elite Regular';
            text-decoration: none;
        }

    .page.sustainability .partners h3 {
        margin-top: 5rem;
        text-align: center;
    }
    .page.sustainability .partners .partner-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 4rem;
    }
    .page.sustainability .partners .partner-grid > div {
        font-size: 1.4rem;
        font-weight: 500;
    }
        .page.sustainability .partners .partner-grid > div img:nth-child(3) {
            margin-bottom: 2rem;
        }
    .page.sustainability .program-overview {
        margin-top: 5rem;
    }
    .page.sustainability .program-overview h3 {
        text-align: left;
        font-family: 'Special Elite Regular';
        margin-bottom: 3rem;
        border-bottom: 1px solid #ccc;
    }
        .page.sustainability .program-overview .program-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 3rem;
        }
        .page.sustainability .program-overview .program-grid > div {
            
        }
            .page.sustainability .program-overview .program-grid > div h5 {
                font-family: 'Special Elite Regular';
                font-weight: 600;
                color: var(--accent-color);
            }
            .page.sustainability .program-overview .program-grid > div ul {
                margin-left: 1rem;
            }
            .page.sustainability .program-overview .program-grid > div ul li {
                list-style: none;
                font-weight: 500;
                font-size: 1.6rem;
            }
                .page.sustainability .program-overview .program-grid > div ul li::before {
                    content: "\2022"; 
                    color: var(--accent-color);
                    font-weight: bold; 
                    display: inline-block; 
                    width: 1rem;
                    margin-left: -1rem; 
                }

    .page.sustainability .big-numbers {
        margin-top: 5rem;
        font-family: Poppins;
        display: flex;
        flex-wrap: wrap;
    }
    .page.sustainability .big-numbers h3 {
        margin: 0;
        font-family: Poppins;
        color: var(--accent-color);
    }
        .page.sustainability .big-numbers p {
            margin: 0;
            color: #333;
        }
        .page.sustainability .big-numbers > div {
            border-bottom: 1px solid #ccc;
            margin-bottom: 3rem;
        }
            .page.sustainability .big-numbers > div:nth-child(1) {
                width: 100%;
            }
    .page.sustainability .big-numbers > div:nth-child(1) h3 {
        font-size: 10.5vw;
        font-weight: 500;
        text-align: center;
    }
        .page.sustainability .big-numbers > div:nth-child(1) p {
            font-size: 3.2vw;
            font-weight: 500;
            text-align: center;
            letter-spacing: 3px;
            margin-top: -2rem;
        }
            .page.sustainability .big-numbers > div:nth-child(2),
            .page.sustainability .big-numbers > div:nth-child(3) {
                width: 50%;
                display: inline-block;
                display: flex;
                align-items: center;
                grid-gap: 5rem;
                padding-bottom: 2rem;
            }
            .page.sustainability .big-numbers > div:nth-child(2) h3,
            .page.sustainability .big-numbers > div:nth-child(3) h3 {
                font-weight: 500;
                font-size: 3.5vw;
            }
                .page.sustainability .big-numbers > div:nth-child(2) p,
                .page.sustainability .big-numbers > div:nth-child(3) p {
                    font-weight: 500;
                    font-size: 1.5vw;
                    line-height: 3.2rem;
                }
            .page.sustainability .big-numbers > div:nth-child(4),
            .page.sustainability .big-numbers > div:nth-child(5) {
                width: 100%;
                display: flex;
                align-items: center;
                grid-gap: 5rem;
                padding-bottom: 2rem;
            }
            .page.sustainability .big-numbers > div:nth-child(4) h3 {
                font-weight: 500;
                font-size: 4vw;
            }
                .page.sustainability .big-numbers > div:nth-child(4) p {
                    font-weight: 500;
                    font-size: 4vw;
                    line-height: 3.2rem;
                    letter-spacing: 13px;
                }
                .page.sustainability .big-numbers > div:nth-child(5) h3 {
                    font-weight: 500;
                    font-size: 3.5vw;
                }

                .page.sustainability .big-numbers > div:nth-child(5) p {
                    font-weight: 500;
                    font-size: 3.5vw;
                    line-height: 3rem;
                    letter-spacing: 10px;
                }
            .page.sustainability .big-numbers > div:nth-child(5),
            .page.sustainability .big-numbers > div:nth-child(6) {
                border: none;
            }

    .page.sustainability .photo-galleries {
        margin-top: 5rem;
        font-family: Poppins;
    }
        .page.sustainability .photo-galleries h3 {
            text-align: center;
            font-family: 'Special Elite Regular';
            margin-bottom: 3rem;
        }
        .page.sustainability .photo-galleries .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-gap: 1rem;
        }
            .page.sustainability .photo-galleries .gallery-grid h3 {
                font-size: 1.8rem;
                text-align: left;
                font-weight: 600;
                margin-top: .5rem;
            }
            .page.sustainability .photo-galleries .gallery-grid a {
                color: #000;
            }
                .page.sustainability .photo-galleries .gallery-grid a img {
                    border: 1px solid #fff;
                    transition: border-color .5s;
                }
            .page.sustainability .photo-galleries .gallery-grid a:hover {
                color: var(--accent-color);
            }
                .page.sustainability .photo-galleries .gallery-grid a:hover img {
                    border: 1px solid var(--accent-color);
                    transition: border-color .5s;
                }

    .page.sustainability .timeline {
        margin-top: 5rem;
        font-family: Poppins;
    }
        .page.sustainability .timeline h3 {
            text-align: center;
            font-family: 'Special Elite Regular';
            margin-bottom: 3rem;
        }
        .page.sustainability .timeline .timeline-item {
            text-align: center;
            font-size: 2rem;
            border-bottom: 1px solid #ccc;
            padding: 3rem 15rem;
        }
        .page.sustainability .timeline .timeline-item h3 {
            margin: 0;
            color: var(--accent-color);
            font-weight: 600;
        }
            .page.sustainability .timeline .timeline-item p {
                font-weight: 500;
                margin: 0;
            }
        .page.sustainability .timeline .timeline-item:last-of-type {
            border-bottom: none;
        }


@media (max-width: 1024px) {
    .page.sustainability .numbers .numbers-grid .paper-bg-standard {
        padding: 3rem 0;
    }
    .page.sustainability .numbers .numbers-grid {
        grid-gap: 3rem;
    }
    .page.sustainability .partners .partner-grid {
        grid-gap: 2rem;
    }
    .page.sustainability .big-numbers > div:nth-child(1) h3 {
        font-size: 15.5vw;
    }
    .page.sustainability .big-numbers > div:nth-child(1) p {
        font-size: 5vw;
        letter-spacing: 0px;
    }
    .page.sustainability .big-numbers > div:nth-child(2) h3, .page.sustainability .big-numbers > div:nth-child(3) h3 {
        font-size: 5.5vw;
    }
    .page.sustainability .big-numbers > div:nth-child(2) p, .page.sustainability .big-numbers > div:nth-child(3) p {
        font-size: 2.5vw;
        line-height: 3.2rem;
    }
    .page.sustainability .big-numbers > div:nth-child(4) h3 {
        font-size: 5vw;
    }
    .page.sustainability .big-numbers > div:nth-child(4) p {
        font-size: 5.5vw;
        letter-spacing: 11px;
    }
    .page.sustainability .big-numbers > div:nth-child(5) h3 {
        font-size: 4.5vw;
    }
    .page.sustainability .big-numbers > div:nth-child(5) p {
        font-size: 5vw;
        letter-spacing: 9px;
    }
    .page.sustainability ul {
        margin-left: 2rem;
    }
    .page.sustainability ul li {
        list-style: disc;
    }
}
@media (max-width: 1023px) {
    .page.sustainability .numbers .numbers-grid .paper-bg-standard {
        padding: 3rem 2rem;
    }
    .page.sustainability .numbers .numbers-grid > div h5 {
        font-size: 3rem;
        line-height: 4.6rem;
    }
    .page.sustainability .numbers .numbers-grid > div {
        width: 25rem;
        height: 20rem;
    }
}
@media (max-width: 768px) {
    .page.sustainability .numbers .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 6rem;
    }

    .page.sustainability .partners .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page.sustainability .big-numbers > div:nth-child(1) h3 {
        font-size: 16vw;
    }

    .page.sustainability .big-numbers > div:nth-child(1) p {
        font-size: 5.2vw;
        letter-spacing: 0px;
    }
    .page.sustainability .big-numbers > div:nth-child(2), .page.sustainability .big-numbers > div:nth-child(3) {
        grid-gap: 2rem;
    }
    .page.sustainability .big-numbers > div:nth-child(2) h3, .page.sustainability .big-numbers > div:nth-child(3) h3 {
        font-size: 6.5vw;
    }

        .page.sustainability .big-numbers > div:nth-child(2) p, .page.sustainability .big-numbers > div:nth-child(3) p {
            font-size: 3vw;
            line-height: 2.2rem;
        }

    .page.sustainability .big-numbers > div:nth-child(4), .page.sustainability .big-numbers > div:nth-child(5) {
        grid-gap: 2rem;
    }
    .page.sustainability .big-numbers > div:nth-child(4) h3 {
        font-size: 6.5vw;
    }

    .page.sustainability .big-numbers > div:nth-child(4) p {
        font-size: 5.5vw;
        letter-spacing: 10px;
    }

    .page.sustainability .big-numbers > div:nth-child(5) h3 {
        font-size: 6vw;
    }

    .page.sustainability .big-numbers > div:nth-child(5) p {
        font-size: 5vw;
        letter-spacing: 6px;
    }
    .page.sustainability .timeline .timeline-item {
        padding: 3rem;
    }
}

@media (max-width: 550px) {
    .page.sustainability .numbers .numbers-grid {
        grid-template-columns: 1fr;
        grid-gap: 4rem;
    }

    .page.sustainability .partners .partner-grid {
        grid-template-columns: 1fr;
    }

    .page.sustainability .program-overview .program-grid {
        grid-template-columns: 1fr;
    }

    .page.sustainability .photo-galleries .gallery-grid {
        grid-template-columns: 1fr;
    }

    .page.sustainability .timeline .timeline-item {
        padding: 3rem 1rem;
        font-size: 1.8rem;
    }

    .page.sustainability .big-numbers > div:nth-child(1) h3 {
        font-size: 13vw;
    }

    .page.sustainability .big-numbers {
        padding: 2rem;
    }

        .page.sustainability .big-numbers > div:nth-child(1) p {
            font-size: 4.3vw;
            letter-spacing: 0px;
            margin-top: -0.5rem
        }

        .page.sustainability .big-numbers > div:nth-child(2), .page.sustainability .big-numbers > div:nth-child(3) {
            width: 100%;
            grid-gap: 2rem;
        }

        .page.sustainability .big-numbers > div:nth-child(2),
        .page.sustainability .big-numbers > div:nth-child(3),
        .page.sustainability .big-numbers > div:nth-child(4),
        .page.sustainability .big-numbers > div:nth-child(5) {
            display: block
        }

            .page.sustainability .big-numbers > div:nth-child(2) h3,
            .page.sustainability .big-numbers > div:nth-child(3) h3,
            .page.sustainability .big-numbers > div:nth-child(4) h3,
            .page.sustainability .big-numbers > div:nth-child(5) h3 {
                text-align: center;
                font-size: 13.5vw;
            }
            .page.sustainability .big-numbers > div:nth-child(2) p,
            .page.sustainability .big-numbers > div:nth-child(3) p,
            .page.sustainability .big-numbers > div:nth-child(4) p,
            .page.sustainability .big-numbers > div:nth-child(5) p {
                text-align: center;
                font-size: 2rem;
                letter-spacing: 0;
            }
}

/* Contests Page */
.page.contests {
    padding-bottom: 10rem;
}

    .page.contests .active-contests {
        margin-bottom: 5rem;
    }

    .page.contests h3, .page.contests .contests h6 {
        margin-bottom: 0;
        font-family: 'Special Elite Regular';
        font-weight: 600;
    }

    .page.contests .contest-grid.past {
        grid-template-columns: 1fr;
    }
    .page.contests .contest-grid .contest-item .contest-interaction {
        display: block;
        padding-bottom: 2rem;
    }
    .contest-item .error {
        color: #ff0000;
        font-weight: 600;
    }
    .contest-item .success {
        color: #08b306;
        font-weight: 600;
    }
    .contest-item {
        position: relative;
    }
        .contest-item .entered {
            font-size: 2rem;
            font-family: 'Special Elite Regular';
            font-weight: 600;
            text-transform: uppercase;
            text-align: center;
            position: absolute;
            bottom: 1.7rem;
            color: #08b306;
            width: calc(100% - 4rem);
        }
        .contest-item .contest-button {
            position: absolute;
            bottom: 2rem;
        }

/* Error Pages */
.standard-message {
    text-align: center;
    width: 50%;
    margin: 5rem auto 0 auto;
}
    .standard-message h4 {
        font-family: 'Special Elite Regular';
        font-size: 3rem;
    }
    .standard-message p {
        font-size: 1.6rem;
    }
    .standard-message .buttons {
        display: flex;
        justify-content: center;
    }
@media (max-width: 768px) {
    .standard-message {
        width: 100%;
        margin: 0 auto 0 auto;
    }
        .standard-message h4 {
            font-family: 'Special Elite Regular';
            font-size: 2rem;
        }
}

/* Plan Selection Page */
.register.plan {
    padding: 0;
}
.register.plan .headline {
    margin-top: 0;
}
    .register.plan .headline div > h5 {
        font-family: 'Special Elite Regular';
        font-weight: 600;
    }
    .register.plan .plan-choice-grid > div h2 {
        text-align: center;
        margin: 2rem;
        font-weight: 900;
        font-size: 2.8rem;
        text-transform: uppercase;
        font-family: 'Special Elite Regular';
    }

    .register.plan .plan-choice-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
        .register.plan .plan-choice-grid > div {
            max-width: 38rem;
        }
@media (max-width: 1023px) {
    .register.fanclub .register-container-grid {
        grid-template-columns: 1fr;
        margin: 0 20%;
        grid-gap: 5rem;
    }
    .register .fan-club-benefits .benefits-grid .benefits {
        padding: 0;
    }
    .register.page .benefits-grid > div:nth-child(1) {
        margin-left: 0;
    }
    .register.page .benefits-grid {
        padding: 0;
    }
}
@media (max-width: 768px) {
    .register.fanclub .register-container-grid {
        margin: 0 10%;
    }
    .register.page .benefits-grid > div:nth-child(1) img {
        max-width: 100%;
    }
}
@media (max-width: 550px) {
    .register.fanclub .register-container-grid {
        margin: 0 0;
    }
    .register .headline {
        margin: 0 0 3rem 0;
    }
    .register.fanclub .headline div > h5 {
        letter-spacing: -1px;
    }
}
@media (max-width: 374px) {
    .register.fanclub .headline {
        display: none;
    }
}


/* Store Stuff */
/* Cart Page */

.store input[type="email"],
.store input[type="date"],
.store input[type="number"],
.store input[type="search"],
.store input[type="text"],
.store input[type="tel"],
.store input[type="url"],
.store input[type="password"],
.store textarea,
.store select {
    border: 1px solid #999;
}

.store.cart.page .cart-grid {
    font-weight: 600;
}
.store.cart.page .cart-grid h1 {
    font-family: 'Special Elite Regular';
}
    .store.cart.page .cart-grid h2 {
        font-family: Poppins;
    }
.store .cart-box-container .cart-item-detail-grid.margin {
    background-color: transparent; 
    border-top: 1px solid #333;
}
.store .cart-box-container .cart-item-title-grid {
    border-top: 1px solid #333;
}
.store .cart-box-container .remove-item {
    background-color: #333;
    padding: 0.3rem 0rem 0.2rem 0.2rem;
    border-radius: 0;
}
.store.cart .shipping-button {
    display: flex;
    justify-content: end;
}
.store.cart .shipping-button {
    display: flex;
    justify-content: end;
}
.store.cart #shipping-box {
    background-color: transparent;
}

.store.cart .tape-button.sm.blue .content {
    width: 100% !important;
    text-align:center;
}
@media (max-width: 768px) {
    .store.cart .cart-grid {
        grid-template-columns: 1fr;
        grid-gap: 3rem;
    }
}

/* Checkout Page */
.store.checkout  {
    padding-bottom: 10rem;
}
.store.checkout .checkout-grid {
    grid-template-columns: 1.3fr 1fr;
}
.store.checkout .checkout-grid p {
    font-weight: 500;
}
.store.checkout .checkout-grid h2 {
    font-family: 'Special Elite Regular';
    font-weight: 600;
}
.store.checkout .order-selections {
    box-shadow: -1px 6px 11px -5px #333;
}
.store.checkout .checkout-grid .p-image .count {
    background-color: var(--button-primary-bg-hover-color);
    border-color: var(--button-primary-bg-color);
    padding: 0.1rem 0.8rem 0 0.8rem;
}
.store.checkout label.selection {
    border-bottom: 1px solid #ccc;
    padding: 1rem;
}
.store.checkout .checkout-payment-grid label.selection {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 2rem;
    border: 1px solid #ccc;
    margin: .2rem 0;
}
.store.checkout .checkout-payment-grid label.selection input[type=radio] {
    display: none;
}
    .store.checkout .checkout-payment-grid label.selection i {
        justify-self: flex-end;
    }
.store.checkout .checkout-payment-grid.active label.selection {
    border: 1px solid var(--button-primary-bg-color);
    border-bottom: 2px solid var(--button-primary-bg-color);
    color: var(--button-primary-bg-color);
    font-weight: 500;
}

.store.checkout .button-bar {
    display: flex;
    justify-content: end;
}
    .store.checkout .button-bar .tape-button {
        margin: 0;
    }
    .store.checkout .button-bar .tape-button.sm .content > div {
        padding: 0.5rem 0 0 0;
    }
.store.checkout .credit-cards {
    margin-bottom: 2rem;
}
.store.checkout .membership-code-wrapper {
    padding: 1rem 0;
}
    .store.checkout .membership-code-wrapper label {
        font-weight: 500;
    }
.store.checkout .membership-code-wrapper input[type=text] {
    width: 60%;
}
.store.checkout .terms p {
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: #333;
}
/*.store.checkout .credit-card-list {
    border: 1px solid var(--button-primary-bg-color);
    padding: .5rem .5rem 2rem .5rem;
}*/
    .store.checkout .credit-card-list .checkout-credit-card-grid.active {
        background-color: #2fa9d230;
        border-radius: 5px;
    }
    .store.checkout .credit-card-list label.selection {
        border: none;
        display: flex;
        align-items: center;
    }
    .store.checkout .credit-card-list label.selection .card-icon {
        width: 7rem;
        margin: 0 1rem;
    }


.store.checkout .cart-summary .discount-code-wrapper {
    display: flex;
    align-items: center;
}
.store.checkout .cart-summary .discount-code-wrapper button {
    margin: 0 2rem 0 0;
}
    .store.checkout .cart-summary .discount-code-wrapper input[type=text] {
        padding: 6px;
        border-color: #ccc;
    }
.store.checkout .agree {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.store.checkout .agree label {
    margin: 0 0 0 1rem;
}
    .store.checkout .agree input[type=checkbox] {
        height: 1.5rem;
        width: 1.5rem;
    }

.store.checkout .place-order-button {
    display: flex;
}
    .store.checkout .place-order-button .tape-button.sm.blue {
        display: flex;
        flex-grow: 1;
    }
.store.checkout .place-order-button .tape-button.sm.blue .content {
    width: 100% !important;
    text-align: center;
}
    .store.checkout .place-order-button button img {
        transition: all .25s;
    }

    .store.checkout .place-order-button button .content {
        transition: all .25s;
    }

    .store.checkout .place-order-button button[disabled] img {
        filter: grayscale(100%);
        transition: all .25s;
    }

    .store.checkout .place-order-button button[disabled] .content {
        filter: grayscale(100%);
        transition: all .25s;
    }

@media (max-width: 1024px) {
    .store.checkout .checkout-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 767px) {
    .store.checkout .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.store.checkout.confirmation .confirmation-wrap  {
    padding: 0 25%;
    font-size: 1.6rem;
}
.store.checkout.confirmation .confirmation-wrap h1 {
    font-size: 3rem;
    font-family: 'Special Elite Regular';
    border-bottom: 1px solid #ccc;
}
    .store.checkout.confirmation .confirmation-wrap h2 {
        font-size: 2.4rem;
        font-family: 'Special Elite Regular';
    }
    .store.checkout.confirmation .confirmation-wrap .return {
        font-family: 'Special Elite Regular';
        font-size: 2rem;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
    }
@media (max-width: 1024px) {
    .store.checkout.confirmation .confirmation-wrap {
        padding: 0 20%;
    }
}
@media (max-width: 768px) {
    .store.checkout.confirmation .confirmation-wrap {
        padding: 0 15%;
    }
}
@media (max-width: 768px) {
    .store.checkout.confirmation .confirmation-wrap {
        padding: 0 15%;
    }
}
@media (max-width: 550px) {
    .store.checkout.confirmation .confirmation-wrap {
        font-size: 1.4rem;
        padding: 0;
    }
        .store.checkout.confirmation .confirmation-wrap h1 {
            font-size: 2.4rem;
        }
        .store.checkout.confirmation .confirmation-wrap h2 {
            font-size: 2rem;
        }
    .store.checkout.confirmation .confirmation-wrap .receipt {
        font-size: 1.3rem;
    }
    .store.checkout .receipt-totals-grid .right {
        text-align: right;
        margin-right: 2rem;
    }
}