:root {
    --site-color: #FFFFFF;
    --site-text-color: #FFFFFF;
    --site-background-color: #000000;
    --site-hover-color: #000000;
    --site-button-color: #666666;
    --site-primary-font: 'Kameron', serif;
    --site-secondary-font: 'Rinse W05 Regular';
    --site-white-color: #FFFFFF;
    --site-black-color: #000000;
}


body {
    margin: 0;
    font-family: var(--site-primary-font);
    font-weight: normal;
    color: var(--site-text-color);
    width: 100%;
    background-color: var(--site-background-color);
    text-transform: uppercase;
    font-weight: 500;
    background: url(./../img/desktop-bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    height: 100%;
    background-attachment: fixed;
    overflow-x: hidden;

}

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

a {
    color: var(--site-text-color);
    text-decoration: none;
    transition: 0.2s ease-in;
}

a:hover {
    opacity: 0.5;
    color: var(--site-color);
}

.header1 {
    background: url(./../img/desktop-bg.jpg) no-repeat;
    background-position: top center;
    background-size: cover;
    height: 100vh;
}

.button {
    background-color: transparent;
    color: var(--site-text-color);
    width: auto;
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: .1vw solid var(--site-color);
    padding: 1vw 2vw;
    padding-top: 1.2vw;
    transition: 0.5s ease-in-out;
    text-transform: uppercase;
    font-size: 1.0421vw;
    letter-spacing: 0.212vw;
    /* line-height: 1.98vw; */
    font-weight: bold;
}

.button:hover {
    background: var(--site-text-color);
    border: .1vw solid var(--site-text-color);
    opacity: 1;
    color: var(--site-hover-color);
    text-decoration: none;
}

.signup {
    font-size: 0.73vw;
    letter-spacing: 0.21vw;
    /* line-height: 2.5vw; */
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.signup:hover {
    opacity: 0.5;
}



.main-content {
    height: 100%;
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 8fr 1fr;
    align-items: center;
}

.logo-text {
    font-size: 2.084vw;
    font-family: var(--site-secondary-font);
    text-transform: none;
}

.logo-wrapper {
    width: 15.157vw;
    margin: 0 auto;
    padding-bottom: 1vw;
}

.album-wrapper.logo-wrapper {
    width: 20.157vw;
}

.logo-wrapper a:hover {
    opacity: 0.8;
}

.pre-order {
    margin-right: 1.2vw;
}

.splash-info {
    font-size: 1.3021vw;
    letter-spacing: 0.261vw;
    line-height: 4.584vw;
    font-weight: 700;
}

.socials-nav,
.footer-bottom {
    padding-bottom: 1vw;
}

.content-wrapper {
    width: 100%;
    text-align: center;
    padding-top: 0;
}

.content-wrapper-2 {
    padding: 0 0 2vw 0;
}

.header-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

section.header {
    height: 100vh;
    position: relative;

    width: 100vw;
    margin: 0 auto;
}

.header-top-wrapper1 {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 3%;
    width: 100%;
}

.logo-container {
    width: 15.886vw;
    position: absolute;
    top: 2%;
    left: 0;
}

.nav-container {
    position: absolute;
    top: 2%;
    right: 0;
}


.header-bottom-wrapper {
    display: grid;
    justify-content: space-between;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: space-around;
    align-items: flex-end;
}

.menu-wrapper-right {
    text-transform: uppercase;
    font-size: 1.5999vw;
    letter-spacing: -0.157vw;
    font-weight: normal;
    text-align: right;
    padding: 1vw 0;
}


.socials-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 1vw;
}


.splash-title {
    font-size: 5.625vw;
    letter-spacing: -0.469vw;
    line-height: 1;
    color: var(--site-color);
}

.copyright-links {
    font-size: 0.773vw;
    text-transform: uppercase;
    line-height: 1.146vw;
    letter-spacing: 1px;
    font-weight: bold;
}

.socials-nav ul a {
    font-size: 1.263vw;
    transition: 0.5s ease-in-out;
}

.socials-nav ul li {
    display: flex;
    padding-right: 7px;
}

.socials-nav ul a:hover {
    color: var(--site-color);
}

.copyright-links span.link {
    display: inline-block;
}

.copyright-links a {
    color: var(--site-color);
    transition: 0.5s ease-in-out;
    text-decoration: underline;
    font-weight: bold;
    letter-spacing: 1px;
}

.copyright-links a:hover {
    color: var(--site-color);

}

.d-none {
    display: none;
}

.sidebar {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 6;
    top: 0;
    right: 0;
    /* background: rgb(0 0 0 / 80%); */
    overflow-x: hidden;
    transition: 0.5s;
    display: none;
    color: var(--site-color);
}

.sidebar-content-wrapper {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;

}

.closebtn {
    display: block;
    text-align: right;
    font-size: 2.5vw;
    font-family: var(--site-secondary-font);
    line-height: 1;
    position: absolute;
    top: 0.5vw;
    right: 1vw;
    padding: 0;
}

.closebtn:hover {
    text-decoration: none;
    opacity: 0.5;
}

.heading {
    padding-bottom: 2vw;
    font-size: 2.084vw;
    text-transform: none;
    font-size: 2.188vw;
    line-height: 3.386vw;
    letter-spacing: 0.417vw;
    text-align: center;
    /*font-family: var(--site-secondary-font);*/
    font-family: rinse, sans-serif;
}

.sidebar-content {
    display: none;
}

.pre-order-wrapper {
    text-align: center;
}

.pre-order-wrapper .logo-text {
    font-size: 3.855vw;
    line-height: 1;
}

#preorder-section {
    background: url(./../img/pre-order-background.png) no-repeat center;
    background-size: cover;
}

.pre-order-info {
    font-size: 0.886vw;
    padding-bottom: 2vw;
    letter-spacing: 0.209vw;
    font-weight: bold;
}

.sidebar-content.active {
    width: 70vw;
    margin: 0 auto;
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -moz-animation: fadeIn 0.5s;
    -o-animation: fadeIn 0.5s;
    -ms-animation: fadeIn 0.5s;
    position: relative;
    color: var(--site-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    border: 0.3vw solid #fff;
    /* padding-bottom: 5vw; */
    filter: drop-shadow(0 0 27px rgba(0, 0, 0, 0.9));
    height: 90%;
}

.sidebar-content.active#video-section .heading {
    border: none;
    padding: 0;
    text-align: center;
}

.sidebar-content.active {
    padding-bottom: 1vw;
}

.mlist-wrapper {
    width: 100%;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Mailing List */
.mailing-list-title {
    color: var(--site-background-color);
    margin-bottom: 2vw;
    font-size: 1.3021vw;
}

.f-bold {
    font-weight: bold;
}

.mlform form {
    width: 75%;
    margin: 0 auto;
}

form {
    font-size: 0;
}

.fieldWrap {
    padding-bottom: 0.4vw;
    position: relative;
}

.fieldWrap input,
.fieldWrap select {
    color: var(--site-text-color);
    background: #232323;
    border: 0.1vw solid #232323;
    height: 2.5vw;
    min-height: 48px;
    line-height: 2.5vw;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    width: 100%;
    border-radius: 0px;
    padding: 0 10px;
    -webkit-appearance: none;
    appearance: none;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--site-primary-font);
    font-size: 1.72vw;
    letter-spacing: 0.37vw;
    font-weight: bold;
}

input[type="submit"] {
    background-color: var(--site-button-color);
    color: var(--site-black-color);
    width: 100%;
    height: 2.5vw;
    min-height: 48px;
    line-height: 2.5vw;
    display: block;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: .1vw solid var(--site-background-color);
    text-decoration: none;
    transition: 0.5s ease-in-out;
    cursor: pointer;
    padding: 0 10px;
    margin: 0 auto;
    text-align: center;
    border-radius: 0;
    text-transform: uppercase;
    font-family: var(--site-primary-font);
    font-size: 1.72vw;
    letter-spacing: 0.37vw;
    font-weight: bold;
}

input[type="submit"]:hover {
    background-color: transparent;
    color: var(--site-color);
    border: 0.1vw solid var(--site-color);
}

.custom-field-section {
    margin-bottom: 2vw;
}

.fieldWrap .errored {
    border: 1px solid #ff0000;
}

.input-error {
    position: relative;
    bottom: -2px;
    width: 100%;
    left: 0;
    color: #ff0000;
    font-size: 16px;
    font-size: 0.9vw;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.fadeOut {
    display: none;
}

.fadeIn {
    display: block;
}

.thankyou {
    font-size: 2.084vw;
    text-align: center;
    padding: 0;
    text-transform: uppercase;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--site-text-color);
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--site-text-color);
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--site-text-color);
}

:-moz-placeholder {
    /* Firefox 18- */
    color: var(--site-text-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: var(--site-text-color) !important;
    /* -webkit-text-fill-color: var(--site-background-color); */
    /* -webkit-box-shadow: 0 0 0px 1000px var(--site-background-color) inset; */
}

.terms-view {
    max-width: 70%;
    font-size: 0.673vw;
    line-height: 0.938vw;
    padding-top: 1vw;
    padding-left: 0;
    margin: 0 auto;
    text-align: left;
    font-weight: bold;
}

.terms-view a {
    text-decoration: underline;
    transition: 0.5s ease-in-out;
}

.terms-view a:hover {
    opacity: 0.5;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

.menu.button.desktop-only {
    display: inline-block;

}

.menu.button.desktop-only.enter-site {
    display: inline-block;
}

video.landing-video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
    display: none;
}

.mlist-wrapper .consent-placeholder {
    position: relative;
    margin: 0.9vw auto 1vw 0;
    display: block;
}

.mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:not(:checked),
.mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:checked {
    position: absolute;
    left: 0px;
    width: 1.4vw;
    height: 1.4vw;
    z-index: 10;
    top: 0px;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    -webkit-appearance: none;
    padding: 0;
}

.mlist-wrapper .plain-ml-wrapper .mlform .consent-placeholder input[type="checkbox"]+label {
    display: inline-block;
    box-sizing: border-box;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.88vw;
    padding-left: 2.54vw;
    vertical-align: top;
    font-weight: 400;
    position: static;
    transform: none;
    pointer-events: auto;
    color: #fff;
}

.mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:not(:checked)+label:before,
.mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:checked+label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: auto;
    width: 1.4vw;
    height: 1.4vw;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 0px;
    box-sizing: border-box;
}

.mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:checked+label:after {
    content: "\2713";
    position: absolute;
    top: 0.35vw;
    line-height: 1;
    left: 0.35vw;
    font-size: 1.1vw;
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.closebtn,
.closebtnlb {
    display: block;
    text-align: right;
    font-size: 2.5vw;
    font-family: rinse, sans-serif;
    line-height: 1;
    position: absolute;
    top: 0.5vw;
    right: 1vw;
    padding: 0;
}

@media only screen and (max-width: 1023px) and (orientation: portrait) {
    .logo-wrapper {
        width: 40.157vw;
        margin: 0 auto;
        padding-bottom: 8vw;
    }

    .album-wrapper.logo-wrapper {
        width: 45.157vw;
    }

    .pre-order {
        margin-right: 0;
        margin-bottom: 5vw;
    }

    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .sidebar {
        width: 100vw;
        top: 0;
        left: 0;
        height: 100%;
        right: 0;
    }

    body {
        background: url(./../img/mobile-bg.jpg) no-repeat #093130;
        background-position: top center;
        background-size: contain;
        background-attachment: fixed;
    }

    .content-wrapper {
        padding-top: 30vw;
    }

    #preorder-section {
        background: url(./../img/popup-overlay-mobile.jpg) no-repeat center;
        background-size: cover;
    }

    .socials-nav ul {
        max-width: 240px;
        margin: 0 auto;
    }

    .heading {
        font-size: 10.667vw;
    }

    .thankyou {
        font-size: 4.084vw;
    }

    .splash-title {
        font-size: 14vw;
        letter-spacing: -0.6588vw;
        text-align: right;
    }

    .footer-bottom {
        padding-bottom: 3vw;
    }

    .copyright-text {
        padding-bottom: 1vw;
        display: inline-block;
    }

    .copyright-links {
        text-align: center;
        padding-bottom: 5vw;
        padding: 0 1vw;
    }

    .copyright-links span.link {
        font-size: 1.8518vw;
        line-height: 2.3333vw;
        ;
    }

    .socials-nav ul {
        justify-content: center;
        max-width: 100%;
        gap: 5vw;
    }

    .socials-nav {
        margin-bottom: 2.4641vw;
    }

    .sidebar-content.active {
        width: 93vw;
        height: 90%;
        border: 0.7vw solid #fff;
    }

    .mailing-list-title {
        font-size: 3.3021vw;
        text-align: center;
        padding: 4vw 0;
    }

    .terms-view {
        max-width: 85%;
        font-size: 2.834vw;
        line-height: 4.3021vw;
    }

    .socials-nav ul a {
        font-size: 2.563vw;
    }

    .fieldWrap input,
    .fieldWrap select,
    input[type="submit"] {
        font-size: 2.25vw;
        letter-spacing: 0.31vw;
        line-height: 1.98vw;
    }

    .terms-view {
        font-size: 2.834vw;
        line-height: 4.2vw;
        padding-top: 25vw;
    }

    .fieldWrap {
        padding-bottom: 2vw;
        position: relative;
    }

    .main-content .logo-text {
        font-size: 6.844vw;
        letter-spacing: 0.99vw;
    }

    .splash-info {
        font-size: 3.302vw;
        letter-spacing: 1.261vw;
        line-height: 6.584vw;
        padding-bottom: 5vw;
    }

    .button,
    .signup {
        font-size: 4.3518vw;
        line-height: 10.98vw;
        padding: 0 2vw;
    }


    .copyright-links,
    .copyright-links span.link {
        font-size: 2.8518vw;
        line-height: 3.3333vw;
        ;

    }

    .sidebar-content.active#pre-order-section,
    .sidebar-content.active#signup-section .heading,
    .sidebar-content.active#video-section .heading {
        padding-bottom: 13vw;
    }

    .closebtn {
        font-size: 9.07vw;
        top: 1.5vw;
        right: 3vw;
    }

    .pre-order-wrapper .logo-text {
        font-size: 7.855vw;
        line-height: 1;
        padding-bottom: 2vw;
    }

    .pre-order-info {
        font-size: 2.886vw;
        padding-bottom: 5vw;
        letter-spacing: 0.209vw;
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:not(:checked),
    .mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:checked,
    .mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:not(:checked)+label:before,
    .mlist-wrapper .plain-ml-wrapper .consent-placeholder input[type="checkbox"]:checked+label:before {
        width: 5.8vw;
        height: 5.8vw;
    }

    .mlist-wrapper .plain-ml-wrapper .mlform .consent-placeholder input[type="checkbox"]+label {
        font-size: 1.84vw;
        padding-left: 7.94vw;
    }

}

@media only screen and (max-width: 767px) and (orientation: portrait) {
    .main-content .logo-text {
        font-size: 6.934vw;
        letter-spacing: 1vw;
        padding-bottom: 2vw;
    }

    .splash-info {
        font-size: 3.302vw;
        letter-spacing: 1.261vw;
        line-height: 6.584vw;
        padding-bottom: 5vw;
    }

    .button,
    .signup {
        font-size: 4.3518vw;
        line-height: 10.98vw;
        padding: 0 5vw;

    }

    .button1 {
        max-width: 280px;
        width: 100%;
    }


    .mlform form {
        width: 85%;
    }

    .input-error {
        font-size: 4.25vw;
    }

    .sidebar-content.active#pre-order-section,
    .sidebar-content.active#signup-section .heading,
    .sidebar-content.active#video-section .heading {
        padding-bottom: 13vw;
    }

    .fieldWrap input,
    .fieldWrap select,
    input[type="submit"] {
        font-size: 4.8vw;
        letter-spacing: 0.61vw;
        line-height: 2.98vw;
    }

    .button-wrapper .button:first-child {
        margin-bottom: 5vw;

    }

    .copyright-links,
    .copyright-links span.link {
        font-size: 2.8518vw;
        line-height: 3.3333vw;
        ;

    }

    body .menu-wrapper-right {
        text-align: center;
        font-size: 4.3518vw;
    }

    .socials-nav ul a {
        font-size: 5.563vw;
    }

}

@media only screen and (max-width: 1023px) and (orientation: landscape) {
    .sidebar-content.active {
        width: 90vw;
        height: 90%;
    }

    .closebtn img {
        width: 50%;
    }

    .header-nav ul li {
        padding-right: 2.5vw;
        font-size: 2.198vw;
    }

    .socials-nav ul a {
        font-size: 2.563vw;
    }

    .mlform form {
        width: 90%;
        margin: 0 auto;
    }

    .fieldWrap input,
    .fieldWrap select,
    input[type="submit"] {
        font-size: 2.25vw;
        letter-spacing: 0.31vw;
        line-height: 1.98vw;
    }

    .terms-view {
        font-size: 1.234vw;
        line-height: 1.5vw;
        padding-top: 2vw;
        max-width: 90%;
    }

    .copyright-links {
        font-size: 1.43vw;
    }

    .socials-nav,
    .footer-bottom {
        padding-bottom: 1.5vw;
    }

    .heading {
        font-size: 5.667vw;
        padding-bottom: 3vw;
    }

    .closebtn {
        font-size: 4.07vw;
        top: 1.5vw;
        right: 2vw;
    }

    .splash-info {
        font-size: 1.5021vw;
    }

}

@media only screen and (min-width: 768px) and (orientation:portrait) {

    .logo-container {
        width: 18%;
    }

    .splash-title {
        font-size: 6vw;
        letter-spacing: -0.6588vw;
    }


    .copyright-links span.link1 {
        font-size: 1.8518vw;
        line-height: 3.3333vw;
        ;
    }

    .socials-nav ul {
        max-width: 100%;

    }

    .socials-nav {
        margin-bottom: 2.4641vw;
    }

    .terms-view {
        max-width: 71vw;
        font-size: 1.6021vw;
        line-height: 2.3021vw;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1330px) {
    .copyright-links {
        font-size: 1.350vw;
    }

    .mlform form {
        width: 70%;
        margin: 0 auto;
    }

}

@media only screen and (max-width: 320px) and (orientation:portrait) {

    .mobile-only.listen-now-watch .menu .button,
    .mobile-only.listen-now-watch .menu.click.button {
        font-size: 13px;
    }
}

.sold-out {
    opacity: .5;
    pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .signup {
        font-size: 3.3518vw;
        line-height: 8.98vw;
        padding: 0 2vw;
    }
}

@media only screen and (min-width:1024px) and (max-width: 1024px) and (orientation: portrait) {
    .socials-nav ul a {
        font-size: 2.263vw;
        padding-right: 7px;
    }
}