* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: #000;

}

body {
    margin: 0px;
    font-size: 16px;
    font-family: opensans-regular, sans-serif;
    -webkit-font-smoothing: antialiased;
    background-color: rgb(242, 242, 242);
    overflow-x: hidden;
    transition: 300ms;
}

body.loading{
    opacity:0.6;
}
.article-head{
    width: 100%;
}
footer{
    padding: 96px 16px;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    background-color: #eaeaea;
    margin-top: 96px;
}
footer a{
    color:#666666;
    font-size:11px;
}

/* not sure if the next 2 rules should not be in utils */

a.color-gray:hover {
    color: #000;
}

a.color-black:hover {
    color: #666;
}

.box.article{
    display: flex;
    flex-direction: row;
    justify-content: center;/* align-items: center; */
    background: #fff;
    border: 1px solid #F2F2F2;
}

.box.article.large{
    flex-direction:column;
    margin-bottom: 48px;
}

.box.article .img-holder{
    width:33%;
    min-width: 33%;
}
.box.article.large .img-holder{
    width:100%;
    min-width: 100%;
    padding-top:60%;
}
.box.article .article-title{
    max-width: 240px;
}
.box.article.large .article-title{
    width:100%;
    max-width:100%;
    font-size:45px;
    line-height:1.2em;
    margin-bottom: 32px;
}
.box.post {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transition: 300ms;
}

.box.post:not(.padding-0) {
    padding: 16px;
}

.box.post.horizontal:not(.padding-0) {
    flex-direction: column;
    border-bottom: 1px solid #F2F2F2;
}

.box.post.horizontal.large{
    margin-bottom:90px;
}

#mainContent{
    display:flex;
    justify-content:center;
    margin-left: 160px;
    /* padding: 0px 32px; */
    position: relative;
    z-index: 2;
    /* margin-top: 50px; */
    flex-direction: column;
    align-items: center;
}

#mainContent > main, #mainContent > main.width-full > *:not(.width-full), .footer-content, .compressed-content{
    width: 100%;
    max-width: 816px;
    z-index: 2;
}

#mainContent > main.width-full{
    width:100%;
    max-width: 100%;
}
main.page{
    min-height:100vh;
    background-color: #fff;
}
.image-holder img{
    max-width: 100%;
}

.box-front{
    z-index: 1;
}
.box.post.horizontal .box-front{
    display:flex;
    width: 100%;
    justify-content: space-between;
}
.box.post.horizontal .box-front .image-holder{
    width: 60px;
    height: 60px;
    min-width: 60px;
}
.box.post.horizontal.large .box-front .image-holder{
    width:230px;
    height:230px;
    margin-top: -75px;
    min-width: 230px;
}
.box.post.horizontal .box-content{
    width:100%;
    margin-left:16px;
}
.box.post.horizontal.large{
    padding:32px;
}
.box.post.horizontal.large .box-content{
    margin-left:48px;
}
.backlink{
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.frontlink{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.title{
    text-decoration: none;
    color:#000;
    font-weight: bold;
    text-align: left;
}



#beforeMainContent {
    position: fixed;
    z-index: 3;
    height: 50px;
    width: calc(100% - 160px);
    margin-left: 160px;
    background: #ccc;
    left: 0;
    top: 0;
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}
body.searching #beforeMainContent{
    /* position:fixed; */
    /* z-index:12; */


    position: initial;
}

#beforeMainContent .top-nav, .sign-in {
    background:#333;
    position: relative;
    top:0;
    left:0;

    width:100%;
    cursor: pointer;
}


.featured-banner{
    position: absolute;
    z-index: 1;
    height: 70vh;
    width: 100%;
    padding-left: 0;
    background: #f2f2f5;
    left: 0;
    top: 0;
    max-height: 500px;
    overflow: hidden;
    min-height: 450px;
}
.image-banner{
    position:relative;
    width: 110%;
    background-size:cover;

    height: 110%;
    filter: blur(180px);
    top: -5%;
    left: -5%;
    background-position: center;
    background-color: #fff;
}
.dynamic-video{
    width:100%;
    height:100%;
    position: absolute;
    top: 0;
    background-position: center;
    background-size: cover;
}
.dynamic-video-holder{
    padding-top:56.25%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: cover;
    transition: 1000ms;
    opacity: 0;
}

.dynamic-video video{
    height: 100%;
    width:100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    transition: 0;
}

.search-bar-holder{
    width:100%;
    height: 100%;
}

.search-bar {
    height: 100%;
    width: 100%;
    border: none;
    position: relative;
    background-color: transparent;
    font-size: 13px;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    width: 100%;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;

    cursor: pointer;
}
.search-bar-holder:hover{
    /* background:#f0f0f0; */
}

.menu-items{

}
.menu-items .menu-item{
    padding: 0px 15px;
}
.menu-item a{
    height: 100%;
    width: 100%;
    /* padding: 8px 0px; */
    display: flex;
    line-height: 1.4em;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15px;
    font-weight: bold;
    transition: all 0.15s ease 0s;
    justify-content: left;
    align-items: center;
    height: 38px;
}

.menu-item a.item-center{

    justify-content: center;
}

.menu-item a:hover{
    opacity:0.65;
}

.menu-item a.border-top{
    border-top: 1px solid rgb(242, 242, 242);
}

.menu-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    transition: 300ms;
}

.menu-logo svg{
    height: 25px;
}

.menu-logo:hover{
    background:#f5f5f5;
}

.sidebar-nav{
    position: fixed;
    height: 100%;
    width: 160px;
    background-color: #fff;
    z-index: 2;
    top: 0;
    left: 0;
}

.menu-line-div{
    height: 1px;
    width: 100%;
    margin: 8px 0px;
    background-color: rgb(242, 242, 242);
}

.site-header{

}

.submenu-items > .menu-item{
    padding-left: 0;
}

.submenu-items .menu-item a{
    font-size:12px;

    text-transform: none;
    padding: 0;
    height: 30px;
}

.menu-item a .menu-item-icon{
    margin-left: 8px;
}

.page-section{
    margin-top: 48px;
}

.page-section.dark{
    background-image: url('/assets/images/lines-abstract.svg');
    background-size: cover;
    background-position: top;
    background-color:#000;
}

.top-section.page-section{
    margin-top: 130px;
}

.page-section > h2{
    margin-bottom: 24px;
    font-weight: 800;
    font-size: 26px;
}

.description{
    text-transform: none;
    font-size: 12px;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    color: #666666;
}

.floating-image{
    width: 100%;
    height: 100%;
    min-height: 160px;
    overflow: hidden;
    position: relative;
    display: block;
}
.floating-image img{
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.box.article .article-info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding: 16px 32px;
    width:100%;
}
.box.article.large .article-info{
    padding:48px;
}

h1.site-title{
    font-size: 60px;
    text-align: right;
    font-weight: 800;
    letter-spacing: -0.24px;
    line-height: 0.9em;
}
h1.site-title.left{
    text-align:left;
}
.first-article{
    border-top: 2px solid #000;
    padding-top: 16px;
}

.playlist-hero{
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
}
.playlist-hero .playlist-color{
    position: absolute;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    top: 16px;
    left: 16px;
    z-index: 0;/* display: none; */
}
.playlist-hero .playlist-image{

    position: absolute;
    z-index: 1;
    padding-right: 16px;
    padding-bottom: 16px;
    top: 0;
    left: 0;
}
.artist-list {
    display: flex;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}
.artist-list a{
    display:flex;
    margin-right:4px;
}
.artist-list a:after {
    content: ',';
}
.artist-list a:last-child::after {
    content: '';
}

.post.box.artist img {
    border-radius: 50%;
    overflow: hidden;
    /* width: 110px; */
    /* height: 110px; */
    margin-bottom: 8px;
    object-fit: cover;
    max-height: 100%;
}

/* Circle image of an artist in the search results */
.artist.vertical.box img {
    border-radius: 50%;
    overflow: hidden;
    width: 230px;
    height: 230px;
    margin-bottom: 8px;
}

.artist-nano {
    width: 100%;
    padding: 0px 16px;
}

.artist-nano img {
    border-radius: 50%;
    overflow: hidden;
    width: 110px;
    height: 110px;
    margin-bottom: 8px;
}

.artist-nano h3 {
}

.artist-nano h3{
}

#search-results{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 10;
    display: none;
}

.search-results-list{
    display:flex;
    height:100%;
    width:100%;
    background: rgb(242, 242, 242);
    margin-top: 0;
    justify-content: center;
    overflow: scroll;
    padding-bottom: 100px;
}

.search-results{
    max-width: 800px;
    width:90%;
    margin-top: 75px;
}

body.searching{
    overflow: hidden;
}

body.searching .search-icon .active{
    transform: scale(1);
    right: auto;
}
.search-icon svg{
    transition:300ms;
    position: absolute;
    width: 19px;
    transform: scale(1);
    right: 0;
}
.search-icon svg.active{
    transform: scale(0);
}
body.searching .search-icon .idle{
    transform: scale(0);
}

body.searching .search-bar-holder{
    position: fixed;
    z-index: 100;
    top: 0;
    overflow: hidden;
    height: 75px;
}

.search-icon{
    position:relative;
    width: 60px;
}

#search-results .search-close{
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    width: 160px;
}
.post-top{
    display: flex;
    padding: 120px 0;

    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    /* background: #fff; */
}

.post-top .post-left{
    margin-right: 48px;
    z-index: 1;
}

.post-image{
    object-fit:cover;
}

.post-left .post-image{
    height: 450px;
    width: 450px;
}

.post-top .post-right{

    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-right .post-type{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 16px;
    display: block;
}

.post-content p {
    font-size: 16px;
    margin: 0px;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    color: #333;
    opacity: 1;
    margin-bottom: 16px;
}

.post-content p a, .post-content ul a, .post-content ol a {
    color: #da4c4b;
    -webkit-text-decoration: none;
    text-decoration: none;
    border-bottom: 1px solid #da4c4b;
}
.post-content blockquote {
    margin-left: -48px;
    margin-right: -48px;
    background: #e1e1e1;
    padding-left: 48px;
    padding-right: 48px;
    margin-top: 32px;
    margin-bottom: 32px;
    padding-top: 32px;
    padding-bottom: 32px;
    font-size: 24px;
}
.post-content p {
    font-size: 16px;
    margin: 0px;
    line-height: 1.4em;
    letter-spacing: 0.2px;
    color: #333;
    opacity: 1;
    margin-bottom: 16px;
}
.post-content ul {
    list-style-type: disc;
    margin-bottom: 24px;
    padding-left: 35px;
}
.post-content ol {
    list-style: decimal-leading-zero;
    margin-bottom: 24px;
}
.post-content blockquote p{
    font-size: 24px;
}

.post-content h3{
    margin: 32px 0px;
}

.post-content iframe{
    margin: 0 auto;
    display: block;
    margin-top: 32px;
    margin-bottom: 32px;
    width: 100%;
}
.genre-list a{
    color:#666;
    text-transform:uppercase;
    font-size:12px;
    font-weight:bold;
    display:flex;
    padding-left: 8px;
}
.genre-list{
    flex-direction: row-reverse;
    flex-wrap:wrap;
    display:flex;
    padding-left:32px;
}

.post-top .image-banner{
    position: absolute;
    z-index: 0;
}
.article .post-top .image-banner{
    filter:none;
}

.article .post-top .image-banner .frontlink{
    opacity:0;
}
.post-body{
    z-index:1;
    position: relative;
}

main.post{
    display:flex;
    flex-direction: column;
    align-items: center;
}
.post-head{
    z-index: 1;
    display: flex;
    margin-bottom: 50px;
}

.post-body{
    margin-top:-50px;
}

.post.horizontal .playlist-color{
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    top: 8px;
    left: 8px;
}
.post.horizontal:not(.padding-0) .playlist-image{
    padding-right: 8px;
    padding-bottom: 8px;
}

.login-menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #fff;
    width: 165px;
    padding-right: 16px;
    position: relative;
}

.dropdown-toggle{
    position: relative;
}

.dropdown-menu{
    background-color: #fff;
    top: 100%;
    position: absolute;
    width: 300px;
    right:0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
    padding: 32px 0px;
    box-shadow: rgb(0 0 0 / 15%) 0px 4px 4px;
    top: 112%;
}

.user-logged-menu.active .dropdown-menu{
    display: flex;

}

.login-buttons{
    display: flex;
    justify-content: space-between;
}

.toast{
    position: fixed;
    background-color: #121212;
    padding: 24px 16px 32px 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 1001;
    width: 320px;
    right: 32px;
    cursor: pointer;
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%), 0 2px 15px 0 rgb(0 0 0 / 5%);
    border-radius: 6px;
    overflow: hidden;
}

.toast .timer{
    height: 8px;
    position: absolute;
    bottom: 0px;
    left: 0;
    background: #bb86fc;
}

.toast.error .timer{
    background: red;
}

.toast .message{
    color: #fff;
}

.toast .message a{
    color:#f9f9f9;
    display:block;
    width:100%;
    text-align:right;
    text-decoration:underline;
}

.page-section > label{
    text-transform: none;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: -0.12px;
    font-size: 20px;
    margin-bottom: 24px;
    display: block;
}

.post-content ol{
    margin-top: 24px;
    margin-bottom: 32px;
    padding-left: 18px;
}

.post-content ol li, .post-content ul li {
    margin-bottom: 5px;
}

.wp-block-image{
    margin-bottom: 16px;
}
.wp-block-image img{
    max-width: 100%;
}

main.post.article {
    background-color: #fff;
}

main.post.article h1{
    font-size:42px;
    margin-top: 16px;
    /* margin-bottom: 16px; */
}

main.post.article h2{
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 30px;
}

main.post.article h3{
    margin-bottom: 40px;
    font-size: 20px;
}

main.post.article p{
    margin-bottom: 40px;
    margin-top: 40px
        /* margin-bottom: 16px; */
}

main.post.article .post-body{
    margin-top:0;
}

main.post.article .post-top{
    margin-bottom: 32px;
    min-height: 420px;
}

.info-box{
    background: #fff;
    display: flex;/* justify-content: center; *//* align-items: center; */
    flex-direction: row;
    height: 100%;
}

.info-box .info-box-img{
    width: 33%;
    min-width: 33%;
    position: relative;

    background-position: center;
    background-size: cover;
}

.info-box .info-box-body{
    padding: 32px;
}

.info-box h2{
    font-size: 40px;
    margin-bottom: 32px;
}

.info-box .info-box-link{
}

.info-box .post-content{

}

.info-box .info-box-img img{
    width:100%;
    position: absolute;/* height: 100%; */
}
.contact-form {
    padding:32px;
    padding-right:0;
}

.box-front .image-holder img{
    width:100%;
}

.image-holder.rounded{

    padding-top: 100%;
    width: 100%;
    display: block;
    border-radius: 100%;
    background-size: cover;
    background-position: center;
}
.ajaxForm{
    position:relative;
}
.ajaxForm.loading:after{
    content:' ';
    position:absolute;
    background:rgba(0,0,0,0.1);
    width:105%;
    height:105%;
    left:-2.5%;
    top:-2.5%;
    z-index:1;
}

.checkbox {
    display: flex;
    justify-content: left;
    align-items: flex-start;
    margin-bottom: 12px;
    text-align: left;
}

.checkbox .check{
    width: 16px;
    height: 16px;
    border: 1px solid #000;
    display: block;
    transition:300ms;
    margin-right: 8px;
    min-width: 16px;
    position:relative;
    cursor:pointer;
}

.checkbox .check:after{
    content:'';
    position: absolute;
    width: 32px;
    height: 32px;
    top: -8px;
    left: -8px;
}

.checkbox .label{
    font-size: 12px;
}

.checkbox.active .check{
    background:#bb86fc;
}

.article-head .image-top{
    position: relative;
    margin-top: -40%;
    margin-bottom: 40px;
    height:0;
    padding-top:66%;
    overflow:hidden;
    background-size: cover;
    background-position: center;
}

.image-top img{
    top:-25%;
    position:absolute;
    width: 100%;
}

.sf-modal-front p{
    line-height: 32px;
}

.background-default {
    background-image: url('/assets/images/sf-default-bkg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #fff;
}

.discord-signup{
    padding: 25px;
    background: #fff;
}

.bg-color-white .discord-signup{
    padding: 25px;
    background: #F2F2F2;
}

.in-lined{
    padding:50px;
    background:#f2f2f2;
    text-align:center;
    margin-bottom: 48px;
}

.in-lined h3{
    /* margin:0 !important; */
}
.in-lined *{
    text-align:center;
    justify-content: center;
}

.in-lined .sf-input{
    background:#fff;
    max-width:460px;
}

.shop-banner p {
    font-size:22px;
    color: #fff;
    margin-bottom: 16px;
    margin-top: 0px !important;
}

.spacer-48 {
    width:100%;
    height: 48px;
}

.newsletter-popup{
    position:fixed;
    width: 100%;
    height:100%;
    top:300%;
    left:0;
    z-index:1001;
    display: flex;
    transition: 500ms;
}

.newsletter-popup .pop-content{
    width: 600px;
    background-color: #fff;
    left: 0;
    z-index: 101;
    box-shadow: 0px 7px 20px 0px #00000040;
    border-radius:4px;
}
.newsletter-popup.isFixed{
    margin:0;
    top:0;
}

.newsletter-background{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #D9D9D9CC;
    opacity: 1;
    display: none;
    z-index: 100;
}
.newsletter-popup img{
    width:62px;
    margin-top: 40px;
}

main.post.article .newsletter-popup p{
    max-width:300px;
    margin: 0 auto;
    margin-top: 24px;
}
#newsletter-form-pop form{
    padding:40px;
}

.pop-content{
    
}
.logo-quote{
    color:#B7B7B7;
    font-size: 12px;
}

.newsletter-page #newsletter-form{
    background: transparent;
}

.newsletter-page img{
    max-width: 765px;
    width: 100%;
}

#inline-article-form {
    margin-bottom: 48px;
}
.sf-radar-animation{
    position: absolute;
    top: -110px;
    right: 0;
    z-index: 1;
}

.sf-radar-animation dotlottie-player{
    width:400px !important;
    height:400px !important;
}

.post-content .wp-block-list{

}

.post-content .wp-block-list li{
    margin-bottom: 16px;
}