/* Fonts */
/*@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");*/
/*@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");*/
/*@import url("_footer.css");*/
/*@import url("_inner_pages.css");*/
@font-face {
  font-family: "black_maskpress";
  src: url("../fonts/black_mask_press-webfont.woff2") format("woff2"),
    url("../fonts/black_mask_press-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: var(--secondary_font);
  src: url("../fonts/BetterPalletPersonalUse.woff2") format("woff2"),
    url("../fonts/BetterPalletPersonalUse.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
    font-family: 'Welcome 2019';
    src: url('../fonts/Welcome2019.woff2') format('woff2'),
        url('../fonts/Welcome2019.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Theme Colors */
:root {
  --primary_color: #f5d420;
  --secondary_color: #020202;
  --white_color: #fff;
  --gray_color: #1f1d1d;
  --light_gray_color: #8d8d8d;
  --medium_gray_color: #5f5e5e;

  --secondary_font: 'Welcome 2019';
}

/* Globals */
body {
  padding: 0;
  margin: 0;
  background-color: var(--gray_color);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white_color);
}

.MB-0{
  margin-top: 0 !important;
}

.container_fluid {
  width: calc(100vw - 3%);
  margin: 0 auto;
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1100px;
  }
}
@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

[class*="tfx_"] {
  display: block;
  visibility: hidden;
}

/* Heading */
h1 {
  font-family: "black_maskpress";
  font-size: 16vw;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.5vw;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 35vh;
  margin: 0 auto;
  z-index: 25;
  visibility: hidden;
}

h2 {
  font-family: "black_maskpress";
  font-size: 4.166666666666666vw;
  font-weight: normal;
  font-style: normal;
  color: #fff;
}

h2 > b {
  font-size: 2.34375vw;
  color: var(--primary_color);
  font-weight: normal;
}

.section_title {
  font-family: var(--secondary_font);
  font-weight: normal;
  font-style: italic;
  font-size: 5.625vw;
  color: var(--primary_color);
}

.sub_title {
  font-family: var(--secondary_font);
  font-weight: normal;
  font-style: italic;
  font-size: 5.625vw;
  color: var(--primary_color);
}

/* WOW */
[class*="wow"] {
  visibility: hidden;
}

/* MISC */
.main_nav ul li a,
.product_listing ul li a .title {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

/* Buttons */
.btn_primary {
  font-size: 1.3541666666666667vw;
  position: relative;
  font-family: "black_maskpress";
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 26px */
  letter-spacing: 0.52px;
  text-transform: capitalize;
  color: var(--white_color);
  text-decoration: none;
  padding: 1.3020833333333335vw 1.8229166666666667vw;
}
.btn_primary:hover {
  color: var(--primary_color);
}
.btn_primary:before {
  content: "";
  background: url(../images/bg_btn_2.svg) 0 0 no-repeat;
  background-size: contain;
  /* width: 100px;
  height: 50px; */
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.btn_primary.adj:before {
    background-position: center center;
}

/* Main Nav */
.main_nav {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 2vh;
  z-index: 100;
  visibility: hidden;
}

.main_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #fff;
  padding: 0.6vw 0;
  list-style: none;
  margin: 0 auto;
  position: relative;
  max-height: 60px;
  box-sizing: border-box;
  max-width: calc(100% - 35px);
}

.main_nav ul:before,
.main_nav ul:after {
  content: "";
  height: 90vh;
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(116, 116, 116, 0.6) 39.58%,
    rgba(255, 255, 255, 0) 100%
  );
}

.main_nav ul:before {
  right: -1px;
  left: inherit;
}

.main_nav ul li {
  margin: 0 10px;
  min-width: 3vw;
  min-height: 4vh;
}

.main_nav ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_nav ul li a {
  color: #fff;
  text-decoration: none;
  margin: 0.3vw 3vw;
  text-transform: uppercase;
  font-size: 1.2vw;
  font-weight: 500;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  position: relative;
}

.main_nav ul li.current-menu-item a,
.main_nav ul li:hover a,
.main_nav ul li:focus a,
.main_nav ul li.active a {
  color: var(--primary_color);
  position: relative;
}

.main_nav ul li.current-menu-item a:before,
.main_nav ul li:hover a:before,
.main_nav ul li:focus a:before,
.main_nav ul li.active a:before {
  content: "";
  background-color: var(--primary_color);
  width: 100%;
  height: 3px;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: -3px;
}

/* Hero Section */
.hero_section {
  width: 100%;
  height: 100vh;
  background: url(../images/bg.webp) 0 0 no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero_section:after {
  content: "";
  height: 35vh;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/shadow-botton.png) 0 bottom repeat-x;
  background-size: contain;
  z-index: 21;
}
 
.hero_section h1 {
  z-index: 19;
}

.hero_section h1 .spacer {
  display: inline-block;
  width: 11vw;
}

.hero_section .shape_1 {
  display: block;
  width: 55vw;
  height: 55vw;
  background: url(../images/cricled_pattern.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  animation: circleShapeAnimtaion 1s 1s forwards;
  -webkit-animation: circleShapeAnimtaion 1s 1s forwards;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.hero_section .shape_2 {
  display: block;
  width: 55vw;
  height: 55vw;
  background: url(../images/sun_rays.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
  animation: circleShapeAnimtaion 1s 1s forwards;
  -webkit-animation: circleShapeAnimtaion 1s 1s forwards;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

@keyframes circleShapeAnimtaion {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}

.hero_section .content_holder {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
}

.hero_section .content_holder .section_title {
  position: absolute;
  right: 5vw;
  top: 28vh;
  margin: 0 auto;
  z-index: 19;
  font-size: 5.520833333333333vw;
}

.hero_section .content_holder .img_holder {
  display: block;
  width: 67%;
  height: 94vh;
  position: absolute;
  z-index: 20;
  top: inherit;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.hero_section .content_holder .img_holder:before {
  content: "";
  background: url(../images/decor_1.png) 0 0 no-repeat transparent;
  background-size: contain;
  width: 40vw;
  position: absolute;
  left: -15vw;
  top: 10vh;
  height: 70vh;
  z-index: 10;
}

.hero_section .content_holder .img_holder:after {
  content: "";
  background: url(../images/decor_2.png) 0 0 no-repeat transparent;
  background-size: contain;
  width: 50vw;
  position: absolute;
  right: -40vw;
  top: 10vh;
  height: 70vh;
  z-index: 10;
  opacity: 1;
}

.hero_section .content_holder .img_holder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 25;
  position: relative;
}

.hero_section .content_holder p {
  position: absolute;
  right: 19vh;
  bottom: 10vh;
  font-size: 1vw;
  color: #fff;
  z-index: 22;
  visibility: hidden;
}
.hero_section .content_holder p strong{
    font-family: "black_maskpress";
    position:relative;
    text-transform:uppercase;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 500;
    float: right;
}
.hero_section .content_holder p strong:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 1px;
    background: #fff;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
/* Upcoming Shows */
.upcoming_shows {
  background: url(../images/upcoming_shows_bg.webp) 0 0 no-repeat transparent;
  min-height: 100vh;
  /* min-height: 1080px; */
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* .upcoming_shows .a_big_shape {
  display: block;
  width: 25vw;
  height: 25vw;
  background: url(../images/a_big_shape.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 30vw;
  z-index: 5;
  bottom: -60px;
} */

.upcoming_shows .a_big_shape {
  display: block;
  width: 20vw;
  height: 20vw;
  background: url(/wp-content/uploads/2023/10/merch-scratch-img.png) 0 0    no-repeat;
  background-size: contain;
  position: absolute;
  left: -90px;
  z-index: 5;
  top: 20px;
}

.upcoming_shows .a_small_x {
  display: block;
  width: 20vw;
  height: 20vw;
  background: url(../images/a_small_x.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  z-index: 5;
  top: -60px;
  filter: grayscale(1);
  opacity: 0.5;
}

.upcoming_shows .a_big_x {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left: -27px !important;
  z-index: 5;
  height: 65%;
  top: 9%;
  transform: rotate(5deg);
}

.upcoming_shows .a_big_x img {
  object-fit: cover;
  object-position: 100% 0;
  width: 0;
  height: 100%;
}

.upcoming_shows .a_big_x.animated img {
  animation: xAnimation 2.5s forwards;
}

@keyframes xAnimation {
  0% {
    width: 0;
    opacity: 0;
    margin-right: -100px;
    /* width: 500px;
      opacity: 10; */
  }
  100% {
    /* width: 0;
        opacity: 0; */
    width: 100%;
    opacity: 1;
    margin-right: 0;
  }
}

/* .upcoming_shows .a_big_x:before,
.upcoming_shows .a_big_x:after{
    content: "";
    width: 100%;
    height: 100%;
    background-size: contain !important;
    position: absolute;
    right: 0;
}

.upcoming_shows .a_big_x:before {
    background: url(../images/x_vector_1.svg) 0 0 no-repeat;
    left: -30px;
    top: 30px;
}
.upcoming_shows .a_big_x:after {
    background: url(../images/x_vector_2.svg) 0 0 no-repeat;
    top: -60px;
} */

.upcoming_shows .img_holder:before {
  content: "";
  background: url(../images/decor_1.png) 0 0 no-repeat transparent;
  background-size: contain;
  width: 40vw;
  position: absolute;
  left: 23vw;
  bottom: 0;
  height: 70vh;
  z-index: 5;
}

.upcoming_shows .container_fluid {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
}

.upcoming_shows .section_title {
  z-index: 19;
  position: absolute;
  top: 70px;
  right: 12vw;
}

.upcoming_shows .shows_list {
  width: 50vw;
  padding-right: 5vw;
  padding-top: 16vh;
  text-align: center;
  z-index: 10;
}

.upcoming_shows .singer_pic {
  display: block;
  width: 90%;
  height: 90%;
  /*background: url(../images/singer_img.webp) 0 0 no-repeat;*/
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  z-index: 10;
  bottom: 0;
}

/* Show List */
.shows_list .all_shows.nano {
  height: 58vh;
  width: 100%;
}

.shows_list .all_shows ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.shows_list .all_shows ul li {
  border-bottom: solid 1px var(--light_gray_color);
  padding: 1vw 0;
}

.shows_list .all_shows ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}

.shows_list .all_shows ul li .show_date {
  display: flex;
  align-items: center;
  font-size: 1.25vw;
  font-weight: 600;
}

.shows_list .all_shows ul li .show_date em {
  margin-left: 10px;
  font-size: 0.7291666666666666vw;
  font-style: normal;
  text-transform: uppercase;
}

.shows_list .all_shows ul li .show_name {
  flex: 1;
  margin-left: 70px;
  margin-right: 30px;
  font-size: 1.0416666666666665vw;
      font-weight: 600;
}

.shows_list .all_shows ul li .show_name em {
  display: block;
  font-size: 0.7291666666666666vw;
  font-style: normal;
  color: #817452;
}

.shows_list .all_shows ul li .show_location {
  flex: 1;
  margin-left: 70px;
  margin-right: 30px;
  font-size: 1.0416666666666665vw;
}

.shows_list .all_shows ul li .show_tickets {
  display: block;
  font-size: 0.7291666666666666vw;
  color: var(--primary_color);
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  position: relative;
}

.shows_list .all_shows ul li .show_tickets em {
  z-index: 10;
  font-style: normal;
  position: relative;
}

.shows_list .all_shows ul li .show_tickets em a {
  color: var(--white_color);
  text-decoration: none;
  padding: 20px 0;
}

.shows_list .all_shows ul li:hover .show_tickets em a{
  color: #000 !important;
}

.shows_list .all_shows ul li:hover .show_tickets:before {
  top: 50%;
  left: 50%;
  content: "";
  width: 4.5vw;
  height: 4.5vw;
  position: absolute;
  background-size: contain;
  transform: translate(-50%, -50%);
  background-position: center center;
  background: url(../images/btn_bg.svg) 0 0 no-repeat;
  z-index: 5;
}

.shows_list .all_shows ul li .event-tickets{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 80px;
}

.shows_list .all_shows ul li .show_tickets.Tickets{
  order: 2;
}

.shows_list .all_shows ul li.disabled { 
  pointer-events: none;
}

.shows_list .all_shows ul li.disabled a {
  cursor: no-drop;
}

.shows_list .all_shows ul li.disabled a .show_tickets {
  color: var(--medium_gray_color);
}

.shows_list .all_shows ul li.disabled .show_date,
.shows_list .all_shows ul li.disabled .show_name,
.shows_list .all_shows ul li.disabled .show_name em {
  color: var(--light_gray_color);
}

.shows_list .all_shows .show_nav{
  display: flex;
}

.shows_list .all_shows .show_nav li {
  margin: 0 10px;
  border: 0;
  padding: 0;
  text-transform: uppercase;
}

.shows_list .all_shows .show_nav li a {
  font-family: "black_maskpress";
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.shows_list.full_view .all_shows .show_nav li a:hover {
  color: #f5d420 !important;
  text-decoration: underline;
}

.shows_list .all_shows .show_nav li a:hover,
.shows_list .all_shows .show_nav li a:focus{
  color: var(--primary_color);
}

.shows_list .btn_primary {
  margin: 40px auto 0 auto;
  display: inline-block;
}

.shows_list.two_cols .all_shows ul {
  display: flex;
  flex-wrap: wrap;
}

.shows_list.two_cols .all_shows ul li {
  flex: 0 0 calc( 50% - 20px);
  margin: 0 10px;
}

.shows_list.two_cols .all_shows ul li .show_name {
  margin-left: 30px;
  margin-right: 30px;
}
.shows_list.two_cols .all_shows ul li:nth-of-type(10) ~ li {
  display: none;
}
.shows_list.two_cols .all_shows ul li .show_date{
    font-size: 1.7708333333333333vw;
}
.shows_list.two_cols .all_shows ul li .show_date em{
    font-size: 0.8333333333333334vw;
    line-height: 1.2;
}

.shows_list.full_view .all_shows ul li .show_name {
  font-size: 1.4583333333333333vw;
}

.shows_list.full_view .all_shows ul li .show_name em {
  font-size: 0.9375vw;
  color: #817452;
  font-weight: 400;
}

.shows_list.full_view .all_shows ul li .show_date {
  font-size: 2.5vw;
}

.shows_list.full_view .all_shows ul li .show_date em {
  font-size: 1.0416666666666665vw;
}

.shows_list.full_view .all_shows ul li .show_location {
  font-size: 1.25vw;
  display: flex;
}

.shows_list.full_view .all_shows ul li .show_location img {
  margin-right: 10px;
  width: 13px;
}

.shows_list.full_view .all_shows .show_nav li a{
  font-size: 1.3541666666666667vw;
}

.shows_list .all_shows .show_nav li.buy_tickets {
  font-size: 1.3541666666666667vw;
  font-family: "black_maskpress";
  font-weight: normal;
  font-style: normal;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}

.shows_list .all_shows .show_nav li.social {
  position: relative;
  padding-left: 20px;
  margin-left: 0;
}

.shows_list .all_shows .show_nav li.social .cj-share {
  display: none;
  position: absolute;
  top: -3px;
  align-items: center;
  justify-content: space-between;
  right: 30px;
  border: solid 1px #fff;
  padding: 2px 5px;
}

.shows_list .all_shows .show_nav li.social:hover .cj-share {
  display: flex;
}

.shows_list .all_shows .show_nav li.social:hover .cj-share a {
  margin: 0 10px;
}

/* Music Catalog */
.music_catalog {
  background: url(../images/catalog_bg.webp) 0 0 no-repeat transparent;
  background-size: 100% 100%;
  /*min-height: 800px;*/
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
  z-index: 20;
}

.music_catalog .container {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}

.music_catalog .left_colums {
  flex: 0 0 42%;
  min-width: 550px;
}

.music_catalog .right_colums {
  flex: 0 0 58%;
  overflow: hidden;
  max-width: 780px;
  position: relative;
}

.music_catalog .section_title {
  margin-left: 20px;
}

.music_catalog p {
    margin: 0;
    color: #fff;
    max-width: 100%;
    font-size: 20px;
    flex: 1;
    padding-left: 40px;
    padding-right: 20px;
}

.music_catalog .swiper {
  width: 100%;
  height: 66vh;
}

.music_catalog .catalogs_wrapper {
  width: 100%;
  /* padding-right: 3vw; */
  margin-top: 50px;
  text-align: center;
  z-index: 10;
}

.music_catalog .catalogs_wrapper .nano {
  height: 460px;
  width: 100%;
}

.music_catalog .catalogs_wrapper .catalog {
  display: none;
}

.music_catalog .catalogs_wrapper .catalog.active {
  display: block;
}

.music_catalog .swiper-slide {
  padding-right: 3.5vw;
  padding-left: 0;
}

.music_catalog .catalog .catalog_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-bottom: 20px;
}
.music_catalog .catalog .catalog_header .catalog_title {
  font-family: "black_maskpress";
  font-size: 2vw;
  font-weight: normal;
  font-style: normal;
  color: #fff;
}

.music_catalog .catalog .catalog_header .catalog_title em {
  font-style: normal;
  font-size: 1.1vw;
  font-family: "Open Sans";
}

.music_catalog .catalog .catalog_header .songs_count {
  font-size: 1.3vw;
  font-family: "Open Sans";
  /* margin-right: 3.5vw; */
  font-style: italic;
}

.music_catalog .catalog ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.music_catalog .catalog ul li {
  border-bottom: solid 1px var(--light_gray_color);
  padding: 1vw 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}

.music_catalog .catalog ul li ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}

.music_catalog .catalog ul li .song_button {
  background: url(../images/play_button.svg) 0 0 no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

.music_catalog .catalog ul li.active .song_button {
  background: url(../images/audio_icon.svg) 0 0 no-repeat;
}

.music_catalog .catalog ul li.active.paused .song_button {
  background: url(../images/pause_button.svg) 0 0 no-repeat;
}

.music_catalog .catalog ul li .song_name {
  flex: 1;
  margin: 0 20px;
}

.music_catalog .catalog ul li.active .song_name {
  color: var(--primary_color);
}

.music_catalog .catalog ul li .song_status {
  background: url(../images/spotify_icon.svg) right center no-repeat;
  width: 29px;
  height: 29px;
  background-size: contain;
  /* flex: 1; */
  min-width: 110px;
  /* display: flex; */
  display: none;
  justify-content: flex-end;
}

.music_catalog .catalog ul li .song_status em {
  display: none;
}

.music_catalog .catalog ul li.active .song_status {
  background: none;
}

.music_catalog .catalog ul li.active .song_status em {
  display: block;
}

.music_catalog .catalog .source_list {
  list-style: none;
}

.music_catalog .catalog .source_list li {
  padding: 0;
  margin: 0 0 0 6px;
  border: 0;
}

.music_catalog .catalog .source_list li:first-of-type {
  margin: 0;
}

.music_catalog .catalog .source_list li a {
  text-decoration: none;
  color: #fff;
  margin-left: 10px;
}
.music_catalog .catalog .source_list li a:hover {
  color: var(--primary_color);
}
.music_catalog .catalog .source_list li img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.music_catalog .catalog .source_list li:hover img {
  filter: invert(1);
  filter: invert(0.5) sepia(1) saturate(8) hue-rotate(16deg);
}

@media only screen and (max-width: 1520px) {
  .music_catalog .left_colums {
    padding-right: 40px;
  }
}

/* Albums Carosuel */
.albums_carosuel_wrapper {
  position: relative;
  overflow: hidden;
}

.albums_carosuel_wrapper .slick-initialized .music-album-item{display:block;}
.albums_carosuel_wrapper .music_album_carousel{
    max-height: 600px;
    overflow: hidden;
}
 
.albums_carosuel_wrapper .music_album_carousel .music-album-slider {
}

.albums_carosuel_wrapper .music_album_carousel .music-album-item {
position: relative;
}

.albums_carosuel_wrapper .music_album_carousel .music-album-body {
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
}
.albums_carosuel_wrapper .music_album_carousel .music-album-body img {
border: 1px solid #807452;
box-shadow: -11px 0px 24px 0px rgba(0, 0, 0, 0.1),
    -43px 0px 43px 0px rgba(0, 0, 0, 0.09),
    -96px 0px 58px 0px rgba(0, 0, 0, 0.05),
    -171px 0px 68px 0px rgba(0, 0, 0, 0.01),
    -267px 0px 75px 0px rgba(0, 0, 0, 0);
}

.albums_carosuel_wrapper .music_album_carousel .catelog-meta {
display: none;
margin-top: 15px;
/* display: flex; */
align-items: center;
justify-content: space-between;
}

.albums_carosuel_wrapper .music_album_carousel .catelog-meta h5 {
margin: 0;
line-height: 1;
font-size: 1vw;
font-family: "black_maskpress";
letter-spacing: 2px;
font-weight: normal;
}

.albums_carosuel_wrapper .music_album_carousel .catelog-meta span {
font-size: 0.8vw;
color: #58595b;
}

.albums_carosuel_wrapper .music_album_carousel .slick-center .catelog-meta {
display: flex;
}

.albums_carosuel_wrapper .music_album_carousel .slick-center .music-album-body {
background-image: url(../images/team-img-bg.png);
padding: 20px;
}
.albums_carosuel_wrapper .music_album_carousel .slick-track {
padding: 100px 0;
}
.albums_carosuel_wrapper .music_album_carousel .slick-slide .music-album-item {
transition: all 300ms ease;
}
.albums_carosuel_wrapper .music_album_carousel .slick-active .music-album-item {
transform: scale(0.9);
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
}
.albums_carosuel_wrapper .music_album_carousel .slick-active + .slick-active .music-album-item {
transform: scale(1.2);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
.albums_carosuel_wrapper .music_album_carousel .slick-active + .slick-current .music-album-item {
z-index: 5;
transform: scale(1.7);
-webkit-transform: scale(1.7);
-moz-transform: scale(1.7);
-ms-transform: scale(1.7);
-o-transform: scale(1.7);
}
.albums_carosuel_wrapper .music_album_carousel .slick-current + .slick-active .music-album-item {
    z-index: 4;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}
.albums_carosuel_wrapper .music_album_carousel
    .slick-current
    + .slick-active
    + .slick-active
    .music-album-item {
    z-index: 3;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
}
 
/* Merchandise Shop */
.merch_shop {
  width: 100%;
  background: url(../images/merch-shop-bg.webp) 0 0 no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 155px 0 100px 0;
  margin-top: -60px;
}
.merch_shop:before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2023/10/decor.png) 0 0 no-repeat;
  left: 0;
  top: 10%;
  width: 25.260416666666668vw;
  height: 30.989583333333332vw;
}
.merch_shop:after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2023/10/decor-2.png) 0 0 no-repeat;
  right: 0;
  bottom: 10%;
  width: 24.791666666666668vw;
  height: 17.083333333333332vw;
}
.b_scratch_shape {
  display: block;
  width: 16vw;
  height: 20vw;
  background: url(/wp-content/uploads/2023/10/merch-scratch-img.png) 0 0
    no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  z-index: 0;
  top: -60px;
  filter: grayscale(1);
  opacity: 0.5;
}
.b_x_shape {
  display: block;
  width: 20vw;
  height: 20vw;
  background: url(http://devcodyjinks.kinsta.cloud/wp-content/uploads/2023/10/merch-x-img.png)
    0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  z-index: 0;
  bottom: 50px;
  opacity: 0.5;
}
.merch_shop .head-sec {
  align-items: flex-start;
  margin-bottom: 10px;
  align-items: center;
}

.merch_shop .head-sec p {
  flex: 1;
  color: #fff;
  padding: 0;
  margin-left:auto;
  max-width: 420px;
}
.merch_shop_para{
        margin-bottom: 60px;
}
.merch_shop_para br{
    display:none;
}

.merch_shop .head-sec h2 {
  margin: 0;
  line-height:1;
}

/*  */
.product_listing {
  margin-top: 20px;
}

.product_listing ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product_listing ul li {
  flex: 0 0 33%;
  padding: 0 30px 60px 30px;
  position: relative;
}

.product_listing ul li:after {
  content: "";
  background: url(../images/separator.svg) 0 0 no-repeat;
  width: 50px;
  height: 60%;
  position: absolute;
  right: -10%;
  background-size: contain;
  top: -10%;
  -webkit-transition: top 1s ease-out;
  transition: top 1s ease-out;
}

.product_listing.effects ul li:after {
  top: 10%;
}

.product_listing ul li:nth-child(3n)::after {
  display: none;
}

.product_listing ul li a {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 10;
  position: relative;
}

.product_listing ul li a .product_img {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
}

.product_listing ul li a .product_img:after {
  content: "";
  background: url(../images/product_shadow.png) center center no-repeat
    transparent;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
}

.product_listing ul li a .product_img img {
  max-width: 100%;
  object-fit: contain;
  max-height: 90%;
}

.product_listing ul li a .title {
  font-family: "black_maskpress";
  font-style: normal;
  font-weight: 400;
  font-size: 1.9791666666666665vw;
  color: #fff;
}

.product_listing ul li:hover a .title {
  color: var(--primary_color);
}

.product_listing .a_splash {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 5;
  height: 80%;
  top: -30px;
  text-align: center;
}

.product_listing .a_splash img {
  object-position: center center;
  height: 0;
  width: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: relative;
}

.product_listing ul li:hover .a_splash img {
  animation: splashAnimation 0.1s forwards;
}

@keyframes splashAnimation {
  0% {
    width: 0;
    height: 0%;
    opacity: 0;
    left: 20%;
  }
  50% {
    width: 250px;
    height: 50%;
    opacity: 0.5;
    left: 10%;
  }
  100% {
    width: 500px;
    height: 100%;
    opacity: 1;
    left: 0;
  }
}

/* Audio Player */

.player_holder {
  /* display: flex; */
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  z-index: 10;
  bottom: 130px;
  left: 0;
}

.player_holder .get-it-on-github {
  margin-top: 24px;
  margin-bottom: 24px;
  font-family: "Roboto";
  color: #55606e;
}

.audio.green-audio-player {
  width: 500px;
  min-width: 300px;
  height: 56px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 4px;
  user-select: none;
  -webkit-user-select: none;
  background-color: #000;
  max-width: 95%;
  margin: 0 auto;
}

.audio.green-audio-player .play-pause-btn {
  display: none;
  cursor: pointer;
}

.audio.green-audio-player .play-pause-btn svg path {
  fill: var(--primary_color);
}

.audio.green-audio-player .spinner {
  width: 18px;
  height: 18px;
  background-image: url(../images/loading.png);
  background-size: cover;
  background-repeat: no-repeat;
  animation: spin 0.4s linear infinite;
}
.audio.green-audio-player .slider {
  display: none;
  flex-grow: 1;
  background-color: #d8d8d8;
  cursor: pointer;
  position: relative;
}
.audio.green-audio-player .slider .progress {
  background-color: var(--primary_color);
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}
.audio.green-audio-player .slider .progress .pin {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: var(--primary_color);
  position: absolute;
  pointer-events: all;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.32);
}
.audio.green-audio-player .controls {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #fff;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  margin-left: 24px;
  margin-right: 24px;
}
.audio.green-audio-player .controls .slider {
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 2px;
  height: 4px;
}
.audio.green-audio-player .controls .slider .progress {
  width: 0;
  height: 100%;
}
.audio.green-audio-player .controls .slider .progress .pin {
  right: -8px;
  top: -6px;
}
.audio.green-audio-player .controls span {
  cursor: default;
}
.audio.green-audio-player .volume {
  position: relative;
  display: none;
}
.audio.green-audio-player .volume .volume-btn {
  cursor: pointer;
}
.audio.green-audio-player .volume .volume-btn.open path {
  fill: var(--primary_color);
}
.audio.green-audio-player .volume .volume-controls {
  width: 30px;
  height: 135px;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 7px;
  position: absolute;
  left: -3px;
  bottom: 52px;
  flex-direction: column;
  align-items: center;
  display: flex;
}
.audio.green-audio-player .volume .volume-controls.hidden {
  display: none;
}
.audio.green-audio-player .volume .volume-controls .slider {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 6px;
  border-radius: 3px;
}
.audio.green-audio-player .volume .volume-controls .slider .progress {
  bottom: 0;
  height: 100%;
  width: 6px;
}
.audio.green-audio-player .volume .volume-controls .slider .progress .pin {
  left: -5px;
  top: -8px;
}
svg,
img {
  display: block;
}
html,
body {
  height: 100%;
}

@keyframes spin {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(1turn);
  }
}

/* Nano Scroll */
body .nano {
  width: 500px;
  height: 500px;
}
body .nano > .nano-content {
  padding-right: 3.5vw;
}
body .nano > .nano-pane {
  width: 8px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}
body .nano > .nano-pane > .nano-slider {
  background: var(--primary_color);
}

/* Audio Stream */
#progressBarWrapper {
  width: 57%;
  height: 100%;
  position: absolute;
  margin: 0 auto;
  left: 115px;
  overflow: hidden;
}

#progressBarWrapper svg {
  position: absolute;
  top: -6px;
  left: -15px;
  width: 100%;
  object-fit: contain;
  z-index: 10;
  height: 65px;
  fill: var(--primary_color);
}

#progressBarWrapper #progressBar_1 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  left: 0;
  z-index: 10;
}


.contact-info-widget {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.604166666666667vw;
    margin-bottom: 0.5208333333333333vw;
    gap:3vw;
}

.contact-info-widget h3 {
    font-size: 1.4583333333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    font-family: "black_maskpress";
    margin: 0;
}

.info-detail span {
    color: #58595B;
    font-size: 1.1458333333333333vw;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    font-family: "black_maskpress";
    margin-right: 0.5208333333333333vw;
}

.info-detail a {
    color: #fff;
}

.info-detail {
    display: flex;
    align-items: center;
    line-height: 1;
}


.catalogs_wrapper.wow.fadeInLeft {
  min-height: auto !important;
}

.music-album-item {
  cursor: pointer;
}