/* -------------------------------------------
   Hero: Common
= ----------------------------------------- */
.hero-image {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.is-visible .hero-image {
    opacity: 1;
}

.hero-image.fx-perspective {
    transform: scale(1.2);
}

/* -------------------------------------------
   Hero: Wave
= ----------------------------------------- */
.hero-wave {
    width: 100vw;
    height: 100vh;
    position: relative;
    background-size: 100px 100px;
    background-image: linear-gradient(to right, #eee 1px, transparent 1px);
}

#magic-wave {
    position: fixed;
    z-index: 2;
    transform: translateY(100%) rotate(180deg);
    transition: transform 1s cubic-bezier(.25, .46, .45, .94);
    opacity: 0.9;
}

.is-visible #magic-wave {
    transform: translateY(0) rotate(180deg );
}

.hero-wave__holder {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0%;
    z-index: 10;
    text-align: center;
}

.hero-wave__text {
    display: inline-block;
    position: relative;
}

.hero-wave__chars {
    font-size: 200px;
    color: var(--dark_color);
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .hero-wave__chars {
        font-size: 120px;
    }
}

@media (max-width: 575.98px) {
    .hero-wave__chars {
        font-size: 60px;
    }
}

.hero-wave__play {
    position: absolute;
    left: -60px;
    top: 50%;
    margin-top: -30px;
}

.hero-wave__play-inner {
    z-index: 5;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    background-color: var(--dark_color);
    transition: all 0.6s cubic-bezier(.25, .46, .45, .94);
    transform: scale(0);
    opacity: 0;
}

.hero-wave__text:hover .hero-wave__play-inner {
    opacity: 1;
    transform: scale(1);
}

.hero-wave__play svg {
    width: 20px;
    fill: #fff;
}

/* -------------------------------------------
   Hero: Details
= ----------------------------------------- */
.hero-details {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-details .swiper-slide a {
    display:flex;
}
.hero-details .swiper-slide {
    overflow: initial;
}
.hero-image__top {
    position: relative;
    z-index: 5;
    padding-top: 250px;
    padding-top: 20vh;
    width: 1300px
}

.hero-image__title {
    font-size: 64px;
    line-height: 1;
    max-width: 500px;
    font-weight: 700;
    transition-delay: 0s;
}

.hero-image__captions {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.5;
    max-width: 500px;
    font-weight: 400;
    transition-delay: 0.2s;
}

.hero-image__button {
    transition-delay: 0.4s;
}

.hero-image__button .btn {
   
}

.hero-image__title, .hero-image__captions, .hero-image__button {
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
}

.is-visible .hero-image__title, .is-visible .hero-image__captions, .is-visible .hero-image__button {
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

/* Bottom */
.hero-image__bottom {
    margin-top: auto;
    height: 280px;
    width: 100%;
    z-index: 2;
}

.hero-image__bottom {
    opacity: 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible .hero-image__bottom {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero-image__top {
        padding-top:250px;
        padding-top: 30vh;
    }

    .hero-image__bottom {
        display: none
    }
}

@media (max-width: 767.98px) {
    .hero-image__title {
        font-size:44px;
        line-height: 1.1;
        max-width: 500px;
    }
}

/* Events */
.hero-details__events {
    display: flex;
    align-items: flex-start;
}

.hero-d-ev__label {
    position: absolute;
    top: 15px;
    left: 30px;
    color: var(--base_color);
    z-index: 2;
    font-size: 14px;
    opacity: 0;
    transform: translateX(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.is-visible .hero-d-ev__label {
    opacity: 0.4;
    transform: translateX(0);
}

.hero-d-ev__label:after {
    content: "";
    width: 40px;
    height: 1px;
    position: relative;
    display: inline-block;
    opacity: 0.8;
    top: -3px;
    margin-left: 15px;
    background-color: var(--base_color);
}

.hero-d-ev {
    flex: 1;
    background-color: rgb(255 255 255 / 90%);
}

.hero-d-ev {
    opacity: 0;
    transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible .hero-d-ev {
    opacity: 1;
    transform: translateY(0);
}

.hero-details__events .hero-d-ev:nth-child(1) {
    transition-delay: 0.5s
}

.hero-details__events .hero-d-ev:nth-child(2) {
    transition-delay: 0.6s
}

.hero-details__events .hero-d-ev:nth-child(3) {
    transition-delay: 0.7s
}

.hero-details__events .hero-d-ev:nth-child(4) {
    transition-delay: 0.8s
}

.hero-d-ev__holder {
    display: flex;
    flex-direction: column;
    height: 280px;
    padding: 50px 30px 50px;
    position: relative;
}

.hero-d-ev__holder:hover {
    background-color: var(--base_color)
}

.hero-d-ev__date {
    font-size: 14px;
    color: var(--base_color);
    opacity: 0.8;
    margin-bottom:5px;
    font-weight: 400;
}

.hero-d-ev__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-d-ev__btn {
    margin-top: auto;
}

.hero-d-ev__btn .btn {
    padding: 5px 0px;
    background-color: transparent;
    color: var(--base_color);
    font-weight:500;
}

.hero-d-ev__link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2
}

.hero-d-ev__holder, .hero-d-ev__date, .hero-d-ev__btn .btn, .hero-d-ev__title {
    transition: background 0.4s , color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-d-ev__holder:hover .hero-d-ev__date, .hero-d-ev__holder:hover .hero-d-ev__btn .btn, .hero-d-ev__holder:hover .hero-d-ev__title {
    color: #fff;
}

.hero-d-ev__holder:hover .hero-d-ev__btn .btn .icon {
    -webkit-animation: slideIcon ease-out 0.3s 0.1s;
    animation: slideIcon ease-out 0.3s 0.1s;
}

@media (max-width: 1199.98px) {
    .hero-details__events .hero-d-ev:last-child {
        display:none;
    }
}

/* Albums Slider - Label */
.hero-ds__label {
    position: absolute;
    top: 15px;
    left: 390px;
    color: #fff;
    z-index: 2;
    font-size: 14px;
    opacity: 0;
    transform: translateX(-100%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}

.is-visible .hero-ds__label {
    opacity: 0.4;
    transform: translateX(0);
}

.hero-ds__label:after {
    content: "";
    width: 40px;
    height: 1px;
    position: relative;
    display: inline-block;
    opacity: 0.8;
    top: -3px;
    margin-left: 15px;
    background-color: #fff;
}

/* Albums Slider */
.hero-details-slider {
    position: relative;
    width: 100%;
    left: -1px;
}

.hero-details-slider:after {
    content: "";
    position: absolute;
    left: 1px;
    top: 0;
    width: 0px;
    height: 100%;
    background-color: rgb(20 20 20 / 90%);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}

.is-visible .hero-details-slider:after {
    width: 100%;
}

.hero-ds__inner {
    display: flex;
    height: 280px;
}

.hero-ds__cover {
    position: relative;
    top: -80px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.25);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
    opacity: 0;
    transform: translateX(-100px);
}

.is-visible .hero-ds__cover {
    opacity: 1;
    transform: translateX(0);
}

.hero-ds__cover img {
    width: 360px;
    min-width: 360px;
    height: 360px;
    min-height: 360px;
}

/* Player */
.hero-ds-player {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,0px) scale(1);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    z-index: 2;
    opacity: 1;
    cursor: pointer;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.hero-ds-player:after {
    background-color: var(--brand_color);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
    opacity: 0.05;
    -webkit-animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
    animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
}

.hero-ds-player a {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    border-radius: 100%;
    background-color: var(--brand_color);
}

.hero-ds-player svg {
    position: absolute;
    z-index: 2;
    width: 20px;
    opacity: 1;
    transform: scale(1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-ds-player .rp .pause svh path {
    
}
.hero-ds-player .rp .pause {
    opacity: 0;
    transform: scale(0.4);
}

.hero-ds-player .rp.playing .pause {
    opacity: 1;
    transform: scale(1);
}

.hero-ds-player .rp.playing .play {
    opacity: 0;
    transform: scale(0.4);
}

/* Right content */
.hero-ds__content {
    display: flex;
    flex-direction: column;
    height: 280px;
    padding: 50px 30px;
    position: relative;
    z-index: 3;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
    opacity: 0;
    transform: translateX(-100px);
}

.is-visible .hero-ds__content {
    opacity: 1;
    transform: translateX(0);
}

.hero-ds__title {
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight:700
}

.hero-ds__title {
    opacity: 0;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible .swiper-slide-active .hero-ds__title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.hero-ds__btn {
    opacity: 0;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    margin-top: auto;
}

.is-visible .swiper-slide-active .hero-ds__btn {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin-top: auto;
}

.hero-ds__btn .btn {
    color: #fff;
    padding: 5px 0px;
    background-color: transparent;
    font-weight:500;
}

.hero-ds__ctrl {
    position: absolute;
    left: 360px;
    top: -80px;
    display: flex;
    z-index: 5;
    overflow: hidden;
}

.hero-ds__prev, .hero-ds__next {
    width: 80px;
    height: 80px;
    color:var(--btn_alt_color);
    background-color: rgb(20 20 20 / 0.9);
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: background 0.4s, transform 0.4s 1s, opacity 0.4s 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-ds__prev:hover, .hero-ds__next:hover {
    background-color: var(--btn_alt_hov_bg_color);
}
.hero-ds__prev:hover svg path, .hero-ds__next:hover svg path {
    stroke:var(--btn_alt_hov_color);
}
.is-visible .hero-ds__prev, .is-visible .hero-ds__next {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------
   Custom Post Title
= ----------------------------------------- */
.el-ct__title {
    font-size: 72px;
    margin: 10px 0;
    line-height: 1.1;
    position: relative;
}

@media (max-width: 575.98px) {
    .el-ct__title {
        font-size:48px;
    }
}

.el-ct__meta {
    font-size: 17px;
    opacity: 0.8;
}

.el-ct__meta p {
    margin-bottom: 15px;
}

/* -------------------------------------------
   Custom Post Navigation
= ----------------------------------------- */
.cp-nav {
    overflow: hidden;
    border-radius: 5px;
    background-color: var(--gray_1);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.cp-nav__img {
    min-width: 150px;
}

.cp-nav__content {
    padding: 20px;
    display: block;
    width: 100%;
}

.cp-nav__ctrl {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.cp-nav__label {
    font-weight: 500;
}

.cp-nav__buttons {
    margin-left: auto;
    display: flex
}

.cp-nav__buttons a {
    margin-left: 5px;
}

.cp-nav__buttons a.btn-circle .ion {
    font-size: 35px;
}

.cp-nav__title {
    padding: 10px 0;
}
.cp-nav__title h4 {
    padding:0;
    margin:0;
    font-size:18px;
}

@media (max-width: 575.98px) {
    .cp-nav__img {
        min-width:100px;
    }

    .cp-nav__content {
        padding: 10px;
    }

    .cp-nav__label {
        margin-left: 10px;
        margin-bottom: 5px
    }

    .cp-nav__ctrl {
        display: block;
    }

    .cp-nav__title {
        display: none
    }
}

/* -------------------------------------------
   Lightbox
= ----------------------------------------- */
.lightbox__content {
    display: none;
}

.lightbox__inner {
    max-width: 1200px;
    padding: 20px;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.lightbox__inner img {
    max-height: 90vh;
    max-width: 90vw;
}

.lightbox__inner iframe {
    margin-bottom: 0;
}

.lightbox__title {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
}

/* Medium devices (landscape tablets, 767.98px and up) */
@media only screen and (max-width: 1024px) {
    .lightbox__video iframe {
        width:700px;
        height: 400px
    }
}

@media only screen and (max-width: 767.98px) {
    .lightbox__video iframe {
        width:500px;
        height: 300px
    }
}

@media only screen and (max-width: 520px) {
    .lightbox__video iframe {
        width:100%;
        height: 200px
    }
}

/* -------------------------------------------
   WPML LAnguage Switcher
= ----------------------------------------- */
.wpml-switcher {
    display: inline-block;
}

.wpml-switcher__list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 3px;
    margin-left: 100px;
}

.wpml-switcher__list li {
    display: inline-block;
    line-height: 100%;
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
}

.wpml-switcher__list li:after {
    content: "";
    display: inline-block;
    height: 1px;
    width: 10px;
    margin: 0 10px 3px;
    background-color: #fff;
    border: none;
}

.wpml-switcher__list li:last-child:after {
    display: none;
}

.wpml-switcher__active span {
    padding-bottom: 1px;
    border-bottom: 1px solid #fff;
}

@media only screen and (max-width: 1024px) {
    .wpml-switcher {
        width:100%;
    }

    .wpml-switcher__list {
        margin-left: 0;
        text-align: center;
    }
}

/* -------------------------------------------
   Background Player
= ----------------------------------------- */
.bg-player {
}
.bg-player .icon.play {
    width:100%;
    height:18px;
    position:absolute;
    background-repeat:no-repeat;
    background-position:center;
    background-size:contain;
    background-image: url(../images/player/play-dark.svg);
    transition:all 0.4s ease;
}
.bg-dark-global #header:not(.is-scrolled) .bg-player .icon.play {
    background-image: url(../images/player/play.svg);
}
.bg-dark-global #header:not(.is-scrolled) .bg-player:hover .icon.play {
    background-image: url(../images/player/play-dark.svg);
}

.bg-player.playing .icon.play {
    opacity:0;
    transform: scale(0.5);
}
.bg-player__eq {
    width: 24px;
    height: 14px;
    cursor: pointer;
    position: relative;
    transition:all 0.4s ease;
    opacity:0;
    transform: scale(0.5);
}

.bg-player__eq .eq-bar {
    width: 4px;
    height: 6px;
}

.eq-bar {
    background-color: var(--dark_color);
    position: absolute;
    bottom: 0;
    overflow: hidden;
    opacity: 0.7;
    transition: all 300ms cubic-bezier(0.4, 0, 0, 1);
}

.bg-dark-global #header:not(.is-scrolled) .eq-bar {
    background-color:#fff;
}
.bg-dark-global #header:not(.is-scrolled) .bg-player:hover .eq-bar {
    background-color: var(--dark_color);
}
.bg-player.playing .bg-player__eq {
    opacity:1;
    transform: scale(1);
}

.bg-player__eq .eq-bar1 {
    left: 0;
    height: 14px;
}

.bg-player__eq .eq-bar2 {
    left: 5px;
    height: 12px;
}

.bg-player__eq .eq-bar3 {
    left: 10px;
    height: 10px;
}

.bg-player__eq .eq-bar4 {
    left: 15px;
    height: 8px;
}

.bg-player__eq .eq-bar5 {
    right: 0;
    height: 6px;
}

.bg-player.playing .eq-bar1 {
    animation: anim__eq-bar .3s alternate infinite;
}

.bg-player.playing .eq-bar2 {
    animation: anim__eq-bar .4s alternate infinite;
}

.bg-player.playing .eq-bar3 {
    animation: anim__eq-bar .38s alternate infinite;
}

.bg-player.playing .eq-bar4 {
    animation: anim__eq-bar .34s alternate infinite;
}

.bg-player.playing .eq-bar5 {
    animation: anim__eq-bar .44s alternate infinite;
}

@keyframes anim__eq-bar {
    0% {
        height: 6px;
    }

    100% {
        height: 14px;
    }
}

/* Page holder */
.rp-audio {
    display: none;
}

/* MQ */
@media (min-width: 1024px) {
    .header-classic .bg-player {
        margin-right:0px;
    }
}

/* -------------------------------------------
   Details List
= ----------------------------------------- */
.details-list {
    list-style: none;
    isplay: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.details-list li {
    margin-right: 25px;
    padding-top: 20px;
    border-top: 1px solid hsl(255deg 9% 9% / 20%);
    /*background:transparent url(../../assets/images/wave-line-2.svg) left top repeat-x;*/
    width: 100%;
}

.details-list li:last-child {
    margin-right: 0 !important;
}

.details-list li h6 {
    margin-bottom: 0px;
    font-size: 16px;
}

.details-list--2 li {
    width: -webkit-calc( (100% / 2) - 25px);
    width: calc( (100% / 2) - 25px);
}

.details-list--2 li {
    width: -webkit-calc( (100% / 2) - 25px);
    width: calc( (100% / 2) - 25px);
}

.details-list--3 li {
    width: -webkit-calc( (100% / 3) - 25px);
    width: calc( (100% / 3) - 25px);
}

.details-list--4 li {
    width: -webkit-calc( (100% / 4) - 25px);
    width: calc( (100% / 4) - 25px);
}

.details-list--5 li {
    width: -webkit-calc( (100% / 5) - 25px);
    width: calc( (100% / 5) - 25px);
}

.details-list--6 li {
    width: -webkit-calc( (100% / 6) - 25px);
    width: calc( (100% / 6) - 25px);
}

.details-list--7 li {
    width: -webkit-calc( (100% / 7) - 25px);
    width: calc( (100% / 7) - 25px);
}

.details-list--8 li {
    width: -webkit-calc( (100% / 8) - 25px);
    width: calc( (100% / 8) - 25px);
}

@media (max-width: 575.98px) {
    .details-list li {
        width: 100%;
        margin-right: 0;
    }
}

/* -------------------------------------------
   Event Cover
= ----------------------------------------- */
.event-cover {
    /* filter: drop-shadow(10px 5px 28px rgba(0, 0, 0, 0.2)); */
}

.event-cover .event-cover__img {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.event-cover__date {
}

.event-cover__date {
    font-weight: 400;
    display: inline-block;
    line-height: 150%;
    color: #fff;
    min-width: 60px;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    padding: 4px;
}

.event-cover__day {
    font-size: 38px;
    line-height: 1;
}

.event-cover__date-inner {
    display: block;
}

.event-cover__month {
    display: block;
    font-size: 16px;
}

.event-cover__year {
    display: block;
    font-size: 16px;
}

.event-cover .event-cover__date {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    -webkit-transition: all cubic-bezier(.4,0,.2,1) .4s;
    -o-transition: all cubic-bezier(.4,0,.2,1) .4s;
    transition: all cubic-bezier(.4,0,.2,1) .4s;
}

.event-cover:hover .event-cover__date {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}

.event-cover__overlay {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(28, 27, 33, 0) 0%, rgba(28, 27, 33, 0.5) 100%);
    transition: opacity 0.5s ease;
    opacity: 1;
    z-index: 2;
}

.event-cover:hover .event-cover__overlay {
    opacity: 0;
}

/* -------------------------------------------
   Album Cover
= ----------------------------------------- */
.album-cover {
   max-width:80%;
}

.album-cover .album-cover__img {
    border-radius: 5px;
    position: relative;
}
.album-cover figure {
    position:relative;
    z-index:2;
    opacity:1;
    overflow:hidden;
    border-radius:5px;
    box-shadow: 5px 0 10px -5px #141414;
}
.album-cover .album-cover__img:after {
    content:"";
    position:absolute;
    left:20%;;
    top:0;
    width:100%;
    height:100%;
    z-index:1;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.8s 0.5s;
    background:transparent url(../images/vinyl.png) center no-repeat;
    background-size:contain;
}
.album-cover.playing .album-cover__img:after {
     -webkit-animation: rotate 2s linear infinite;
      -moz-animation: rotate 2s linear infinite;
      -ms-animation: rotate 2s linear infinite;
      -o-animation: rotate 2s linear infinite;
      animation: rotate 2s linear infinite;
}

/* Controller */
.album-cover-ctrl {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    border-radius: 50%;
    z-index: 3;
    text-align: center;
    background-color: var(--brand_color);
}
.album-cover__inner {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    opacity: 0.8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
}

.is-visible .album-cover__inner {
    opacity: 1;

}

.album-cover__inner svg {
    position: absolute;
    z-index: 2;
    width: 26px;
    opacity: 1;
    fill: var(--base_color);
    transform: scale(1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-cover .pause {
    opacity: 0;
    transform: scale(0.4);
}

.album-cover.playing .pause {
    opacity: 1;
    transform: scale(1);
}
.album-cover svg path {
    fill: var(--base_color);
}

.album-cover.playing .play {
    opacity: 0;
    transform: scale(0.4);
}

.album-cover__inner:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1;
    border-radius: 100%;
    background-color: var(--brand_color);
}

.album-cover__inner:after {
    background-color: var(--brand_color);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
    opacity: 0.05;
    -webkit-animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
    animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
}

/* Cursor */
#cursor.magnet.ctrl-magnet .cursor__body {
    border-color: transparent;
}

#cursor.magnet.ctrl-magnet .cursor__body:before {
    opacity: 0
}

#cursor.magnet.ctrl-magnet .cursor__body:after {
    -webkit-animation: none;
    animation: none;
}

/* Audio Player
  -------------------------------- */
.audio-player {
    overflow: hidden;
    z-index: 1;
    position: relative;
    border-radius: 5px;
    position: relative;
    border-radius:5px;
   
}
.audio-player__item {
    margin-bottom: 0;
    position: relative;
    padding: 10px 40px;
    background-color:var(--gray_2);
}
.audio-player .audio-player__item:first-child {
    padding-top:40px;
}
.audio-player .audio-player__item:last-child {
    padding-bottom:20px;
}
.audio-player .audio-player__item {
    background-color:var(--gray_1);
}
@media (max-width: 1100.98px) { 
    .audio-player__item  {
        padding:10px 10px;
        font-size:14px
    }
    .audio-player .player-meta__title h5 {
        font-size:14px;
    }
    .audio-ctrl__track-time {
        display:none
    }
} 
@media (max-width: 767.98px) { 
    .audio-player__item  {
        padding:10px 20px;
    }
    .audio-player__item  {
        font-size:15px;
    }
    .audio-player .player-meta__title h5 {
        font-size:15px;
    }
    .audio-ctrl__track-time {
        display:inline-block
    }
} 

.audio-player__item.playing, .audio-player__item.paused {
}

.audio-player__item:hover, .audio-player__item.playing {
}

/* Anim */
body:not(.elementor-editor-active).is-scroll-animations .audio-player__item {
}

/* Player item */
.audio-player__track {
}

.audio-player__item.loading .audio-player__track {
    pointer-events: none;
}

.audio-player__state {
    display: inline-block;
    width: 50px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: var(--base_color);
}

@media (max-width: 575.98px) {
    .audio-player__state {
        width:30px;
    }
}

.audio-player__state:hover, .audio-player__item.playing .audio-player__state, .audio-player__item.paused .audio-player__state {
}

.audio-player__state:before {
    content: "";
    width: 100%;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: transparent;
    background-image: url(../images/player/play-dark.svg);
}

.audio-player__item.playing .audio-player__state:before {
    background-image: url(../images/player/pause-dark.svg)
}

.audio-player__item.is-broken-track {
    pointer-events: none;
    opacity: 0.5 !important;
}

.audio-player__item.is-broken-track .player-meta__title:before {
    content: "[ERROR] "
}

.audio-player__state, .audio-player__state img, .audio-player__ctrl, .audio-player__item {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.audio-player__item.spl-simple-track {
}

/* Meta data */
.audio-player__data {
}

.player-meta {
    position: relative;
    width: 100%
}

.player-meta__nr {
    margin-right: 5px;
    display: inline-block;
}

.player-meta__title {
    font-weight: 500;
    color: var(--base_color);
}

.player-meta__title-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 100%;
}

.player-meta__title h5 {
    margin-bottom: 0;
    font-size: 16px;
}

/* Time */
.audio-ctrl__track-time {
    margin-left: auto;
}

.audio-ctrl__elapsed {
    transition: opacity 0.4s ease;
    display: none;
    min-width:70px;
    font-weight:700;
    text-align:center;
}

.audio-player__item.playing .audio-ctrl__elapsed, .audio-player__item.paused .audio-ctrl__elapsed {
    display: inline-block;
}

.audio-ctrl__elapsed {
}

.audio-ctrl__total-fixed {
    display: inline-block;
    margin-left: 30px;
}

@media (max-width: 575.98px) {
    .audio-ctrl__total-fixed {
        margin-left:5px;
    }
}

/* Description */
.player-meta__desc {
    font-size: 0.9em;
    font-weight: 400;
    display: block;
    margin-bottom: 1px;
}

.player-meta__desc a {
}

.player-meta__desc a:hover {
}

/* Buttons */
.audio-player__buttons {
    font-size: 11px;
    font-weight: 400;
    display: table-cell;
    letter-spacing: 0.07em;
    text-align: right;
    vertical-align: middle;
    padding-right: 5px;
    z-index: 1;
}

.audio-player__buttons a {
    display: inline-block;
    margin: 2px 0 0px 15px;
    position: relative;
    line-height: 100%;
    position: relative;
    z-index: 2;
}

.player-button {
    width: 19px;
    height: 19px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    background-size: contain
}

.player-button__download {
    background-image: url(../images/player/down-arrow.svg);
}

.player-button__buy {
    background-image: url(../images/player/buy.svg);
}

/* Row */
.audio-player__row {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Progress content */
.audio-player__ctrl {
    margin-top: 8px;
    display: block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    height: 6px;
    pointer-events: none;
    opacity: 0;
}

.audio-player__item.playing .audio-player__ctrl, .audio-player__item.paused .audio-player__ctrl {
    opacity: 1;
    pointer-events: all
}

.audio-ctrl__progress {
    position: relative;
    width: 100%;
    display: block;
    cursor: pointer;
    z-index: 2;
    width: auto;
    height: 8px;
    background-color:var(--brand_color3);
}

.audio-ctrl__position {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
}

.audio-ctrl__position {
    width: 0%;
    opacity: 1;
    background-color:var(--brand_color2)
}
.audio-ctrl__position:after {
}

.audio-player__item.loading .audio-player__loader {
    display: block;
}

.audio-player__loader, .bg-player__loader {
}

.audio-player__loader {
}

@keyframes rotate {
    0% {
        transform: rotateZ(-360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}

@keyframes rotate2 {
    0% {
        transform: rotateZ(360deg)
    }

    100% {
        transform: rotateZ(0deg)
    }
}

/* -------------------------------------------
   Albums Slider
= ----------------------------------------- */
.albums-slider {
    overflow: hidden;
}

.albums-slider__holder {
    width: 100vw;
    height: 100vh;
    z-index: 5;
}

.albums-slider .swiper-slide {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.album-slide {
    width: 1300px;
}

.album-slide__cover {
    max-height: 500px;
    position: relative;
    max-width: 500px;
    z-index: 4;
}
.album-slide__cover figure {
    border-radius:5px;
    overflow:hidden;
    position:relative;
    box-shadow: 5px 0 10px -5px #141414;
    z-index:2
}
.album-slide__cover:after {
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:1;
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.8s 0.5s;
    background:transparent url(../images/vinyl.png) center no-repeat;
    background-size:contain;
    opacity: 0;
}
.is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
    opacity: 1;
    left:35%;
}
@media (max-width: 1600px) { 
    .is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
         left:18%;
    }
}  
@media (max-width: 1400px) { 
    .is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
        left:14%;
    }
}  
@media (max-width: 1200px) { 
    .is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
        left:14%;
    }
} 
@media (max-width: 991.98px) { 
     .is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
        left:20%;
    }
}  
@media (max-width: 767.98px) { 
    .is-visible .albums-slider .swiper-slide-active .album-slide__cover:after {
       left:0;
    }
}   

.album-slide__cover.playing:after {
     -webkit-animation: rotate 2s linear infinite;
      -moz-animation: rotate 2s linear infinite;
      -ms-animation: rotate 2s linear infinite;
      -o-animation: rotate 2s linear infinite;
      animation: rotate 2s linear infinite;
}

.album-slide__cover {
    opacity: 0;
    transform: translateX(-100px);
    transition: all cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.is-visible .albums-slider .swiper-slide-active .album-slide__cover {
    opacity: 1;
    transform:translateX(0);
}


.elementor-editor-active .album-slide__cover {
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .is-visible .album-slide__cover {
        margin-left:auto;
        margin-right: auto;
    }
}

/* Mobile desc */
.album-slide__cover-overlay {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(28, 27, 33, 0) 0%, rgba(28, 27, 33, 0.5) 100%);
    transition: opacity 0.5s ease;
    opacity: 1;
    z-index: 2;
}

.album-slide__desc-mobile {
    pointer-events: none;
    display: none;
}

.album-slide__desc-mobile h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-weight: 500;
    z-index: 2;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .album-slide__desc-mobile {
        display:block;
    }
    .album-slide__desc-mobile h3 {
        line-height:1.1;
        font-size:22px;
    }
}

/* Desc */
.album-slide__desc {
    padding-left: 60px;
    max-width: 550px;
    position: relative;
    z-index: 3;
}

.elementor-editor-active .album-slide__desc {
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .album-slide__desc {
        padding-left: 0px;
        z-index: 3;
    }
}

.album-slide__desc h2 {
    font-size: 58px;
    pointer-events: none;
    opacity: 0;
    line-height: 1.1;
    color: var(--base_color);
    -webkit-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.01);
}

.is-visible .swiper-slide-active .album-slide__desc h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.album-slide__caption {
    opacity: 0;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    margin-bottom:30px;
}

.is-visible .swiper-slide-active .album-slide__caption {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.album-slide__btn-holder {
    opacity: 0;
    -webkit-transform: translateY(40%);
    -ms-transform: translateY(40%);
    transform: translateY(40%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.is-visible .swiper-slide-active .album-slide__btn-holder {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.album-slide__btn {
    padding: 10px 25px;
}

@media (max-width: 991.98px) {
    .album-slide__desc h2 {
        font-size:28px;
    }

    .album-slide__btn {
        padding: 5px 10px;
    }
}

@media (max-width: 767.98px) {
    .album-slide__desc-col {
        position:absolute;
        bottom: -100px;
    }

    .album-slide__desc {
        display: none;
    }

    .album-slide__desc h2 {
        font-size: 18px;
    }

    .album-slide__caption {
        display: none;
    }
}

/* Player */
.album-slide-player {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    transform:translate(-50%,-50%);
    z-index: 3;
    opacity: 0;
    width: 80px;
    height: 80px;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
@media (max-width: 575.98px) { 
    .album-slide-player {
        width: 60px;
        height: 60px;
    }
} 

.is-visible .album-slide-player {
    opacity: 1;
   
}

.album-slide-player__inner {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    opacity: 0.8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
}
@media (max-width: 575.98px) { 
    .album-slide-player__inner {
        width: 60px;
        height: 60px;
    }
} 
.is-visible .album-slide-player__inner {
    opacity: 1;

}

.album-slide-player__inner svg {
    position: absolute;
    z-index: 2;
    width: 26px;
    opacity: 1;
    fill: var(--base_color);
    transform: scale(1);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-slide-player .pause {
    opacity: 0;
    transform: scale(0.4);
}

.album-slide-player.playing .pause {
    opacity: 1;
    transform: scale(1);
}
.album-slide-player svg path {
    fill: var(--base_color);
}

.album-slide-player.playing .play {
    opacity: 0;
    transform: scale(0.4);
}

.album-slide-player__inner:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 1;
    border-radius: 100%;
    background-color: var(--brand_color);
}

.album-slide-player__inner:after {
    background-color: var(--brand_color);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 100%;
    opacity: 0.05;
    -webkit-animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
    animation: boom 1.8s 1s cubic-bezier(.4,0,.2,1) infinite;
}

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

/* Ctrl */
.albums-slider__ctrl {
    position: absolute;
    right: 40px;
    bottom: 120px;
    z-index: 12;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.albums-slider__prev:after, .albums-slider__next:after {
    opacity: 1;
    transition:background 0.3s ease;
}

.albums-slider__prev, .albums-slider__next {
    cursor: pointer;
    position: relative;
    opacity: 0;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}

.albums-slider__prev {
    opacity: 0;
    left: -40px;
    margin-right: 16px;
}

.albums-slider__next {
    opacity: 0;
    right: -40px;
    margin-left: 16px;
}
.albums-slider__ctrl .albums-slider__prev:hover:after,
.albums-slider__ctrl .albums-slider__next:hover:after {
    background-color:var(--brand_color);
}
.albums-slider__ctrl .albums-slider__prev:hover svg path,
.albums-slider__ctrl .albums-slider__next:hover svg path {
   stroke:var(--base_color);
   fill:none

}
.is-visible .albums-slider__prev {
    opacity: 1;
    left: 0;
}

.is-visible .albums-slider__next {
    opacity: 1;
    right: 0;
}

@media (max-width: 767.98px) {
    .albums-slider__ctrl {
        bottom: 100px;
    }
    .albums-slider__prev {
        margin-right:6px;
    }

    .albums-slider__next {
        margin-left: 6px;
    }
}

/*  Progress */
.albums-slider__progress {
    position: absolute;
    left: 50%;
    margin-left: 80px;
    bottom: 60px;
    opacity: 0;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.is-visible .albums-slider__progress {
    bottom: 130px;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .is-visible .albums-slider__progress {
        left:0;
        bottom: 110px;
        margin-left: 40px;
    }
}

.albums-slider__progress-caption {
    margin-right: 16px;
    font-weight: 500;
}

.albums-slider__progress-bar-holder {
    position: relative;
    height: 3px;
    z-index: 3;
}

.albums-slider__progress-bar.swiper-pagination-progressbar {
    width: 60px;
    height: 3px;
    background-color: var(--brand_color)
}

.albums-slider__progress-bar-holder .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
}

/* Status */
.albums-slider__status {
    position: absolute;
    left: -42px;
    top: 50%;
    z-index: 12;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    transform: rotate(-90deg);
    text-align: center;
}

.albums-slider__status-current {
    min-width: 30px;
}

.albums-slider__status-line {
    width: 120px;
    background-color: var(--base_color);
    height: 1px;
    margin: 0 10px;
}

.albums-slider__status-total {
    min-width: 30px;
}

@media (max-width: 767.98px) {
    .albums-slider__status {
        display:none;
    }
}

/* Bg 1*/
.albums-slider__bg {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(35%,-50%);
    z-index: 0;
    width: 1600px
}
@media (max-width: 575.98px) { 
    .albums-slider__bg {
        display:none
    }
} 

/* -------------------------------------------
   Elementor
= ----------------------------------------- */
/* Accordion
= -------------------------------- */
#app .theme-accordion .elementor-tab-title {
    border-radius: 5px;
}

#app .theme-accordion .elementor-tab-title .elementor-accordion-icon {
    background-color: rgb(22 21 25 / 5%);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    top: -12px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    line-height: 40px;
}

#app .theme-accordion .elementor-accordion-item {
    margin-bottom: 10px;
}

/* -------------------------------------------
   Contact Form 7
= ----------------------------------------- */
.wpcf7-form {
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap input {
    width: 100%;
}

.wpcf7-form input[type="submit"] {
    width: auto;
    padding: 14px 30px;
}

.wpcf7-form input::-webkit-input-placeholder, .wpcf7-form textarea::-webkit-input-placeholder {
    color: var(--base_color);
    font-weight: 500;
    font-size: 16px
}

.wpcf7-form input:-moz-placeholder, .wpcf7-form textarea:-moz-placeholder {
    color: var(--base_color);
    font-weight: 500;
    font-size: 16px
}
