@charset 'UTF-8';
.button {
  font-family: "ibmSemi";
  display: inline-block;
  cursor: pointer;
  height: 70px;
  line-height: 62px;
  min-width: 190px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  border-radius: 35px;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: background-color 0.35s ease-in, color 0.25s ease-in-out;
}
.button i {
  margin-right: 10px;
}
.button svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.button svg path {
  transition: fill 0.35s ease-in-out;
  fill: #fff;
}
.button:hover {
  color: #000;
  background-color: transparent;
}
.button:hover svg path {
  fill: #000;
}
.button.large {
  min-width: 410px;
}
.button.small {
  min-width: 135px;
  height: 40px;
  line-height: 36px;
  font-size: 14px;
}
.button.small svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.button.reverse {
  background-color: transparent;
  color: #000;
}
.button.reverse svg path {
  fill: #000;
}
.button.reverse:hover {
  background-color: #000;
  color: #fff;
}
.button.reverse:hover svg path {
  fill: #fff;
}
.button.white {
  background-color: #fff;
  color: #fff;
  border: 1px solid #fff;
}
.button.white:hover {
  background-color: transparent;
}
.button.white.reverse {
  background-color: transparent;
}
.button.white.reverse:hover {
  color: #000;
  background-color: #fff;
}
.link {
  font-family: "ibmSemi";
  display: inline-block;
  font-size: 20px;
  padding-bottom: 2px;
  position: relative;
  overflow: hidden;
}
.link:first-of-type {
  margin-right: 40px;
}
.link::after {
  content: "";
  width: 110%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: -5%;
  transform: scaleX(1);
  transition: transform 0.2s linear;
}
.link:hover::after {
  transform: scaleX(0.3);
}
.link.large {
  font-size: 30px;
  padding-bottom: 10px;
}
.link.large::after {
  height: 4px;
}
.link.white {
  color: #fff;
}
.link.white::after {
  background-color: #fff;
}
.link-reverse {
  font-family: "ibmSemi";
  display: inline-block;
  padding-bottom: 2px;
  position: relative;
}
.link-reverse::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.2s linear;
}
.link-reverse:hover::after {
  transform: scaleX(1);
}
.link-reverse.large {
  font-size: 30px;
  padding-bottom: 10px;
}
.link-reverse.large::after {
  height: 4px;
}
.link-reverse.white {
  color: #fff;
}
.link-reverse.white::after {
  background-color: #fff;
}
@media only screen and (max-width: 450px) {
  .button.large {
    min-width: 100%;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
/* Arrows */
.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -25px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 12px;
  padding: 0;
  background-color: #df8ed1;
  border-radius: 100%;
  cursor: pointer;
}
.slick-dots li.slick-active {
  background-color: #f46772;
}
.slick-dots li::before {
  display: none;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 0;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 0;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 80px;
  height: 65px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  z-index: 1;
  left: 0;
  background-image: url('/static/web/images/prev.png');
}
.slick-next {
  left: auto;
  right: 0;
  background-image: url('/static/web/images/next.png');
}
.slick-dots li.slick-active button:before {
  color: black;
}
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}
[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}
[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}
[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}
[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}
[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}
[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}
[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}
[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}
[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}
[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}
[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}
[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}
[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}
[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}
[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}
[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}
[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}
[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}
[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}
[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}
[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}
[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}
[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}
[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}
[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}
[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}
[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}
[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}
[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}
[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}
[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}
[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}
[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}
[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}
[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}
[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}
[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}
[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}
[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}
[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}
[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}
[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}
[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}
[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}
[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}
[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}
[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}
[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}
[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}
[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}
[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}
[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}
[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}
[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}
[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}
[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}
[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}
[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}
[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}
[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}
[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}
[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}
[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}
[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}
[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}
[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}
[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}
[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}
[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}
[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}
[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}
[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}
[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}
[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}
[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}
[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}
[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}
[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}
[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}
[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}
[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}
[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}
[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}
[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}
[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}
[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}
[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}
[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}
[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}
[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}
[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}
[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}
[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}
[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}
[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}
[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}
[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}
[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}
[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}
[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}
[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}
[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}
[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}
[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}
[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}
[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}
[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}
[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}
[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}
[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}
[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}
[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}
[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}
[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}
[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}
[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}
[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}
[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}
[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}
[data-aos][data-aos][data-aos-easing="linear"],
body[data-aos-easing="linear"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
[data-aos][data-aos][data-aos-easing="ease"],
body[data-aos-easing="ease"] [data-aos] {
  transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-easing="ease-in"],
body[data-aos-easing="ease-in"] [data-aos] {
  transition-timing-function: ease-in;
}
[data-aos][data-aos][data-aos-easing="ease-out"],
body[data-aos-easing="ease-out"] [data-aos] {
  transition-timing-function: ease-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-out"],
body[data-aos-easing="ease-in-out"] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-easing="ease-in-back"],
body[data-aos-easing="ease-in-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
[data-aos][data-aos][data-aos-easing="ease-out-back"],
body[data-aos-easing="ease-out-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-back"],
body[data-aos-easing="ease-in-out-back"] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos][data-aos][data-aos-easing="ease-in-sine"],
body[data-aos-easing="ease-in-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
[data-aos][data-aos][data-aos-easing="ease-out-sine"],
body[data-aos-easing="ease-out-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-sine"],
body[data-aos-easing="ease-in-out-sine"] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
[data-aos][data-aos][data-aos-easing="ease-in-quad"],
body[data-aos-easing="ease-in-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quad"],
body[data-aos-easing="ease-out-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quad"],
body[data-aos-easing="ease-in-out-quad"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-cubic"],
body[data-aos-easing="ease-in-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-cubic"],
body[data-aos-easing="ease-out-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-cubic"],
body[data-aos-easing="ease-in-out-cubic"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos][data-aos][data-aos-easing="ease-in-quart"],
body[data-aos-easing="ease-in-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
[data-aos][data-aos][data-aos-easing="ease-out-quart"],
body[data-aos-easing="ease-out-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-aos][data-aos][data-aos-easing="ease-in-out-quart"],
body[data-aos-easing="ease-in-out-quart"] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
[data-aos^="fade"][data-aos^="fade"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^="fade"][data-aos^="fade"].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
[data-aos="fade-up"] {
  transform: translate3d(0, 100px, 0);
}
[data-aos="fade-down"] {
  transform: translate3d(0, -100px, 0);
}
[data-aos="fade-right"] {
  transform: translate3d(-100px, 0, 0);
}
[data-aos="fade-left"] {
  transform: translate3d(100px, 0, 0);
}
[data-aos="fade-up-right"] {
  transform: translate3d(-100px, 100px, 0);
}
[data-aos="fade-up-left"] {
  transform: translate3d(100px, 100px, 0);
}
[data-aos="fade-down-right"] {
  transform: translate3d(-100px, -100px, 0);
}
[data-aos="fade-down-left"] {
  transform: translate3d(100px, -100px, 0);
}
[data-aos^="zoom"][data-aos^="zoom"] {
  opacity: 0;
  transition-property: opacity, transform;
}
[data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}
[data-aos="zoom-in"] {
  transform: scale(0.6);
}
[data-aos="zoom-in-up"] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos="zoom-in-down"] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos="zoom-in-right"] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos="zoom-in-left"] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos="zoom-out"] {
  transform: scale(1.2);
}
[data-aos="zoom-out-up"] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos="zoom-out-down"] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos="zoom-out-right"] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos="zoom-out-left"] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}
[data-aos^="slide"][data-aos^="slide"] {
  transition-property: transform;
}
[data-aos^="slide"][data-aos^="slide"].aos-animate {
  transform: translateZ(0);
}
[data-aos="slide-up"] {
  transform: translate3d(0, 100%, 0);
}
[data-aos="slide-down"] {
  transform: translate3d(0, -100%, 0);
}
[data-aos="slide-right"] {
  transform: translate3d(-100%, 0, 0);
}
[data-aos="slide-left"] {
  transform: translate3d(100%, 0, 0);
}
[data-aos^="flip"][data-aos^="flip"] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform;
}
[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-100deg);
}
[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-right"] {
  transform: perspective(2500px) rotateY(100deg);
}
[data-aos="flip-right"].aos-animate {
  transform: perspective(2500px) rotateY(0);
}
[data-aos="flip-up"] {
  transform: perspective(2500px) rotateX(-100deg);
}
[data-aos="flip-up"].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
[data-aos="flip-down"] {
  transform: perspective(2500px) rotateX(100deg);
}
[data-aos="flip-down"].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
.luna-container,
.luna .luna-controls {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-around;
  -moz-box-pack: space-around;
  -ms-flex-pack: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  max-width: 100%;
}
.luna-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  align-items: flex-end;
}
.luna-controls {
  max-width: 252px;
  margin-right: 30px;
}
.luna-audio-tag {
  display: none;
}
.luna-volume {
  display: none;
}
.luna-progress-bar {
  margin: 0 10px;
  max-width: 600px;
  width: 100%;
}
.luna-progress-bar {
  min-width: 80px;
}
.luna-volume {
  max-width: 50px;
  min-width: 50px;
}
.luna button {
  min-width: 26px;
  min-height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  outline-width: 0;
  border-width: 0;
  cursor: pointer;
  transition: all 0.2s linear;
}
.luna .luna-prev:hover,
.luna .luna-next:hover,
.luna .luna-play:focus,
.luna .luna-pause:focus {
  background-position: right center;
}
.luna .luna-prev {
  background-image: url('/static/web/images/icons/player/previous.svg');
  opacity: 0.3;
  min-width: 15px;
  min-height: 15px;
  margin-right: 20px;
  transition: all 0.2s linear;
}
.luna .luna-next {
  background-image: url('/static/web/images/icons/player/next.svg');
  opacity: 0.3;
  min-width: 15px;
  min-height: 15px;
  margin-left: 20px;
  transition: all 0.2s linear;
}
.luna .luna-play {
  background-image: url('/static/web/images/icons/player/play.svg');
}
.luna .luna-pause {
  background-image: url('/static/web/images/icons/player/pause.svg');
  display: none;
}
.luna-prev:hover,
.luna .luna-next:hover {
  opacity: 1;
}
.luna .luna-play.play {
  background-image: url('/static/web/images/icons/player/pause.svg');
  transition: all 0.2s linear;
}
.luna .luna-progress-bar,
.luna .luna-volume {
  border-radius: 0px;
  height: 1px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  padding: 5px 0;
  margin: 0;
}
.luna .luna-progress-bar::after,
.luna .luna-volume::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 5px;
  background-color: #f3f4f8;
}
.luna .ui-slider-handle {
  min-width: 20px;
  min-height: 20px;
  background-color: transparent;
  background-image: url('/static/web/icons/circle.png');
  background-repeat: no-repeat;
  top: 0;
  outline-width: 0;
  cursor: pointer;
}
.luna .luna-time-current,
.luna .luna-time-total {
  margin: auto 5px;
  font-size: 16px;
  color: #000;
  position: absolute;
  top: -15px;
}
.luna .luna-time-current {
  left: 120px;
}
.luna .luna-time-total {
  right: 10px;
}
.luna .luna-speaker {
  min-width: 16px;
  min-height: 21px;
  max-width: 16px;
  background-repeat: no-repeat;
  background-image: url('/static/web/icons/speaker.png');
}
@media (max-width: 600px) {
  .luna .luna-progress-bar,
  .luna .luna-time-current,
  .luna .luna-time-total,
  .luna .luna-speaker,
  .luna .luna-volume {
    display: none;
  }
}
.luna .ui-slider-handle {
  width: 100%!important;
  background-color: #000;
  transform: translateX(-100%);
  top: 5px!important;
  margin-left: 0!important;
  height: 1px!important;
  min-height: 1px;
}
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chosen-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  z-index: 1010;
  width: 100%;
  border-top: 0;
  background: #fff;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
.chosen-container.chosen-with-drop .chosen-drop {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
}
.chosen-container a {
  cursor: pointer;
}
.chosen-container .search-choice .group-name,
.chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999;
}
.chosen-container .search-choice .group-name:after,
.chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top;
}
/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.chosen-container-single .chosen-default {
  color: #999;
}
.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url("/static/web/css/chosen-sprite.png") -42px 1px no-repeat;
  font-size: 1px;
}
.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
}
.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  background: url("/static/web/css/chosen-sprite.png") no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(100% 100%);
  clip-path: inset(100% 100%);
}
/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none;
}
.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chosen-container .chosen-results li.highlighted {
  color: #fff;
}
.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4;
}
.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto;
  background-color: #fff;
  cursor: text;
}
.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
  width: 25px;
}
.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  max-width: 100%;
  border-radius: 3px;
  background-color: #eeeeee;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  color: #333;
  line-height: 13px;
  cursor: default;
}
.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word;
}
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  color: #666;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chosen-container-active.chosen-with-drop .chosen-single {
  border: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important;
}
/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.chosen-disabled .chosen-single {
  cursor: default;
}
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right;
}
.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.chosen-rtl .chosen-choices li {
  float: right;
}
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
/* @end */
.chosen-container.chosen-container-single {
  background: white;
  border: none;
  max-width: 100%;
}
.chosen-search {
  display: none;
}
.chosen-container-single .chosen-single {
  line-height: 50px;
  font-family: "ibmSemi";
}
.chosen-container b {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAMAAAAM9FwAAAAAG1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUUeIgAAAACXRSTlMAESIzRIiZzO5OGEO9AAAAMUlEQVR42k3IxQEAQQzDQIfTf8MHi9ZvBFNQ4og2chWQbWQBneVzjtdZPmeazjCf7RdKTAD6DL5nDQAAAABJRU5ErkJggg==);
  transition: transform 200ms linear;
  width: 17px !important;
  height: 9px !important;
  margin-top: 23px;
  margin-right: 30px;
}
.chosen-with-drop b {
  transform: rotate(180deg);
}
.chosen-container-single .chosen-single span {
  padding-left: 23px;
}
.chosen-container-single .chosen-drop {
  padding-left: 12px;
  padding-bottom: 12px;
}
.chosen-container .chosen-results {
  color: black;
  max-height: 300px;
  overflow: auto !important;
}
.chosen-container-single .chosen-single div {
  right: 10px;
}
.chosen-container .chosen-results li {
  padding: 9px 6px;
  color: black !important;
}
.chosen-container .chosen-results li:hover {
  opacity: 0.9;
  background-color: black;
  color: white !important;
}
.text-image-player {
  padding-top: calc(80px + 3.90625vw);
  padding-bottom: calc(80px + 3.90625vw);
}
.text-image-player.small-padding {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.text-image-player .row .content-col {
  padding-top: 90px;
  padding-right: 50px;
}
.text-image-player .row .content-col.text-padding-big {
  padding-top: 140px;
}
.text-image-player .row .photo-col {
  text-align: right;
  position: relative;
}
.text-image-player .row .photo-col .player-thumbnail {
  cursor: pointer;
  position: absolute;
  top: 165px;
  left: 60px;
}
.text-image-player .row.flex-row-reverse .content-col {
  padding-right: 15px;
}
.text-image-player .row.flex-row-reverse .photo-col {
  text-align: left;
}
.text-image-player .row.flex-row-reverse .photo-col .player-thumbnail {
  left: auto;
  right: 70px;
}
@media only screen and (max-width: 991px) {
  .text-image-player .row .flex-row-reverse {
    flex-direction: row!important;
  }
  .text-image-player .row .content-col {
    order: 2;
    padding-top: 150px;
    padding-right: 15px;
  }
  .text-image-player .row .content-col.text-padding-big {
    padding-top: 150px;
  }
  .text-image-player .row .photo-col {
    order: 1;
    text-align: center;
    position: relative;
  }
  .text-image-player .row .photo-col .player-thumbnail {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
  }
  .text-image-player .row.flex-row-reverse .content-col {
    padding-right: 15px;
  }
  .text-image-player .row.flex-row-reverse .photo-col {
    text-align: center;
  }
  .text-image-player .row.flex-row-reverse .photo-col .player-thumbnail {
    left: 50%;
    right: auto;
  }
}
.creators {
  overflow: hidden;
}
.creators .row {
  min-height: 80vh;
  align-items: center;
}
.creators .row .photos-box {
  display: flex;
  flex-direction: row;
  margin-top: calc(50px + 3.125vw);
}
.creators .row .photos-box .column {
  flex: 0 0 50%;
}
.creators .row .photos-box .column .box h3 {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  width: 100%;
}
.creators .row .photos-box .column .box h3 img {
  max-width: 30px;
  margin-left: 10px;
  margin-top: 3px;
}
.creators .row .photos-box .column:first-of-type {
  margin-top: calc(50px + 3.125vw);
  padding-right: 15px;
}
.creators .row .photos-box .column:last-of-type {
  padding-left: 15px;
}
@media only screen and (max-width: 991px) {
  .creators {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .creators.creators-hero {
    padding-top: 150px;
  }
  .creators .row .photos-box {
    margin-bottom: 0;
  }
  .creators .row .photos-box .column {
    flex: 0 0 50%;
  }
  .creators .row .photos-box .column .box h3 {
    display: flex;
    text-transform: uppercase;
  }
  .creators .row .photos-box .column .box h3 img {
    max-width: 30px;
    margin-left: 10px;
    margin-top: 3px;
  }
}
.creators-slider .slider-container {
  padding-left: 7.5vw;
  padding-right: 0;
}
.creators-slider .heading-row {
  margin-bottom: 50px;
  align-items: center;
}
.creators-slider .heading-row [class^="col-"]:last-of-type {
  text-align: right;
}
.creators-slider .slider-row .slick-list {
  padding: 0!important;
}
.creators-slider .slider-row .slide {
  margin-right: 10px;
  margin-left: 20px;
  max-width: 350px!important;
}
.creators-slider .slider-row .photo-box {
  position: relative;
}
.creators-slider .slider-row .photo-box img {
  width: 100%;
}
.creators-slider .slider-row .photo-box .player-thumbnail {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 90%;
  display: flex;
  align-items: center;
  padding: 5px;
  max-width: unset;
}
.creators-slider .slider-row .photo-box .player-thumbnail img {
  margin-right: 20px;
  flex: 0 0 20%;
  max-width: 90px;
  width: auto;
}
.creators-slider .slider-row .photo-box .player-thumbnail .details p {
  font-family: "ibmSemi";
  margin-bottom: 0;
  text-transform: uppercase;
}
.creators-slider .slider-row .photo-box .player-thumbnail .details span {
  display: flex;
}
.creators-slider .slider-row .photo-box .player-thumbnail .details span img {
  max-width: 10px;
}
.creators-slider .slider-row .description-box {
  margin-top: 20px;
}
.creators-slider .slider-row .description-box h3 {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .creators-slider .slider-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .creators-slider .slider-row .slide {
    max-width: 100%!important;
  }
}
@media only screen and (max-width: 767px) {
  .creators-slider .heading-row [class^="col-"]:first-of-type {
    margin-bottom: 30px;
  }
  .creators-slider .heading-row [class^="col-"]:last-of-type {
    text-align: left;
  }
  .creators-slider .slider-row .slide {
    margin-left: 10px;
  }
}
.text-over-image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.text-over-image .container1614 {
  position: relative;
  z-index: 2;
}
.text-over-image .container1614 .row {
  padding-bottom: calc(80px + 3.38541667vw);
  min-height: 100vh;
  align-items: flex-end;
  color: #fff;
}
.text-over-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .text-over-image .player-small {
    left: 15px!important;
    top: 15px!important;
  }
}
.get-started-three-cols {
  padding-top: calc(80px + 4.94791667vw);
  padding-bottom: calc(80px + 4.94791667vw);
}
.get-started-three-cols .box {
  height: 100%;
  max-width: 500px;
  border: 1px solid #000;
  padding: 65px;
}
.get-started-three-cols .box h3 {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
.get-started-three-cols .box .button {
  margin-bottom: 50px;
}
.get-started-three-cols .box p {
  font-family: "ibmSemi";
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .get-started-three-cols [class^='col-'] {
    margin-bottom: 30px;
  }
}
.text-image {
  padding-top: 60px;
  padding-bottom: 60px;
}
.text-image .row.flex-row-reverse {
  justify-content: flex-end;
}
.text-image .row .icon-text {
  display: flex;
  margin-bottom: 25px;
}
.text-image .row .icon-text .icon-box {
  margin-right: 40px;
}
.text-image .row .icon-text .icon-box img {
  width: 30px;
  max-width: 30px;
  margin-top: 8px;
  max-height: 30px;
}
.text-image .row .icon-text .icon-box i {
  font-size: 30px;
}
.text-image .row .icon-text .content-box h4 {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .text-image .row [class^='col-'] {
    margin-bottom: 30px;
  }
}
[data-public-navigation-route="usage-policy"] .text-image {
  padding: 152px 0 80px;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 {
  width: calc(100% - 64px);
  max-width: 1280px;
  padding: 0;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  -moz-column-gap: clamp(40px, 6vw, 80px);
       column-gap: clamp(40px, 6vw, 80px);
  margin: 0;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row > [class^="col-"] {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 0;
  margin-bottom: 0;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row > [class^="col-"] > h2 {
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.15;
  margin: 0 0 36px;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row > [class^="col-"] > h2:empty {
  display: none;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row .icon-text {
  margin-bottom: 36px;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row .icon-text .icon-box {
  flex: 0 0 30px;
  margin-right: 24px;
}
[data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row .icon-text .content-box {
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (max-width: 991px) {
  [data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 767px) {
  [data-public-navigation-route="usage-policy"] .text-image {
    padding: 96px 0 48px;
  }
  [data-public-navigation-route="usage-policy"] .text-image > .container1614 {
    width: calc(100% - 40px);
  }
  [data-public-navigation-route="usage-policy"] .text-image > .container1614 > .row .icon-text .icon-box {
    margin-right: 16px;
  }
}
.video-module .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
}
.video-module .video-container .video-poster {
  background-size: cover;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform 0.2s linear;
}
.video-module .video-container .iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-module .video-container .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-module .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-module .video-container .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
  border-radius: 0;
}
.video-module .video-container:hover .video-poster {
  transform: scale(1.05);
}
.hero-two-cols {
  padding-top: calc(80px + 3.38541667vw);
  padding-bottom: calc(80px + 3.38541667vw);
}
.hero-two-cols .row {
  align-items: center;
  color: #fff;
}
.hero-two-cols .row [class^='col-'] img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .hero-two-cols {
    padding-top: 100px;
  }
  .hero-two-cols .row [class^='col-'] {
    margin-bottom: 30px;
  }
  .hero-two-cols .row [class^='col-'] img {
    width: 100%;
  }
}
.creators-archive {
  background-color: #f3f4f8;
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.creators-archive .container1614 .form-row {
  margin-bottom: 75px;
}
.creators-archive .container1614 .form-row select {
  width: 100%;
  padding-left: 25px;
  height: 70px;
  line-height: 70px;
  border: 1px solid #000;
  font-family: "ibmSemi";
}
.creators-archive .container1614 .form-row select option {
  padding-top: 15px;
  padding-bottom: 15px;
}
.creators-archive .container1614 .archive-row [class^='col-'] {
  margin-bottom: 70px;
}
.creators-archive .container1614 .archive-row .photo-link {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.creators-archive .container1614 .archive-row .photo-link .creator {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform 0.2s linear;
}
.creators-archive .container1614 .archive-row .photo-link .ikson-dec {
  position: absolute;
  top: 10px;
  right: 10px;
}
.creators-archive .container1614 .archive-row .photo-link:hover .creator {
  transform: scale(1.05);
}
.creators-archive .container1614 .archive-row h4 {
  display: flex;
  text-transform: uppercase;
}
.creators-archive .container1614 .archive-row h4 img {
  max-width: 30px;
  margin-left: 10px;
  margin-top: 3px;
  width: 30px;
  height: 30px;
}
.creators-archive .container1614 .pagination-row .pagination {
  padding-top: 50px;
  border-top: 1px solid #000;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.creators-archive .container1614 .pagination-row .pagination li {
  padding-left: 0;
  margin-right: 10px;
  display: inline-block;
  border: 1px solid #171b26;
  min-width: 45px;
  min-height: 45px;
  line-height: 37px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s linear;
}
.creators-archive .container1614 .pagination-row .pagination li::before {
  display: none;
}
.creators-archive .container1614 .pagination-row .pagination li a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
  flex: 0 0 100%;
  transition: color 0.2s linear;
}
.creators-archive .container1614 .pagination-row .pagination li a svg {
  width: 15px;
  margin-top: -12px;
  transition: fill 0.2s linear;
}
.creators-archive .container1614 .pagination-row .pagination li a svg path {
  fill: #000;
}
.creators-archive .container1614 .pagination-row .pagination li.active {
  background-color: #000;
}
.creators-archive .container1614 .pagination-row .pagination li.active a {
  color: #fff;
}
.creators-archive .container1614 .pagination-row .pagination li:hover {
  background-color: #000;
}
.creators-archive .container1614 .pagination-row .pagination li:hover a {
  color: #fff;
}
.creators-archive .container1614 .pagination-row .pagination li:hover a svg path {
  fill: #fff;
}
.creators-archive .container1614 .pagination-row .pagination li.hide {
  display: none;
}
.creators-archive .container1614 .pagination-row .pagination li:first-of-type,
.creators-archive .container1614 .pagination-row .pagination li:last-of-type {
  border: none;
}
.creators-archive .container1614 .pagination-row .pagination li:first-of-type {
  margin-right: 40px;
}
.creators-archive .container1614 .pagination-row .pagination li:last-of-type {
  margin-left: 30px;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .creators-archive .container1614 .archive-row h4 {
    font-size: 60px;
    line-height: 1;
    display: block;
    text-transform: none;
  }
  .creators-archive .container1614 .archive-row h4 img {
    display: block;
    margin-top: 13px;
  }
  .creators-archive .container1614 .form-row {
    margin-bottom: 15px;
  }
  .creators-archive .container1614 .form-row [class^='col-'] {
    margin-bottom: 30px;
  }
}
.iframe-module {
  padding-top: calc(80px + 4.94791667vw);
  padding-bottom: calc(80px + 4.94791667vw);
}
.iframe-module .iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-module .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.hero-text {
  position: relative;
  background-size: cover;
  background-position: center;
}
.hero-text .container1614 {
  position: relative;
  z-index: 2;
}
.hero-text .container1614 .row {
  min-height: 100vh;
  align-items: flex-end;
  padding-bottom: calc(80px + 2.34375vw);
  color: #fff;
}
.hero-text .container1614 .row p {
  font-family: "ibm";
  line-height: 40px;
  margin-bottom: 40px;
}
.hero-text .container1614 .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  text-align: left;
}
.hero-text .container1614 .row .social-list li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  padding-left: 0;
}
.hero-text .container1614 .row .social-list li a {
  color: #fff;
  transition: opacity 0.3s ease-in;
}
.hero-text .container1614 .row .social-list li a i {
  font-size: 30px;
}
.hero-text .container1614 .row .social-list li a:hover {
  opacity: 0.5;
}
.hero-text .container1614 .row .social-list li:last-of-type {
  margin-right: 0;
}
.hero-text .container1614 .row .social-list li::before {
  display: none;
}
.hero-text .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.featured-text {
  padding-top: calc(80px + 3.38541667vw);
  padding-bottom: calc(80px + 3.38541667vw);
}
.two-iframes {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.two-iframes [class^="col"] {
  margin-bottom: 30px;
}
.two-iframes .heading-col {
  text-align: center;
  margin-bottom: 35px;
}
.two-iframes .iframe-box {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.two-iframes .iframe-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media only screen and (max-width: 991px) {
  .two-iframes .col-lg-6 {
    margin-bottom: 30px;
  }
}
.ikson-social-media {
  padding-top: calc(100px + 8.33333333vw);
}
.ikson-social-media .row {
  text-align: center;
}
.ikson-social-media .row .social-col {
  padding-top: calc(80px + 3.38541667vw);
  padding-bottom: calc(80px + 3.38541667vw);
  border-bottom: 1px solid #000;
}
.ikson-social-media .row .social-col img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.ikson-social-media .row .social-col .social-list {
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.ikson-social-media .row .social-col .social-list li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  padding-left: 0;
}
.ikson-social-media .row .social-col .social-list li a {
  transition: opacity 50ms ease-in;
}
.ikson-social-media .row .social-col .social-list li a i {
  font-size: 28px;
}
.ikson-social-media .row .social-col .social-list li a:hover {
  opacity: 0.5;
}
.ikson-social-media .row .social-col .social-list li:last-of-type {
  margin-right: 0;
}
.ikson-social-media .row .social-col .social-list li::before {
  display: none;
}
.ikson-social-media .row .social-col .social-list:first-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.ikson-social-media .row .social-col p {
  font-family: "ibmSemi";
  font-size: 20px;
  margin-bottom: 20px;
}
.ikson-social-media .row .social-col:last-of-type {
  border: none;
}
.hero-creator {
  padding-top: 155px;
  padding-bottom: calc(80px + 0.78125vw);
}
.hero-creator .row {
  position: relative;
  align-items: center;
}
.hero-creator .row .creator-img {
  margin-bottom: 50px;
}
.hero-creator .row h1 {
  font-size: calc(100px + 10.41666667vw);
  line-height: calc(80px + 8.33333333vw);
  position: absolute;
  left: 25%;
  font-size: calc(70px + 10.41666667vw);
  line-height: calc(61px + 8.33333333vw);
  position: relative;
  top: 0;
  left: -62%;
  margin-bottom: 76px;
}
.hero-creator .row .details-box {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-creator .row .details-box .main-info {
  display: flex;
  padding-right: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.hero-creator .row .details-box .main-info img {
  width: 40px;
}
.hero-creator .row .details-box .main-info .tooltip-trigger {
  margin-right: 20px;
  margin-top: 5px;
  cursor: pointer;
}
.hero-creator .row .details-box .main-info .tooltip-trigger .tooltip {
  position: absolute;
  background-color: #000;
  max-width: 320px;
  border-radius: 3px;
  padding: 5px;
  top: -30px;
  left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.hero-creator .row .details-box .main-info .tooltip-trigger .tooltip::after {
  content: '';
  background-color: #000;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -5px;
  transform: rotate(45deg);
}
.hero-creator .row .details-box .main-info .tooltip-trigger .tooltip p {
  font-family: "ibmSemi";
  color: #fff;
  font-size: 10px;
  line-height: 10px;
  margin-bottom: 0;
}
.hero-creator .row .details-box .main-info .tooltip-trigger:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.hero-creator .row .details-box .socials {
  margin-left: 30px;
}
@media only screen and (min-width: 1980px) {
  .hero-creator .row h1 {
    font-size: 300px;
    top: -50px;
  }
}
@media only screen and (max-width: 1450px) {
  .hero-creator .row h1 {
    position: static;
    font-size: 150px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-creator .row {
    align-items: center;
  }
  .hero-creator .row h1 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-creator .row .creator-img {
    margin-bottom: 50px;
    width: 100%;
  }
  .hero-creator .row h1 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-creator .row h1 {
    font-size: 60px;
  }
  .hero-creator .row .details-box {
    flex-wrap: wrap;
  }
  .hero-creator .row .details-box .main-info {
    border-right: none;
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  .hero-creator .row .details-box .socials {
    flex: 0 0 100%;
    margin-left: 0;
  }
  .hero-creator .row .details-box .socials ul {
    text-align: left;
  }
}
.related-creators {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.related-creators .heading-col {
  text-align: center;
  margin-bottom: 35px;
}
.related-creators [class^='col-']:not(heading-col) .photo-link {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.related-creators [class^='col-']:not(heading-col) .photo-link .creator {
  width: 100%;
  display: block;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.related-creators [class^='col-']:not(heading-col) .photo-link:hover .creator {
  opacity: 0.5;
}
.related-creators [class^='col-']:not(heading-col) .photo-link .tooltip-trigger {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.related-creators [class^='col-']:not(heading-col) .photo-link .tooltip-trigger .tooltip {
  position: absolute;
  background-color: #000;
  width: 200px;
  border-radius: 3px;
  padding: 5px;
  top: -45px;
  left: 20px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s linear;
}
.related-creators [class^='col-']:not(heading-col) .photo-link .tooltip-trigger .tooltip::after {
  content: '';
  background-color: #000;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: -5px;
  transform: rotate(45deg);
}
.related-creators [class^='col-']:not(heading-col) .photo-link .tooltip-trigger .tooltip p {
  font-family: "ibmSemi";
  color: #fff;
  font-size: 10px;
  line-height: 10px;
  margin-bottom: 0;
}
.related-creators [class^='col-']:not(heading-col) .photo-link .tooltip-trigger:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
.related-creators [class^='col-']:not(heading-col) h4 {
  display: flex;
  text-transform: uppercase;
}
.related-creators [class^='col-']:not(heading-col) h4 img {
  max-width: 30px;
  margin-left: 10px;
  margin-top: 3px;
}
.creator-picks {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.creator-picks .heading-col {
  text-align: center;
  margin-bottom: 35px;
}
.creator-picks .player-col table {
  width: 100%;
}
.creator-picks .player-col table tr {
  background-color: #fff;
  border-top: 1px solid #f3f4f8;
}
.creator-picks .player-col table tr.heading-tr {
  background-color: #f9fafc;
  padding: 15px;
  border-top: none;
}
.creator-picks .player-col table tr.heading-tr th {
  padding: 8px;
  font-family: "ibmSemi";
  text-transform: uppercase;
  font-size: 12px;
}
.creator-picks .player-col table tr.heading-tr th:first-of-type {
  text-align: center;
}
.creator-picks .player-col table tr td {
  padding: 8px;
}
.creator-picks .player-col table tr td.main {
  display: flex;
  align-items: center;
}
.creator-picks .player-col table tr td.main .play {
  margin-bottom: 0;
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
}
.creator-picks .player-col table tr td.main .play + a {
  display: inherit;
}
.creator-picks .player-col table tr td.main .play img {
  max-width: 20px;
  height: 20px;
}
.creator-picks .player-col table tr td.main img {
  width: 50px;
  margin-right: 10px;
}
.creator-picks .player-col table tr td.main h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.creator-picks .player-col table tr td p {
  margin-bottom: 0;
}
.creator-picks .player-col table tr td p.uploaded {
  font-size: 10px;
  font-family: "ibmSemi";
  text-transform: uppercase;
}
.creator-picks .player-col table tr td a.tag-link {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.creator-picks .player-col table tr td a.tag-link:hover {
  text-decoration: underline;
}
.creator-picks .player-col table tr td.links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.creator-picks .player-col table tr td.links .button {
  margin-top: -15px;
}
.creator-picks .player-col table tr td.links .social-list {
  margin-bottom: 0;
}
.creator-picks .player-col table tr td.links .social-list li {
  margin-right: 10px;
}
.creator-picks .player-col table tr td.links .social-list li a i {
  font-size: 20px;
}
@media only screen and (max-width: 1199px) {
  .creator-picks .player-col {
    overflow: auto;
  }
  .creator-picks .player-col table td {
    width: 20%;
  }
  .creator-picks .player-col table td.main {
    width: 275px;
    height: 100px;
  }
  .creator-picks .player-col table td.main h4 {
    font-size: 16px !important;
    text-transform: uppercase;
    margin-bottom: 7px;
  }
}
.timeline {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.timeline .container1614 {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
  position: relative;
}
.timeline .container1614::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #f3f4f8;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.timeline .row .content-col {
  margin-top: calc(80px + 4.94791667vw);
}
.timeline .row.negative-margin {
  margin-top: -15px;
}
.timeline [class^='col-'] {
  position: relative;
}
.timeline [class^='col-'] h2,
.timeline [class^='col-'] h3 {
  position: relative;
}
.timeline [class^='col-'] h2::after,
.timeline [class^='col-'] h3::after {
  content: '';
  position: absolute;
  width: 95px;
  height: 1px;
  background-color: #000;
}
.timeline [class^='col-'] h2::before,
.timeline [class^='col-'] h3::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #000;
  background-color: #fff;
}
.timeline [class^='col-'] .iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.timeline [class^='col-'] .iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.timeline [class^='col-']:nth-of-type(odd) {
  padding-right: calc(80px + 4.94791667vw);
}
.timeline [class^='col-']:nth-of-type(odd) h2::after {
  right: calc(-65px - 4.94791667vw);
  top: 35px;
}
.timeline [class^='col-']:nth-of-type(odd) h2::before {
  right: calc(-85px - 4.94791667vw);
  top: 30px;
  z-index: 2;
}
.timeline [class^='col-']:nth-of-type(odd) h3::after {
  right: calc(-65px - 4.94791667vw);
  top: 25px;
}
.timeline [class^='col-']:nth-of-type(odd) h3::before {
  right: calc(-85px - 4.94791667vw);
  top: 20px;
  z-index: 2;
}
.timeline [class^='col-']:nth-of-type(even) {
  padding-left: calc(80px + 4.94791667vw);
}
.timeline [class^='col-']:nth-of-type(even) h2::after {
  left: calc(-65px - 4.94791667vw);
  top: 35px;
}
.timeline [class^='col-']:nth-of-type(even) h2::before {
  left: calc(-85px - 4.94791667vw);
  top: 30px;
  z-index: 2;
}
.timeline [class^='col-']:nth-of-type(even) h3::after {
  left: calc(-65px - 4.94791667vw);
  top: 25px;
}
.timeline [class^='col-']:nth-of-type(even) h3::before {
  left: calc(-85px - 4.94791667vw);
  top: 20px;
  z-index: 2;
}
.timeline img {
  width: 100%;
}
.timeline .row {
  margin-bottom: 120px;
}
.timeline .row .content-col {
  margin-top: 200px;
}
.timeline .row [class^='col-']:nth-of-type(even) h2::after {
  right: calc(-65px - 4.94791667vw);
  left: auto;
}
.timeline .row [class^='col-']:nth-of-type(odd) h3::before {
  left: calc(-85px - 4.94791667vw);
  top: 20px;
  z-index: 2;
}
.timeline .row.negative-margin {
  margin-top: 90px;
  flex-direction: row-reverse;
}
.timeline .row.negative-margin [class^='col-']:nth-of-type(odd) {
  padding-left: calc(80px + 4.94791667vw);
}
.timeline .row.negative-margin [class^='col-']:nth-of-type(odd) h3::after {
  left: calc(-65px - 4.94791667vw);
}
.timeline .row.negative-margin [class^='col-']:nth-of-type(even) {
  padding-right: calc(80px + 4.94791667vw);
  padding-left: 15px;
}
.timeline .row.negative-margin [class^='col-']:nth-of-type(even) h2::before {
  right: calc(-85px - 4.94791667vw);
  top: 30px;
  z-index: 2;
  left: auto;
}
@media only screen and (max-width: 991px) {
  .timeline .container1614::after {
    display: none;
  }
  .timeline .row .content-col {
    margin-top: 30px;
  }
  .timeline .row.negative-margin {
    margin-top: 30px;
  }
  .timeline [class^='col-'] {
    margin-bottom: 30px;
    position: relative;
  }
  .timeline [class^='col-'] h2::after,
  .timeline [class^='col-'] h3::after {
    display: none;
  }
  .timeline [class^='col-'] h2::before,
  .timeline [class^='col-'] h3::before {
    display: none;
  }
  .timeline [class^='col-']:nth-of-type(odd) {
    padding-right: 15px;
  }
  .timeline [class^='col-']:nth-of-type(even) {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .timeline {
    padding-top: calc(47px + 0.78125vw);
  }
  .timeline .container1614 {
    padding-top: calc(40px + 0.5vw);
  }
  .timeline .row {
    margin-bottom: 10px;
  }
  .timeline .row.negative-margin {
    margin-top: 0;
  }
  .timeline .row.negative-margin [class^='col-']:nth-of-type(odd) {
    padding-left: 15px;
  }
  .timeline .row.negative-margin [class^='col-']:nth-of-type(even) {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.text-image-multi {
  padding-top: calc(80px + 4.94791667vw);
  padding-bottom: calc(80px + 4.94791667vw);
}
.text-image-multi .row {
  align-items: center;
}
.text-image-multi .row [class^='col-'] {
  position: relative;
}
.text-image-multi .row [class^='col-'] .player-thumbnail {
  position: absolute;
  top: 30%;
  right: 70px;
}
.text-image-multi .row:last-of-type {
  margin-top: -100px;
}
.text-image-multi .row:last-of-type [class^='col-']:last-of-type img {
  display: block;
  margin-right: 0;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .text-image-multi .row:last-of-type {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 991px) {
  .text-image-multi .row {
    align-items: center;
  }
  .text-image-multi .row [class^='col-'] {
    position: relative;
  }
  .text-image-multi .row [class^='col-']:first-of-type {
    margin-bottom: 150px;
  }
  .text-image-multi .row [class^='col-']:first-of-type img {
    width: 100%;
  }
  .text-image-multi .row [class^='col-']:first-of-type .player-thumbnail {
    top: auto;
    bottom: -100px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .text-image-multi .row [class^='col-']:first-of-type .player-thumbnail img {
    width: 200px;
  }
  .text-image-multi .row:last-of-type {
    margin-top: 30px;
  }
  .text-image-multi .row:last-of-type [class^='col-']:first-of-type {
    margin-bottom: 30px;
    order: 2;
  }
  .text-image-multi .row:last-of-type [class^='col-']:last-of-type {
    order: 1;
    margin-bottom: 30px;
  }
  .text-image-multi .row:last-of-type [class^='col-']:last-of-type img {
    width: 100%;
  }
}
.text-image-quote {
  padding-top: calc(80px + 5.98958333vw);
  padding-bottom: calc(80px + 5.98958333vw);
}
.text-image-quote .quote-sign {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .text-image-quote [class^='col-'] {
    margin-bottom: 30px;
  }
  .text-image-quote .quote-sign {
    margin-bottom: 30px;
  }
}
.featured-tracks {
  background-color: #e9ecef;
  padding-top: calc(80px + 5.98958333vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.featured-tracks .heading-col {
  margin-bottom: 35px;
}
.featured-tracks .track-player {
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 100%;
}
.featured-tracks .track-player .photo-box {
  flex: 0 0 35%;
}
.featured-tracks .track-player .photo-box img {
  display: block;
  border-left: 7px solid white;
}
.featured-tracks .track-player .details-box {
  flex: 0 0 65%;
  padding: 5px 25px;
}
.featured-tracks .track-player .details-box h4 {
  font-family: "ibmSemi";
  text-transform: uppercase;
  margin-bottom: 0;
}
.featured-tracks .track-player .details-box .date {
  font-size: 10px;
  margin-bottom: 0;
}
.featured-tracks .track-player .details-box .tags {
  margin-bottom: 5px;
}
.featured-tracks .track-player .details-box .tags a {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0 12px;
}
.featured-tracks .track-player .details-box .tags a:hover {
  text-decoration: underline;
}
.featured-tracks .track-player .details-box .downside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 100%;
}
.featured-tracks .track-player .details-box .downside div {
  display: flex;
  align-items: center;
}
.featured-tracks .track-player .details-box .downside div .play {
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
  padding-top: 15px;
}
.featured-tracks .track-player .details-box .downside div .play img {
  max-width: 20px;
  height: 20px;
}
.featured-tracks .track-player .details-box .downside div p {
  margin-bottom: 0;
}
.featured-tracks .track-player .details-box .downside div .social-list {
  margin-bottom: 0;
}
.featured-tracks .track-player .details-box .downside div .social-list li {
  margin-right: 15px;
}
.featured-tracks .track-player .details-box .downside div .social-list li a i {
  font-size: 20px;
}
.featured-tracks .track-player .details-box .downside div .social-list li:last-of-type {
  margin-right: 0;
}
@media only screen and (max-width: 991px) {
  .featured-tracks [class^='col-'] {
    margin-bottom: 30px;
  }
}
@media (max-width: 1024px) {
  .featured-tracks {
    padding-top: calc(150px + 5.98958333vw);
  }
}
@media (max-width: 500px) {
  .featured-tracks .track-player .details-box .tags a {
    font-size: 9px !important;
    padding: 0 9px !important;
  }
  .music-libary .libary-row .details-box .tags-box a {
    font-size: 9px !important;
    padding: 7px 9px !important;
  }
}
.music-libary {
  background-color: #f3f4f8;
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.music-libary h3 {
  margin-top: 20px;
}
.music-libary .library-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 30px;
}
.music-libary .library-utility-links a.button {
  min-width: 0;
  padding-left: 18px;
  padding-right: 18px;
  text-decoration: none;
}
.music-libary .photo-box img {
  border: 7px solid white;
}
.music-libary .heading-row {
  justify-content: space-between;
}
.music-libary .heading-row .grid-options {
  text-align: right;
}
.music-libary .heading-row .grid-options ul li {
  list-style: none;
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.music-libary .heading-row .grid-options ul li svg path {
  stroke: #000;
  transition: fill 0.2s linear;
}
.music-libary .heading-row .grid-options ul li a[data-music-library-display-link] {
  display: inline-block;
  line-height: 0;
}
.music-libary .heading-row .grid-options ul li a[data-music-library-display-link]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.music-libary .heading-row .grid-options ul li:hover {
  background-color: #000;
}
.music-libary .heading-row .grid-options ul li:hover svg path {
  stroke: #fff;
}
.music-libary .heading-row .grid-options ul li.active {
  background-color: #000;
}
.music-libary .heading-row .grid-options ul li.active svg path {
  stroke: #fff;
}
.music-libary form .filter-row {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.music-libary form .filter-row [class^='col-']:first-of-type {
  position: relative;
}
.music-libary form .filter-row input,
.music-libary form .filter-row select {
  border: none;
  background-color: #fff;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  font-family: "ibmSemi";
}
.music-libary form .filter-row input::-moz-placeholder, .music-libary form .filter-row select::-moz-placeholder {
  opacity: 1;
  color: #000;
  font-size: 20px;
}
.music-libary form .filter-row input::placeholder,
.music-libary form .filter-row select::placeholder {
  opacity: 1;
  color: #000;
  font-size: 20px;
}
.music-libary form .filter-row .music-library-search-submit {
  background-color: transparent;
  color: #2f3f3f;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 30px;
  top: 18px;
  padding: 0;
  border: 0;
  cursor: pointer;
}
.music-libary form .filter-row .music-library-search-submit svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.music-libary form .filter-row .music-library-search-submit:hover {
  color: #000;
}
.music-libary form .filter-row .music-library-search-submit:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.music-libary .libary-row [class^='col-'] {
  margin-bottom: 30px;
}
.music-libary .libary-row .track-box {
  background-color: #fff;
  height: 100%;
}
.music-libary .libary-row .details-box {
  padding: 35px;
}
.music-libary .libary-row .details-box h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.music-libary .libary-row .details-box .date {
  margin-bottom: 0;
  line-height: 1;
  font-size: 10px;
}
.music-libary .libary-row .details-box .tags-box {
  margin-top: 10px;
  margin-bottom: 10px;
}
.music-libary .libary-row .details-box .tags-box a {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.music-libary .libary-row .details-box .tags-box a:hover {
  text-decoration: underline;
}
.music-libary .libary-row .details-box .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 100%;
  margin-bottom: 10px;
}
.music-libary .libary-row .details-box .links div {
  display: flex;
  align-items: center;
}
.music-libary .libary-row .details-box .links div .play {
  padding: 10px;
  padding-top: 17px;
  padding-left: 0;
  cursor: pointer;
}
.music-libary .libary-row .details-box .links div .play img {
  max-width: 20px;
  height: 20px;
}
.music-libary .libary-row .details-box .links div p {
  margin-bottom: 0;
}
.music-libary .libary-row .details-box .links div .social-list {
  margin-bottom: 0;
}
.music-libary .libary-row .details-box .links div .social-list li {
  margin-right: 15px;
}
.music-libary .libary-row .details-box .links div .social-list li a i {
  font-size: 20px;
}
.music-libary .libary-row .details-box .links div .social-list li:last-of-type {
  margin-right: 0;
}
.music-libary .libary-row .details-box .button-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.music-libary .libary-row .details-box .button-box .button {
  margin-bottom: 10px;
}
.music-libary .libary-row .details-box .button-box .button:nth-of-type(1) {
  margin-right: 5px;
}
.music-libary .libary-row.libary-6-cols .details-box {
  padding: 28px 20px;
}
.music-libary .libary-row.libary-6-cols .details-box .tags-box a {
  padding: 5px 10px;
  font-size: 10px;
}
.music-libary .libary-row.libary-6-cols .details-box .links div .social-list li {
  margin-right: 10px;
}
.music-libary .libary-row.libary-6-cols .details-box .links div .social-list li a i {
  font-size: 16px;
}
.music-libary .libary-row.libary-6-cols .details-box .button-box {
  flex-wrap: wrap;
}
.music-libary .libary-row.libary-6-cols .details-box .button-box .button {
  margin-bottom: 10px;
  width: 100%;
}
.music-libary .libary-row.libary-list-view table {
  width: 100%;
}
.music-libary .libary-row.libary-list-view table tr {
  background-color: #fff;
  border-top: 1px solid #f3f4f8;
}
.music-libary .libary-row.libary-list-view table tr.heading-tr {
  background-color: #f9fafc;
  padding: 15px;
  border-top: none;
}
.music-libary .libary-row.libary-list-view table tr.heading-tr th {
  padding: 8px;
  font-family: "ibmSemi";
  text-transform: uppercase;
  font-size: 12px;
}
.music-libary .libary-row.libary-list-view table tr.heading-tr th:first-of-type {
  text-align: center;
}
.music-libary .libary-row.libary-list-view table tr td {
  padding: 8px;
}
.music-libary .libary-row.libary-list-view table tr td.main {
  display: flex;
  align-items: center;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control,
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-title-control {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-play-symbol {
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  transition: border-color 0.12s linear;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control {
  position: relative;
  display: block;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  padding: 0;
  cursor: pointer;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.12s linear;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.12s linear;
}
.music-libary .libary-row.libary-list-view table tr td.main h4 .music-library-track-title-control {
  display: inline;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control:focus-visible,
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-title-control:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.music-libary .libary-row.libary-list-view table tr td.main .play {
  margin-bottom: 0;
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
}
.music-libary .libary-row.libary-list-view table tr td.main .play img {
  max-width: 20px;
  height: 20px;
}
.music-libary .libary-row.libary-list-view table tr td.main img {
  width: 50px;
  margin-right: 10px;
}
.music-libary .libary-row.libary-list-view table tr td.main h4 {
  font-size: 20px;
  text-transform: none;
  margin-bottom: 0;
  margin-bottom: 7px;
}
.music-libary .libary-row.libary-list-view table tr td.main:hover .music-library-track-artwork-overlay,
.music-libary .libary-row.libary-list-view table tr td.main:focus-within .music-library-track-artwork-overlay,
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control:focus-visible .music-library-track-artwork-overlay {
  opacity: 1;
}
.music-libary .libary-row.libary-list-view table tr td.main:hover .music-library-track-artwork-control img,
.music-libary .libary-row.libary-list-view table tr td.main:focus-within .music-library-track-artwork-control img,
.music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control:focus-visible img {
  filter: brightness(0.72);
}
.music-libary .libary-row.libary-list-view table tr td p {
  margin-bottom: 0;
}
.music-libary .libary-row.libary-list-view table tr td p.uploaded {
  font-size: 10px;
  font-family: "ibmSemi";
  text-transform: uppercase;
}
.music-libary .libary-row.libary-list-view table tr td a.tag-link {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.music-libary .libary-row.libary-list-view table tr td a.tag-link:hover {
  text-decoration: underline;
}
.music-libary .libary-row.libary-list-view table tr td.links {
  vertical-align: middle;
}
.music-libary .libary-row.libary-list-view table tr td.links .music-library-track-actions {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
}
.music-libary .libary-row.libary-list-view table tr td.links .music-library-track-actions .button.reverse {
  position: relative;
  top: -2.5px;
  margin-right: 30px;
}
.music-libary .libary-row.libary-list-view table tr td.links .music-library-track-actions .social-list {
  margin-bottom: 0;
  min-width: 44px;
}
.music-libary .libary-row.libary-list-view table tr td.links .music-library-track-actions .social-list li {
  margin-right: 10px;
}
.music-libary .libary-row.libary-list-view table tr td.links .music-library-track-actions .social-list li a i {
  font-size: 20px;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row {
  --music-library-track-surface: #fff;
  background-color: var(--music-library-track-surface);
  transition: background-color 0.12s linear, box-shadow 0.12s linear;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row > td {
  background-color: var(--music-library-track-surface);
  transition: background-color 0.12s linear;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row:hover {
  --music-library-track-surface: #f7f8fb;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-active-track {
  box-shadow: inset 3px 0 0 #737373;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-playing-track .music-library-track-play-symbol {
  width: 12px;
  height: 16px;
  border: 0;
  background: linear-gradient(to right, currentColor 0, currentColor 4px, transparent 4px, transparent 8px, currentColor 8px, currentColor 12px);
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-playing-track td.main .music-library-track-artwork-overlay {
  opacity: 1;
}
.music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-playing-track td.main .music-library-track-artwork-control img {
  filter: brightness(0.68);
}
.music-libary .libary-row .spinner-col {
  text-align: center;
}
.music-libary .libary-row .spinner-col i.fa-spinner {
  font-size: 50px;
}
.music-libary .music-library-results-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media only screen and (max-width: 1485px) {
  .music-libary .libary-row .details-box {
    padding: 35px;
  }
  .music-libary .libary-row .details-box h4 {
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .music-libary .libary-row .details-box .date {
    margin-bottom: 0;
    line-height: 1;
    font-size: 10px;
  }
  .music-libary .libary-row .details-box .tags-box {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .music-libary .libary-row .details-box .tags-box a {
    padding: 5px 15px;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: #f3f4f8;
    border-radius: 10px;
    font-size: 12px;
    text-transform: uppercase;
  }
  .music-libary .libary-row .details-box .tags-box a:hover {
    text-decoration: underline;
  }
  .music-libary .libary-row .details-box .links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 100%;
    margin-bottom: 10px;
  }
  .music-libary .libary-row .details-box .links div {
    display: flex;
    align-items: center;
  }
  .music-libary .libary-row .details-box .links div .play {
    padding: 10px;
    padding-top: 17px;
    padding-left: 0;
    cursor: pointer;
  }
  .music-libary .libary-row .details-box .links div .play img {
    max-width: 20px;
    height: 20px;
  }
  .music-libary .libary-row .details-box .links div p {
    margin-bottom: 0;
  }
  .music-libary .libary-row .details-box .links div .social-list {
    margin-bottom: 0;
  }
  .music-libary .libary-row .details-box .links div .social-list li {
    margin-right: 15px;
  }
  .music-libary .libary-row .details-box .links div .social-list li a i {
    font-size: 20px;
  }
  .music-libary .libary-row .details-box .links div .social-list li:last-of-type {
    margin-right: 0;
  }
  .music-libary .libary-row .details-box .button-box .button {
    width: 100%;
  }
  .music-library-load-more {
    margin: 35px 0 0;
    text-align: center;
  }
  .music-library-load-more .button.reverse {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    min-width: 180px;
  }
  .music-library-load-more .button.reverse:hover {
    background-color: #fff;
    color: #000;
  }
  .music-library-load-more .button.reverse:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
  }
  .music-library-load-more .button.reverse.is-loading {
    opacity: 0.65;
    pointer-events: none;
  }
  .music-library-load-more__status {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
@media only screen and (max-width: 991px) {
  .music-libary .libary-row .details-box {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .music-libary .library-utility-links {
    gap: 8px;
    margin-bottom: 25px;
  }
  .music-libary .library-utility-links a.button {
    flex: 1 1 auto;
  }
  .music-libary .grid-options {
    display: none;
  }
  .music-libary .heading-row [class^='col-']:first-of-type {
    margin-bottom: 20px;
  }
  .music-libary .heading-row .grid-options {
    text-align: left;
  }
  .music-libary form .filter-row [class^='col-'] {
    margin-bottom: 15px;
  }
}
html.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row,
body.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row {
  --music-library-track-surface: #111;
}
html.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row:hover,
body.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row:hover {
  --music-library-track-surface: #191919;
}
html.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-active-track,
body.night-mode .music-libary .libary-row.libary-list-view table tr.music-library-track-row.is-active-track {
  box-shadow: inset 3px 0 0 #a5a5a5;
}
@media (hover: none), (pointer: coarse) {
  .music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-control img {
    filter: brightness(0.78);
  }
  .music-libary .libary-row.libary-list-view table tr td.main .music-library-track-artwork-overlay {
    opacity: 1;
  }
  .music-libary .libary-row.libary-list-view table tr.is-playing-track td.main .music-library-track-artwork-control img {
    filter: brightness(0.68);
  }
}
@media only screen and (max-width: 1200px) {
  .music-libary .libary-row .col-12 {
    overflow-y: auto;
  }
  .music-libary .libary-row .col-12 table td {
    width: 20%;
  }
  .music-libary .libary-row .col-12 table td.main {
    width: 200px;
    height: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .music-libary .libary-row.libary-list-view table tr.music-library-track-row td.main {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .music-libary .libary-row.libary-list-view .col-12 {
    overflow: visible;
  }
  .music-libary .libary-row.libary-list-view table,
  .music-libary .libary-row.libary-list-view tbody {
    display: block;
    width: 100%;
  }
  .music-libary .libary-row.libary-list-view tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 8px;
  }
  .music-libary .libary-row.libary-list-view tr.heading-tr {
    display: none;
  }
  .music-libary .libary-row.libary-list-view tr td {
    width: auto;
    padding: 5px;
  }
  .music-libary .libary-row.libary-list-view tr td.main {
    grid-column: 1;
    min-width: 0;
    height: auto;
  }
  .music-libary .libary-row.libary-list-view tr td.main h4 {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .music-libary .libary-row.libary-list-view tr td.duration-cell,
  .music-libary .libary-row.libary-list-view tr td.tags-cell {
    grid-column: 1;
    padding-left: 45px;
  }
  .music-libary .libary-row.libary-list-view tr td.tags-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .music-libary .libary-row.libary-list-view tr td.tags-cell a.tag-link {
    margin: 0;
  }
  .music-libary .libary-row.libary-list-view tr td.links {
    grid-column: 2;
    grid-row: 1 / span 3;
    padding-left: 12px;
  }
  .music-libary .libary-row.libary-list-view tr td.links .music-library-track-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .music-libary .libary-row.libary-list-view tr td.links .music-library-track-actions .button.reverse {
    top: 0;
    margin-right: 0;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 480px) {
  .music-libary .libary-row.libary-list-view tr {
    grid-template-columns: minmax(0, 1fr);
  }
  .music-libary .libary-row.libary-list-view tr td.links {
    grid-column: 1;
    grid-row: auto;
    padding-left: 45px;
  }
  .music-libary .libary-row.libary-list-view tr td.links .music-library-track-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.music-library-audition-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (min-width: 768px) {
  body.music-library-page.music-library-player-visible .music-library-audition-list::after {
    background: linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(5, 7, 10, 0.1) 35%, rgba(5, 7, 10, 0.6) 72%, var(--music-library-atmosphere-depth, #05070a) 100%);
    bottom: calc(116px + 8px);
    content: '';
    height: clamp(90px, 12vh, 145px);
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    z-index: 1;
  }
  body.music-library-page.music-library-player-visible .music-library-audition-row:focus-within,
  body.music-library-page.music-library-player-visible .music-library-load-more,
  body.music-library-page.music-library-player-visible .music-library-results-status {
    position: relative;
    z-index: 2;
  }
}
.music-library-audition-row {
  --music-library-audition-border: rgba(20, 27, 29, 0.1);
  --music-library-audition-surface: rgba(249, 250, 250, 0.94);
  --music-library-waveform-color: #536266;
  --music-library-waveform-progress-color: #11191b;
  align-items: center;
  background-color: var(--music-library-audition-surface);
  border: 1px solid var(--music-library-audition-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: clamp(16px, 1.75vw, 30px);
  grid-template-columns: 88px minmax(140px, 210px) minmax(360px, 1fr) auto;
  min-width: 0;
  padding: 12px 18px;
  transition: background-color 0.14s linear, box-shadow 0.14s linear;
}
.music-library-audition-row:hover {
  --music-library-audition-surface: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.music-library-audition-row.is-active-track {
  --music-library-audition-border: rgba(28, 40, 43, 0.3);
  box-shadow: inset 0 0 0 1px rgba(28, 40, 43, 0.12), 0 14px 34px rgba(0, 0, 0, 0.14);
}
.music-library-audition-row__artwork {
  display: block;
  height: 88px;
  width: 88px;
}
.music-library-audition-row__artwork img {
  border: 1px solid rgba(15, 20, 22, 0.08);
  border-radius: 2px;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.music-library-audition-row__artwork:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.music-library-audition-row__identity {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-width: 0;
}
.music-library-audition-row__identity h4 {
  font-size: clamp(19px, 1.3vw, 23px);
  line-height: 1.12;
  margin: 0;
  min-width: 0;
  text-transform: none;
}
.music-library-audition-row__identity h4 a {
  color: inherit;
  overflow-wrap: anywhere;
}
.music-library-audition-row__identity h4 a:hover {
  text-decoration: underline;
}
.music-library-audition-row__identity h4 a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.music-library-audition-row__identity > span {
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.58;
  text-transform: uppercase;
}
.music-library-audition-row__waveform {
  min-width: 0;
}
.music-library-audition-row .music-library-track-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-width: 132px;
}
.music-library-audition-row .music-library-track-actions .button {
  border-radius: 9px;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
.music-library-audition-row .music-library-track-actions .download-panel-trigger {
  cursor: pointer;
}
.music-library-audition-row .music-library-track-actions .download-panel-trigger svg,
.music-library-audition-row .music-library-track-actions .download-panel-trigger path {
  pointer-events: none;
}
.music-library-audition-row__play-toggle {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: #151b1d;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 30px;
  height: 32px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 30px;
}
.music-library-audition-row__play-toggle::before {
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
  border-top: 9px solid transparent;
  content: '';
  display: block;
  height: 0;
  width: 0;
}
.music-library-audition-row__play-toggle:hover {
  opacity: 0.72;
}
.music-library-audition-row__play-toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}
.music-library-audition-row .music-library-future-action {
  cursor: not-allowed;
  opacity: 0.4;
}
.music-library-waveform {
  --music-library-waveform-progress: 0%;
  background-color: rgba(14, 26, 29, 0.08);
  border: 1px solid rgba(14, 26, 29, 0.12);
  border-radius: 8px;
  color: var(--music-library-waveform-color);
  cursor: crosshair;
  height: 82px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  touch-action: none;
  width: 100%;
}
.music-library-waveform:hover {
  background-color: rgba(14, 26, 29, 0.115);
  border-color: rgba(14, 26, 29, 0.2);
}
.music-library-waveform:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
}
.music-library-waveform[data-waveform-fallback='neutral']::before {
  background-color: currentColor;
  content: '';
  height: 1px;
  left: 16px;
  opacity: 0.24;
  position: absolute;
  right: 16px;
  top: 50%;
}
.music-library-waveform__bars {
  align-items: center;
  display: flex;
  gap: 2px;
  inset: 12px 16px;
  opacity: 0.28;
  position: absolute;
}
.music-library-waveform__bars span {
  background-color: currentColor;
  border-radius: 2px;
  flex: 1 1 0;
  height: var(--music-library-waveform-bar-height, 40%);
  min-width: 1px;
}
.music-library-waveform__progress {
  color: var(--music-library-waveform-progress-color);
  -webkit-clip-path: inset(0 calc(100% - var(--music-library-waveform-progress)) 0 0);
          clip-path: inset(0 calc(100% - var(--music-library-waveform-progress)) 0 0);
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.music-library-waveform__progress .music-library-waveform__bars {
  opacity: 0.95;
}
.music-library-waveform__hint {
  font-size: 10px;
  letter-spacing: 0.02em;
  margin: 6px 0 0;
  opacity: 0.55;
}
.music-library-audition-row.is-playing-track .music-library-audition-row__play-toggle::before {
  background: linear-gradient(to right, currentColor 0, currentColor 5px, transparent 5px, transparent 9px, currentColor 9px, currentColor 14px);
  border: 0;
  height: 18px;
  width: 14px;
}
html.night-mode .music-library-audition-row,
body.night-mode .music-library-audition-row {
  --music-library-audition-border: rgba(255, 255, 255, 0.1);
  --music-library-audition-surface: rgba(22, 25, 27, 0.9);
  --music-library-waveform-color: #8d999c;
  --music-library-waveform-progress-color: #fff;
}
html.night-mode .music-library-audition-row:hover,
body.night-mode .music-library-audition-row:hover {
  --music-library-audition-surface: rgba(29, 33, 35, 0.96);
}
html.night-mode .music-library-audition-row.is-active-track,
body.night-mode .music-library-audition-row.is-active-track {
  --music-library-audition-border: rgba(230, 238, 240, 0.28);
  box-shadow: inset 0 0 0 1px rgba(230, 238, 240, 0.1), 0 16px 38px rgba(0, 0, 0, 0.34);
}
html.night-mode .music-library-audition-row__play-toggle,
body.night-mode .music-library-audition-row__play-toggle {
  color: #fff;
}
html.night-mode .music-library-waveform,
body.night-mode .music-library-waveform {
  background-color: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}
html.night-mode .music-library-waveform:hover,
body.night-mode .music-library-waveform:hover {
  background-color: rgba(255, 255, 255, 0.085);
}
@media only screen and (max-width: 1100px) {
  .music-library-audition-row {
    grid-template-columns: 74px minmax(130px, 190px) minmax(260px, 1fr);
    padding-block: 12px;
    row-gap: 12px;
  }
  .music-library-audition-row__artwork {
    height: 74px;
    width: 74px;
  }
  .music-library-audition-row .music-library-track-actions {
    flex-direction: row;
    grid-column: 2 / -1;
    justify-content: flex-end;
  }
  .music-library-audition-row .music-library-track-actions .button {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .music-library-audition-row {
    border-radius: 8px;
    gap: 10px 14px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 10px 12px;
  }
  .music-library-audition-row__artwork {
    height: 64px;
    width: 64px;
  }
  .music-library-audition-row__waveform,
  .music-library-audition-row .music-library-track-actions {
    grid-column: 1 / -1;
  }
  .music-library-audition-row .music-library-track-actions {
    justify-content: stretch;
  }
  .music-library-audition-row .music-library-track-actions .button {
    flex: 1 1 0;
    min-width: 0;
  }
  .music-library-waveform {
    height: 74px;
  }
  .music-library-waveform__bars {
    bottom: 11px;
    top: 11px;
  }
}
.music-library-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.music-library-search-form {
  margin: 0 0 clamp(46px, 3.5vw, 60px);
}
@media only screen and (min-width: 768px) {
  .music-library-search-form {
    margin-bottom: clamp(102px, 7.2vw, 116px);
    padding-top: clamp(20px, 1.5vw, 28px);
  }
}
body.music-library-page .music-library-search-shell {
  grid-template-columns: minmax(0, 1fr);
}
.music-library-search-shell {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  width: 100%;
  z-index: 6;
}
.music-library-search-form .music-library-search-primary {
  position: relative;
}
.music-library-search-form .music-library-search-primary input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(166, 171, 171, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.25vw, 18px);
  height: 52px;
  padding: 0 64px 0 24px;
  transition: background-color 0.16s linear, border-color 0.16s linear, box-shadow 0.16s linear;
  width: 100%;
  font-family: "ibmSemi";
}
.music-library-search-form .music-library-search-primary input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.music-library-search-form .music-library-search-primary input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.music-library-search-form .music-library-search-primary input:focus {
  background-color: rgba(137, 143, 143, 0.46);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.07);
  outline: none;
}
.music-library-search-form .music-library-search-primary .music-library-search-submit {
  background-color: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.66);
  cursor: pointer;
  height: 24px;
  padding: 0;
  position: absolute;
  right: 24px;
  top: 14px;
  width: 24px;
}
.music-library-search-form .music-library-search-primary .music-library-search-submit svg {
  display: block;
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 24px;
}
.music-library-search-form .music-library-search-primary .music-library-search-submit:hover {
  color: #fff;
}
.music-library-search-form .music-library-search-primary .music-library-search-submit:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}
.music-library-sort-disclosure {
  position: absolute;
  right: -58px;
  top: 3px;
}
.music-library-sort-disclosure summary {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(28, 32, 34, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  display: flex;
  height: 46px;
  justify-content: center;
  list-style: none;
  transition: background-color 0.15s linear, border-color 0.15s linear, color 0.15s linear;
  width: 46px;
}
.music-library-sort-disclosure summary::-webkit-details-marker {
  display: none;
}
.music-library-sort-disclosure summary svg {
  fill: none;
  height: 8px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.16s ease;
  width: 12px;
}
.music-library-sort-disclosure summary:hover,
.music-library-sort-disclosure summary:focus-visible {
  background-color: rgba(37, 41, 43, 0.82);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  outline: none;
}
.music-library-sort-disclosure[open] summary svg {
  transform: rotate(180deg);
}
@media only screen and (max-width: 959px) {
  .music-library-search-primary {
    margin-right: 58px;
  }
  .music-library-sort-disclosure {
    right: 0;
  }
}
.music-library-sort-popover {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background-color: rgba(25, 28, 30, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  display: grid;
  min-width: 132px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
}
.music-library-sort-popover button {
  background: transparent;
  border: 0;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 13px;
  padding: 9px 11px;
  text-align: left;
  font-family: "ibmSemi";
}
.music-library-sort-popover button:hover,
.music-library-sort-popover button:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}
.music-library-sort-popover button.is-active {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.music-library-filter-disclosure {
  position: static;
}
.music-library-filter-disclosure summary {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(28, 32, 34, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  gap: 9px;
  height: 46px;
  justify-content: center;
  list-style: none;
  min-width: 112px;
  padding: 0 16px;
  transition: background-color 0.15s linear, border-color 0.15s linear;
  font-family: "ibmSemi";
}
.music-library-filter-disclosure summary::-webkit-details-marker {
  display: none;
}
.music-library-filter-disclosure summary svg {
  fill: none;
  height: 8px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 0.16s ease;
  width: 12px;
}
.music-library-filter-disclosure summary:hover {
  background-color: rgba(37, 41, 43, 0.86);
  border-color: rgba(255, 255, 255, 0.42);
}
.music-library-filter-disclosure summary:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  outline: none;
}
.music-library-filter-disclosure[open] summary {
  background-color: rgba(38, 42, 44, 0.94);
  border-color: rgba(255, 255, 255, 0.46);
}
.music-library-filter-disclosure[open] summary svg {
  transform: rotate(180deg);
}
.music-library-filter-count {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #05080a;
  display: inline-flex;
  font-size: 10px;
  height: 19px;
  justify-content: center;
  line-height: 1;
  width: 19px;
}
.music-library-filter-popover {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background-color: rgba(25, 28, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
  color: #fff;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 16px;
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  width: min(530px, calc(100vw - 32px));
}
.music-library-filter-popover label > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
  margin: 0 0 7px;
  opacity: 0.68;
  text-transform: uppercase;
}
.music-library-filter-popover select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 0;
  border-radius: 7px;
  color: #111;
  font-size: 14px;
  height: 48px;
  padding: 0 38px 0 15px;
  width: 100%;
  font-family: "ibmSemi";
}
.music-library-filter-popover select:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(16, 18, 20, 0.62);
  outline: none;
}
.music-library-filter-popover .music-library-filter-apply {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #fff;
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 2px;
}
.music-library-filter-popover .music-library-filter-apply:hover,
.music-library-filter-popover .music-library-filter-apply:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.music-library-artwork-grid {
  display: grid;
  gap: clamp(14px, 1.5vw, 24px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.music-library-artwork-card {
  --music-library-artwork-card-surface: #fff;
  background-color: var(--music-library-artwork-card-surface);
  border-radius: 7px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  min-width: 0;
  padding: 12px;
  transition: background-color 0.14s linear, box-shadow 0.14s linear, transform 0.14s ease;
}
.music-library-artwork-card:hover {
  --music-library-artwork-card-surface: #f8f9fb;
  transform: translateY(-2px);
}
.music-library-artwork-card.is-active-track {
  --music-library-artwork-card-surface: #f4f5f6;
  box-shadow: inset 0 0 0 1px rgba(42, 48, 50, 0.22), 0 12px 30px rgba(0, 0, 0, 0.15);
}
.music-library-artwork-card__artwork {
  --music-library-artwork-seek-position: 50%;
  aspect-ratio: 1;
  background: #d8dde0;
  border: 0;
  border-radius: 2px;
  color: #fff;
  cursor: crosshair;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  touch-action: none;
  width: 100%;
}
.music-library-artwork-card__artwork img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  transition: filter 0.14s linear, transform 0.18s ease;
  width: 100%;
}
.music-library-artwork-card__artwork::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 32%);
  content: '';
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.14s linear;
}
.music-library-artwork-card__artwork:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82), 0 0 0 1px rgba(0, 0, 0, 0.32);
  outline: none;
}
.music-library-artwork-card__seek-indicator {
  background-color: rgba(255, 255, 255, 0.78);
  bottom: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22), 0 0 12px rgba(0, 0, 0, 0.28);
  left: var(--music-library-artwork-seek-position);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  transition: opacity 0.1s linear;
  width: 1px;
  z-index: 2;
}
.music-library-artwork-card__audition-hint {
  bottom: 12px;
  font-size: 10px;
  left: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  transform: translateY(4px);
  transition: opacity 0.14s linear, transform 0.14s ease;
  z-index: 3;
}
.music-library-artwork-card__details {
  min-width: 0;
  padding: 14px 2px 2px;
}
.music-library-artwork-card__details h4 {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.15;
  margin: 0 0 6px;
  text-transform: none;
}
.music-library-artwork-card__details h4 a {
  color: inherit;
  overflow-wrap: anywhere;
}
.music-library-artwork-card__details h4 a:hover {
  text-decoration: underline;
}
.music-library-artwork-card__details h4 a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}
.music-library-artwork-card__details > span:not(.button) {
  display: block;
  font-size: 10px;
  letter-spacing: 0.05em;
  opacity: 0.58;
  text-transform: uppercase;
}
.music-library-artwork-card__details .download-panel-trigger {
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  margin-top: 14px;
}
.music-library-artwork-card__details .download-panel-trigger svg,
.music-library-artwork-card__details .download-panel-trigger path {
  pointer-events: none;
}
.music-library-artwork-card.is-playing-track .music-library-artwork-card__artwork img {
  filter: brightness(0.84);
  transform: scale(1.015);
}
@media (hover: hover) and (pointer: fine) {
  .music-library-artwork-card__artwork:hover::after,
  .music-library-artwork-card__artwork:hover .music-library-artwork-card__seek-indicator,
  .music-library-artwork-card__artwork:hover .music-library-artwork-card__audition-hint {
    opacity: 1;
  }
  .music-library-artwork-card__artwork:hover .music-library-artwork-card__audition-hint {
    transform: translateY(0);
  }
}
html.night-mode .music-library-artwork-card,
body.night-mode .music-library-artwork-card {
  --music-library-artwork-card-surface: rgba(23, 26, 28, 0.9);
}
html.night-mode .music-library-artwork-card:hover,
body.night-mode .music-library-artwork-card:hover {
  --music-library-artwork-card-surface: rgba(31, 34, 36, 0.96);
}
html.night-mode .music-library-artwork-card.is-active-track,
body.night-mode .music-library-artwork-card.is-active-track {
  --music-library-artwork-card-surface: rgba(34, 38, 40, 0.97);
  box-shadow: inset 0 0 0 1px rgba(224, 232, 234, 0.22), 0 14px 34px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 1200px) {
  .music-library-artwork-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 767px) {
  .music-library-search-form {
    margin-bottom: 30px;
  }
  .music-library-search-shell {
    gap: 9px;
  }
  .music-library-search-form .music-library-search-primary input {
    font-size: 16px;
    height: 48px;
    padding-left: 17px;
    padding-right: 48px;
  }
  .music-library-search-form .music-library-search-primary .music-library-search-submit {
    height: 20px;
    right: 16px;
    top: 14px;
    width: 20px;
  }
  .music-library-search-form .music-library-search-primary .music-library-search-submit svg {
    height: 20px;
    width: 20px;
  }
  .music-library-filter-disclosure summary {
    height: 42px;
    min-width: 96px;
    padding: 0 12px;
  }
  .music-library-filter-popover {
    grid-template-columns: minmax(0, 1fr);
    padding: 13px;
  }
  .music-library-filter-popover .music-library-filter-apply {
    grid-column: 1;
    justify-self: stretch;
  }
  .music-library-artwork-grid {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .music-library-artwork-card {
    padding: 9px;
  }
  .music-library-artwork-card__details {
    padding-top: 11px;
  }
}
@media only screen and (max-width: 420px) {
  .music-library-artwork-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.music-library-atmosphere {
  --music-library-atmosphere-image: url('/static/web/images/music-library/library-atmosphere-desktop.jpg');
  --music-library-atmosphere-star-mask: url('/static/web/images/music-library/library-atmosphere-star-mask.png');
  --music-library-atmosphere-surface: #05070a;
  --music-library-atmosphere-depth: #05070a;
  background-color: var(--music-library-atmosphere-surface);
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  position: relative;
}
.music-library-atmosphere::before {
  background-color: var(--music-library-atmosphere-surface);
  background-image: linear-gradient(180deg, rgba(2, 5, 10, 0.46) 0%, rgba(2, 5, 10, 0.18) 18%, rgba(2, 5, 10, 0.26) 32%, rgba(2, 5, 9, 0.38) 48%, rgba(3, 5, 8, 0.56) 66%, rgba(4, 6, 8, 0.76) 84%, rgba(5, 7, 10, 0.9) 100%), linear-gradient(90deg, rgba(2, 5, 10, 0.3), rgba(2, 5, 10, 0.04) 50%, rgba(2, 5, 10, 0.36)), var(--music-library-atmosphere-image);
  background-position: center, center, 25% calc(50% + 140px);
  background-repeat: no-repeat;
  background-size: cover, cover, auto 128%;
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
.music-library-atmosphere::after {
  background: linear-gradient(180deg, transparent 32%, rgba(4, 6, 9, 0.04) 42%, rgba(4, 6, 9, 0.3) 58%, rgba(4, 6, 9, 0.64) 74%, rgba(4, 6, 9, 0.88) 90%, var(--music-library-atmosphere-depth) 100%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
.music-library-atmosphere > .music-libary,
.music-library-atmosphere > .creators-archive {
  background-color: transparent !important;
  position: relative;
  z-index: 1;
}
.music-library-atmosphere > .music-libary > .container1614 > .heading-row h3 {
  color: #fff;
}
.music-library-atmosphere__stars {
  height: 850px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
.music-library-atmosphere__stars span {
  --music-library-star-opacity: 0.28;
  background-color: #fff;
  border-radius: 50%;
  height: 2px;
  opacity: var(--music-library-star-opacity);
  position: absolute;
  width: 2px;
}
.music-library-atmosphere__stars span:nth-child(1) {
  --music-library-star-opacity: 0.2;
  --music-library-star-duration: 7s;
  --music-library-star-delay: -1.5s;
  left: 6%;
  top: 8%;
}
.music-library-atmosphere__stars span:nth-child(2) {
  --music-library-star-opacity: 0.38;
  --music-library-star-duration: 9s;
  --music-library-star-delay: -4.5s;
  left: 13%;
  top: 17%;
}
.music-library-atmosphere__stars span:nth-child(3) {
  --music-library-star-opacity: 0.24;
  --music-library-star-duration: 8s;
  --music-library-star-delay: -2s;
  left: 21%;
  top: 9%;
}
.music-library-atmosphere__stars span:nth-child(4) {
  --music-library-star-opacity: 0.17;
  --music-library-star-duration: 10s;
  --music-library-star-delay: -7s;
  left: 28%;
  top: 18%;
}
.music-library-atmosphere__stars span:nth-child(5) {
  --music-library-star-opacity: 0.43;
  --music-library-star-duration: 6s;
  --music-library-star-delay: -3.5s;
  left: 35%;
  top: 6%;
}
.music-library-atmosphere__stars span:nth-child(6) {
  --music-library-star-opacity: 0.2;
  --music-library-star-duration: 11s;
  --music-library-star-delay: -6s;
  left: 42%;
  top: 14%;
}
.music-library-atmosphere__stars span:nth-child(7) {
  --music-library-star-opacity: 0.31;
  --music-library-star-duration: 8s;
  --music-library-star-delay: -5s;
  left: 48%;
  top: 7%;
}
.music-library-atmosphere__stars span:nth-child(8) {
  --music-library-star-opacity: 0.16;
  --music-library-star-duration: 9s;
  --music-library-star-delay: -2.5s;
  left: 54%;
  top: 8%;
}
.music-library-atmosphere__stars span:nth-child(9) {
  --music-library-star-opacity: 0.36;
  --music-library-star-duration: 7s;
  --music-library-star-delay: -4s;
  left: 61%;
  top: 9%;
}
.music-library-atmosphere__stars span:nth-child(10) {
  --music-library-star-opacity: 0.22;
  --music-library-star-duration: 10s;
  --music-library-star-delay: -1s;
  left: 67%;
  top: 10%;
}
.music-library-atmosphere__stars span:nth-child(11) {
  --music-library-star-opacity: 0.32;
  --music-library-star-duration: 8s;
  --music-library-star-delay: -6.5s;
  left: 73%;
  top: 14%;
}
.music-library-atmosphere__stars span:nth-child(12) {
  --music-library-star-opacity: 0.19;
  --music-library-star-duration: 11s;
  --music-library-star-delay: -3s;
  left: 79%;
  top: 7%;
}
.music-library-atmosphere__stars span:nth-child(13) {
  --music-library-star-opacity: 0.42;
  --music-library-star-duration: 6s;
  --music-library-star-delay: -5.5s;
  left: 84%;
  top: 15%;
}
.music-library-atmosphere__stars span:nth-child(14) {
  --music-library-star-opacity: 0.24;
  --music-library-star-duration: 9s;
  --music-library-star-delay: -7.5s;
  left: 91%;
  top: 10%;
}
.music-library-atmosphere__stars span:nth-child(15) {
  --music-library-star-opacity: 0.18;
  --music-library-star-duration: 10s;
  --music-library-star-delay: -2.5s;
  left: 96%;
  top: 18%;
}
.music-library-atmosphere__stars span:nth-child(16) {
  --music-library-star-opacity: 0.3;
  --music-library-star-duration: 7s;
  --music-library-star-delay: -5s;
  left: 17%;
  top: 5%;
}
.music-library-atmosphere__stars span:nth-child(17) {
  --music-library-star-opacity: 0.21;
  --music-library-star-duration: 11s;
  --music-library-star-delay: -8s;
  left: 58%;
  top: 4%;
}
.music-library-atmosphere__stars span:nth-child(18) {
  --music-library-star-opacity: 0.34;
  --music-library-star-duration: 8s;
  --music-library-star-delay: -3.5s;
  left: 88%;
  top: 5%;
}
.music-library-atmosphere__blur {
  background-image: linear-gradient(180deg, rgba(3, 5, 8, 0.04) 0%, rgba(3, 5, 8, 0.12) 52%, rgba(4, 6, 9, 0.42) 78%, rgba(4, 6, 9, 0.72) 100%), var(--music-library-atmosphere-image);
  background-position: center, 25% calc(50% + 140px);
  background-repeat: no-repeat;
  background-size: cover, auto 128%;
  filter: blur(clamp(18px, 1.8vw, 30px)) brightness(var(--music-library-atmosphere-brightness, 1.12)) saturate(1.16);
  inset: -28px -3% 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 27%, rgba(0, 0, 0, 0.16) 34%, rgba(0, 0, 0, 0.72) 43%, #000 52%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 27%, rgba(0, 0, 0, 0.16) 34%, rgba(0, 0, 0, 0.72) 43%, #000 52%, #000 100%);
  pointer-events: none;
  position: fixed;
  transform: scale(1.035);
  transform-origin: center top;
  z-index: 0;
}
.music-library-atmosphere__credit {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.03em;
  line-height: 1.4;
  margin: 0;
  position: absolute;
  right: clamp(20px, 3.5vw, 70px);
  top: 112px;
  z-index: 2;
}
.music-library-atmosphere__credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s linear;
}
.music-library-atmosphere__credit a:hover,
.music-library-atmosphere__credit a:focus-visible {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
}
.music-library-atmosphere__credit a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}
.music-library-atmosphere__identity {
  line-height: 0;
  margin: clamp(54px, 4.6vw, 72px) auto clamp(22px, 2vw, 30px);
  max-width: 520px;
  padding: 0 15px;
  position: relative;
  text-align: center;
}
.music-library-atmosphere__identity img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 130px;
  max-width: 100%;
  opacity: 1;
  width: 100%;
}
.music-library-atmosphere__identity-canvas {
  display: none;
  height: 100%;
  inset: 0 15px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: auto;
}
.music-library-atmosphere__identity[data-music-library-logo-effect='cloth'] .music-library-atmosphere__identity-canvas {
  height: calc(100% + 44px);
  inset: -22px 3px auto;
  width: calc(100% - 6px);
}
body.music-library-page {
  background-color: #05070a;
}
header.music-library-atmosphere-header .main-menu > .logo {
  opacity: 0.72;
}
header.music-library-atmosphere-header .main-menu > .logo svg path {
  fill: #fff !important;
}
header.music-library-atmosphere-header .row > .col:nth-of-type(2n) a svg {
  opacity: 0.72;
}
header.music-library-atmosphere-header .row > .col:nth-of-type(2n) a svg path {
  fill: #fff !important;
}
body.music-library-page header.music-library-atmosphere-header:not(.opened):not(.open) .overlay {
  background-color: transparent !important;
  opacity: 0 !important;
  pointer-events: none;
}
html.night-mode .music-library-atmosphere > .music-libary,
body.night-mode .music-library-atmosphere > .music-libary,
html.night-mode .music-library-atmosphere > .creators-archive,
body.night-mode .music-library-atmosphere > .creators-archive {
  background-color: transparent !important;
}
html.night-mode .music-library-atmosphere,
body.night-mode .music-library-atmosphere {
  --music-library-atmosphere-surface: #020304;
  --music-library-atmosphere-depth: #020304;
}
html.night-mode body.music-library-page,
body.music-library-page.night-mode {
  background-color: #020304;
}
@keyframes music-library-star-twinkle {
  0%,
  100% {
    opacity: 0.06;
  }
  50% {
    opacity: var(--music-library-star-opacity);
  }
}
@media only screen and (min-width: 768px) {
  header.music-library-atmosphere-header .main-menu > .logo {
    opacity: 0.62;
    transition: opacity 0.18s linear;
  }
  header.music-library-atmosphere-header .main-menu > .logo:hover,
  header.music-library-atmosphere-header .main-menu > .logo:focus-visible {
    opacity: 1;
  }
  .music-library-atmosphere::before,
  .music-library-atmosphere::after,
  .music-library-atmosphere__blur,
  .music-library-atmosphere__stars {
    bottom: auto;
    height: clamp(980px, 65vw, 1320px);
    position: absolute;
  }
  .music-library-atmosphere::after {
    background-image: linear-gradient(180deg, transparent 30%, rgba(4, 6, 9, 0.04) 42%, rgba(4, 6, 9, 0.3) 58%, rgba(4, 6, 9, 0.64) 74%, rgba(4, 6, 9, 0.88) 86%, var(--music-library-atmosphere-depth) 90%, var(--music-library-atmosphere-depth) 100%);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: calc(clamp(980px, 65vw, 1320px) + 180px);
    inset: 0 0 auto;
  }
  .music-library-atmosphere::before {
    filter: brightness(var(--music-library-atmosphere-brightness, 1.12)) saturate(1.08) contrast(1.03);
  }
  .music-library-atmosphere__blur {
    height: calc(clamp(980px, 65vw, 1320px) + 56px);
  }
  .music-library-atmosphere__stars {
    -webkit-mask-image: var(--music-library-atmosphere-star-mask);
            mask-image: var(--music-library-atmosphere-star-mask);
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: cover;
            mask-size: cover;
  }
  .music-library-atmosphere__stars span {
    animation: music-library-star-twinkle var(--music-library-star-duration) ease-in-out var(--music-library-star-delay) infinite;
    animation-duration: calc(var(--music-library-star-duration) * 0.46);
  }
  .music-library-atmosphere__identity.is-logo-distortion-ready img {
    opacity: 0;
  }
  .music-library-atmosphere__identity.is-logo-distortion-ready .music-library-atmosphere__identity-canvas {
    display: block;
    opacity: 1;
  }
}
@media only screen and (min-width: 992px) {
  .music-library-atmosphere__identity {
    max-width: 572px;
  }
  .music-library-atmosphere__identity img {
    max-height: 143px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .music-library-atmosphere__stars span {
    animation: none;
    opacity: var(--music-library-star-opacity);
  }
  .music-library-atmosphere__identity.is-logo-distortion-ready img {
    opacity: 1;
  }
  .music-library-atmosphere__identity.is-logo-distortion-ready .music-library-atmosphere__identity-canvas {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  header.music-library-atmosphere-header:not(.opened):not(.open) .overlay {
    background-color: transparent;
    opacity: 0;
  }
  header.music-library-atmosphere-header:not(.opened):not(.open) .row > .col:first-of-type > .menu-box {
    background-color: transparent !important;
  }
  header.music-library-atmosphere-header:not(.opened):not(.open) .row > .col:nth-of-type(2n) > a {
    pointer-events: none;
    visibility: hidden;
  }
  header.music-library-atmosphere-header .row > .col:nth-of-type(2n) > a svg {
    opacity: 0.58;
  }
  .music-library-atmosphere {
    --music-library-atmosphere-image: url('/static/web/images/music-library/library-atmosphere-mobile.jpg');
    --music-library-atmosphere-mobile-height: clamp(670px, 168vw, 720px);
  }
  .music-library-atmosphere::before {
    background-color: var(--music-library-atmosphere-depth);
    background-image: linear-gradient(180deg, rgba(2, 5, 10, 0.24) 0%, rgba(2, 5, 10, 0.16) 28%, rgba(2, 5, 10, 0.24) 42%, rgba(3, 5, 8, 0.44) 58%, rgba(4, 6, 9, 0.7) 76%, rgba(5, 7, 10, 0.9) 100%), linear-gradient(90deg, rgba(2, 5, 10, 0.24), rgba(2, 5, 10, 0.04) 50%, rgba(2, 5, 10, 0.28)), var(--music-library-atmosphere-image);
    background-position: center, center, center 24px;
    background-size: cover, cover, auto 108%;
    bottom: auto;
    height: var(--music-library-atmosphere-mobile-height);
    position: absolute;
  }
  .music-library-atmosphere::after {
    background: linear-gradient(180deg, transparent 38%, rgba(4, 6, 9, 0.1) 48%, rgba(4, 6, 9, 0.42) 62%, rgba(4, 6, 9, 0.78) 80%, var(--music-library-atmosphere-depth) 100%);
    bottom: auto;
    height: var(--music-library-atmosphere-mobile-height);
    inset: 0 0 auto;
    position: absolute;
  }
  .music-library-atmosphere__blur {
    background-position: center, center 24px;
    background-size: cover, auto 108%;
    filter: blur(18px) brightness(var(--music-library-atmosphere-brightness, 1.12)) saturate(1.12);
    height: calc(var(--music-library-atmosphere-mobile-height) + 36px);
    inset: -18px -5% auto;
    -webkit-mask-image: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.18) 43%, rgba(0, 0, 0, 0.78) 54%, #000 64%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.18) 43%, rgba(0, 0, 0, 0.78) 54%, #000 64%, #000 100%);
    position: absolute;
    transform: scale(1.04);
  }
  .music-library-atmosphere > .music-libary {
    padding-top: 96px;
  }
  .music-library-atmosphere > .music-libary [data-music-library-results-region] > .row > .col-12 > h4 {
    color: #fff;
  }
  .music-library-atmosphere__stars {
    height: 670px;
  }
  .music-library-atmosphere__stars span:nth-child(3),
  .music-library-atmosphere__stars span:nth-child(7),
  .music-library-atmosphere__stars span:nth-child(11),
  .music-library-atmosphere__stars span:nth-child(15),
  .music-library-atmosphere__stars span:nth-child(18) {
    display: none;
  }
  .music-library-atmosphere__identity {
    margin: 0 auto 18px;
    max-width: 390px;
  }
  .music-library-atmosphere__credit {
    color: rgba(255, 255, 255, 0.34);
    font-size: 8px;
    letter-spacing: 0.02em;
    right: max(16px, env(safe-area-inset-right));
    text-align: right;
    top: max(18px, env(safe-area-inset-top));
    white-space: nowrap;
  }
}
@media only screen and (max-width: 374px) {
  .music-library-atmosphere__credit {
    top: max(64px, env(safe-area-inset-top));
  }
}
.music-libary-hero {
  padding-bottom: calc(80px + 0.78125vw);
  padding-top: calc(120px + 3.90625vw);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.music-libary-hero .container1614 {
  position: relative;
  z-index: 2;
}
.music-libary-hero .container1614 .main-img {
  border: 5px solid white;
  width: 100%;
}
.music-libary-hero .container1614 .row {
  align-items: center;
  color: #fff;
}
.music-libary-hero .container1614 .row h3 {
  margin-bottom: 5px;
}
.music-libary-hero .container1614 .row .music-library-return {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0.72;
}
.music-libary-hero .container1614 .row .music-library-return:hover {
  color: #fff;
  opacity: 1;
  text-decoration: underline;
}
.music-libary-hero .container1614 .row .music-library-return:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  opacity: 1;
}
.music-libary-hero .container1614 .row .uploaded {
  margin-bottom: 15px;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.2;
}
.music-libary-hero .container1614 .row .tags-box {
  margin-bottom: 10px;
}
.music-libary-hero .container1614 .row .tags-box a {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  font-size: 12px;
  text-transform: uppercase;
}
.music-libary-hero .container1614 .row .tags-box a:hover {
  text-decoration: underline;
}
.music-libary-hero .container1614 .row .play-box {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.music-libary-hero .container1614 .row .play-box .play {
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
}
.music-libary-hero .container1614 .row .play-box .play img {
  display: block;
  max-width: 20px;
  height: 20px;
}
.music-libary-hero .container1614 .row .play-box p {
  margin-bottom: 0;
}
.music-libary-hero .container1614 .row .button {
  height: 60px;
  line-height: 52px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.music-libary-hero .container1614 .row .button:last-of-type {
  margin-right: 6px;
}
.music-libary-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .music-libary-hero .container1614 .row {
    justify-content: center;
  }
  .music-libary-hero .rs {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .music-libary-hero .container1614 .row .col-md-4 {
    margin-bottom: 30px;
  }
}
.licensing-page {
  background: #0c0f0e;
  color: #ecefeb;
}
.licensing-page .waveform-player {
  display: none;
}
.licensing-page .licensing-shell {
  min-height: 100vh;
  padding: 170px 28px 110px;
  background: radial-gradient(circle at 16% 4%, rgba(115, 139, 126, 0.2), transparent 34%), radial-gradient(circle at 88% 16%, rgba(80, 102, 109, 0.16), transparent 32%), #0c0f0e;
}
.licensing-page .licensing-container {
  max-width: 1180px;
  margin: 0 auto;
}
.licensing-page .licensing-container--narrow {
  max-width: 820px;
}
.licensing-page .licensing-container--review {
  max-width: 1040px;
}
.licensing-page .licensing-eyebrow {
  margin: 0 0 16px;
  color: #aeb7b1;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.licensing-page h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.licensing-page h2 {
  margin: 0 0 24px;
  color: #f8faf8;
  font-size: 21px;
}
.licensing-page .licensing-lead {
  max-width: 760px;
  margin: 24px 0 45px;
  color: #bbc2bd;
  font-size: 20px;
  line-height: 1.55;
}
.licensing-page .licensing-back {
  display: inline-block;
  margin-bottom: 34px;
  color: #bfc7c1;
  text-decoration: none;
}
.licensing-page .licensing-muted {
  color: #8f9993;
  font-size: 13px;
}
.licensing-page .licensing-intents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.licensing-page .licensing-intent {
  display: flex;
  min-height: 150px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(31, 36, 33, 0.68);
  color: #fff;
  flex-direction: column;
  text-decoration: none;
  transition: 0.2s ease;
}
.licensing-page .licensing-intent span {
  font-size: 22px;
  font-weight: 600;
}
.licensing-page .licensing-intent small {
  margin-top: 9px;
  color: #aeb6b0;
  font-size: 14px;
  line-height: 1.45;
}
.licensing-page .licensing-intent strong {
  margin-top: auto;
  padding-top: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.licensing-page .licensing-intent:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(43, 50, 46, 0.82);
  transform: translateY(-2px);
}
.licensing-page .licensing-intent--featured {
  background: rgba(93, 119, 102, 0.32);
  border-color: rgba(194, 218, 202, 0.35);
}
.licensing-page .licensing-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.licensing-page .licensing-price {
  flex: 0 0 220px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.licensing-page .licensing-price strong {
  display: block;
  color: #fff;
  font-size: 28px;
}
.licensing-page .licensing-price span {
  color: #9fa8a2;
  font-size: 12px;
}
.licensing-page .licensing-scope-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 52px 0 26px;
}
.licensing-page .licensing-scope-summary > div {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(27, 31, 29, 0.5);
}
.licensing-page .licensing-scope-summary strong {
  color: #fff;
}
.licensing-page .licensing-scope-summary p {
  margin: 8px 0 0;
  color: #aeb6b1;
  font-size: 13px;
  line-height: 1.55;
}
.licensing-page .licensing-form {
  margin-top: 28px;
}
.licensing-page .licensing-panel {
  margin-bottom: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(27, 31, 29, 0.82);
}
.licensing-page .licensing-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.licensing-page .licensing-field {
  position: relative;
  margin-bottom: 20px;
}
.licensing-page .licensing-field label {
  position: static;
  margin: 0 0 8px;
  color: #d8ddd9;
  font-size: 13px;
}
.licensing-page .licensing-field label small {
  color: #87918b;
  font-size: 11px;
}
.licensing-page .licensing-field input,
.licensing-page .licensing-field select,
.licensing-page .licensing-field textarea {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background-color: rgba(5, 7, 6, 0.48);
  color: #fff;
  font-size: 16px;
}
.licensing-page .licensing-field input:focus,
.licensing-page .licensing-field select:focus,
.licensing-page .licensing-field textarea:focus {
  border-color: rgba(211, 229, 217, 0.62);
  outline: none;
}
.licensing-page .licensing-field textarea {
  min-height: 150px;
  padding-top: 14px;
}
.licensing-page .licensing-error {
  margin: 7px 0 0;
  color: #ffafa5;
  font-size: 12px;
}
.licensing-page .licensing-choice-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.licensing-page .licensing-choice {
  position: static;
  margin: 0;
  cursor: pointer;
}
.licensing-page .licensing-choice input {
  position: absolute;
  opacity: 0;
}
.licensing-page .licensing-choice span {
  display: block;
  padding: 11px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #bdc5c0;
  font-size: 14px;
}
.licensing-page .licensing-choice input:checked + span {
  border-color: #dbe5de;
  background: #dbe5de;
  color: #151816;
}
.licensing-page .licensing-track {
  display: flex;
  align-items: center;
  gap: 18px;
}
.licensing-page .licensing-track img {
  width: 92px;
  height: 92px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.licensing-page .licensing-track strong {
  display: block;
  color: #fff;
  font-size: 22px;
}
.licensing-page .licensing-track span {
  display: block;
  margin-top: 6px;
  color: #929b95;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.licensing-page .licensing-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.licensing-page .licensing-actions a:not(.button) {
  color: #bfc6c1;
}
.licensing-page .licensing-actions--center {
  justify-content: center;
  flex-direction: column;
}
.licensing-page .button {
  border-color: #e8eee9;
  background: #e8eee9;
  color: #121513;
  border-radius: 28px;
}
.licensing-page .button:hover {
  background: transparent;
  color: #fff;
}
.licensing-page .licensing-review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.75fr);
  gap: 18px;
  margin-top: 45px;
}
.licensing-page .licensing-definition-list {
  margin: 0;
}
.licensing-page .licensing-definition-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.licensing-page .licensing-definition-list dt {
  color: #8e9891;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.licensing-page .licensing-definition-list dd {
  margin: 0;
  color: #eef1ef;
  line-height: 1.45;
}
.licensing-page .licensing-order-total > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  color: #aeb6b1;
}
.licensing-page .licensing-order-total > div strong {
  color: #fff;
}
.licensing-page .licensing-order-total__grand {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 20px;
}
.licensing-page .licensing-order-total > small {
  color: #86908a;
  text-transform: capitalize;
}
.licensing-page .licensing-verify-note {
  margin: 20px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(183, 145, 59, 0.16);
  color: #dec98f;
  font-size: 12px;
  line-height: 1.5;
}
.licensing-page .licensing-terms {
  margin: 18px 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(20, 23, 21, 0.7);
}
.licensing-page .licensing-terms summary {
  cursor: pointer;
  color: #eef1ef;
  font-weight: 600;
}
.licensing-page .licensing-terms div {
  margin-top: 20px;
  color: #adb5af;
  font-size: 14px;
  line-height: 1.65;
}
.licensing-page .licensing-checkout-form {
  padding: 28px;
  border-radius: 14px;
  background: rgba(64, 79, 69, 0.42);
}
.licensing-page .licensing-checkout-form label {
  display: flex;
  position: static;
  align-items: flex-start;
  gap: 12px;
  color: #dbe0dc;
  font-size: 14px;
  line-height: 1.5;
}
.licensing-page .licensing-checkout-form input {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.licensing-page .licensing-checkout-form .button {
  display: block;
  margin-top: 22px;
}
.licensing-page .licensing-checkout-form > small {
  display: block;
  margin-top: 12px;
  color: #949d97;
}
.licensing-page .licensing-alert {
  margin: 28px 0;
  padding: 16px 20px;
  border: 1px solid rgba(205, 219, 210, 0.22);
  border-radius: 10px;
  background: rgba(90, 111, 97, 0.25);
  color: #dbe5de;
}
.licensing-page .licensing-alert--error {
  border-color: rgba(255, 150, 140, 0.35);
  background: rgba(126, 49, 43, 0.28);
  color: #ffd1cb;
}
.licensing-page .licensing-complete {
  text-align: center;
}
.licensing-page .licensing-complete .licensing-lead {
  margin-left: auto;
  margin-right: auto;
}
.licensing-page .licensing-complete > p:not(.licensing-eyebrow):not(.licensing-lead) {
  color: #b6beb9;
  font-size: 18px;
  line-height: 1.6;
}
.licensing-page .licensing-definition-list--verified {
  max-width: 700px;
  margin: 42px auto;
  text-align: left;
}
.licensing-verification-page {
  overflow: hidden;
  background: #02050a;
}
.licensing-verification-page > header,
.licensing-verification-page > .current-release-notice {
  opacity: 0.68;
  filter: blur(8px);
  pointer-events: none;
}
.licensing-verification-page .licensing-verification-backdrop {
  position: fixed;
  z-index: 0;
  inset: -18px;
  overflow: hidden;
  opacity: 0.78;
  filter: blur(10px);
  transform: scale(1.025);
  transform-origin: center top;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.licensing-verification-page > footer {
  visibility: hidden;
  pointer-events: none;
}
.licensing-verification-page .licensing-verification-overlay {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 52px 24px;
  background: rgba(2, 5, 10, 0.38);
}
.licensing-verification-page .licensing-verification-dialog {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: auto;
  padding: clamp(32px, 4vw, 54px);
  border-radius: 14px;
  background: rgba(10, 13, 15, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}
.licensing-verification-page .licensing-verification-dialog .licensing-container {
  width: 100%;
}
@media (max-width: 900px) {
  .licensing-page .licensing-shell {
    padding: 130px 18px 80px;
  }
  .licensing-page .licensing-intents,
  .licensing-page .licensing-form-grid,
  .licensing-page .licensing-review-grid {
    grid-template-columns: 1fr;
  }
  .licensing-page .licensing-scope-summary {
    grid-template-columns: 1fr 1fr;
  }
  .licensing-page .licensing-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .licensing-page .licensing-price {
    flex-basis: auto;
    width: 100%;
    box-sizing: border-box;
  }
  .licensing-verification-page .licensing-verification-overlay {
    align-items: flex-start;
    padding: 18px;
  }
  .licensing-verification-page .licensing-verification-dialog {
    padding: 30px 22px;
  }
}
@media (max-width: 560px) {
  .licensing-page h1 {
    font-size: 42px;
  }
  .licensing-page .licensing-intents,
  .licensing-page .licensing-scope-summary {
    grid-template-columns: 1fr;
  }
  .licensing-page .licensing-panel {
    padding: 22px;
  }
  .licensing-page .licensing-definition-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .licensing-page .licensing-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
.music-library-license-sheet[hidden] {
  display: none;
}
.music-library-license-sheet {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 100%;
  margin-top: -10px;
}
.music-library-license-sheet__panel {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(182, 206, 211, 0.2);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(135deg, rgba(14, 18, 18, 0.985), rgba(23, 25, 25, 0.97));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
  color: #fff;
}
.music-library-license-sheet__flow {
  position: relative;
  min-width: 0;
}
.music-library-license-sheet__close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(213, 231, 234, 0.24);
  border-radius: 50%;
  background: rgba(7, 10, 10, 0.64);
  color: #eef7f8;
  font: inherit;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.music-library-license-sheet__close:hover,
.music-library-license-sheet__close:focus {
  border-color: rgba(124, 205, 219, 0.72);
  background: rgba(98, 170, 181, 0.14);
  outline: none;
}
.music-library-license-sheet iframe {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 280px;
  border: 0;
  overflow: hidden;
  background: transparent;
}
.music-library-audition-row.is-licensing-track {
  position: relative;
  z-index: 4;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  --music-library-audition-border: rgba(182, 206, 211, 0.28);
  --music-library-audition-surface: rgba(20, 24, 24, 0.98);
  --music-library-waveform-color: #a9bbc0;
  --music-library-waveform-progress-color: #edf8f9;
  background: linear-gradient(105deg, rgba(18, 22, 22, 0.99), rgba(29, 32, 31, 0.985));
  border-color: rgba(182, 206, 211, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}
.music-library-audition-row.is-licensing-track .music-library-audition-row__identity h4 a,
.music-library-audition-row.is-licensing-track .music-library-audition-row__play-toggle {
  color: #eef7f8;
}
.music-library-audition-row.is-licensing-track .music-library-waveform {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(210, 231, 234, 0.16);
}
.music-library-audition-row.is-licensing-track .music-library-track-actions .music-library-future-action {
  border-color: rgba(116, 195, 208, 0.58);
  background-color: rgba(73, 139, 149, 0.14);
  color: #edf9fa;
}
.music-library-audition-row.is-licensing-track + .music-library-license-sheet {
  z-index: 4;
}
.music-library-audition-row.is-licensing-track + .music-library-license-sheet .music-library-license-sheet__panel {
  background: linear-gradient(105deg, rgba(18, 22, 22, 0.99), rgba(29, 32, 31, 0.985));
  border-color: rgba(182, 206, 211, 0.28);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.music-library-audition-row.is-licensing-track + .music-library-license-sheet .music-library-license-sheet__close {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(203, 222, 224, 0.22);
}
.music-library-audition-row .music-library-future-action[data-music-library-license-intent] {
  cursor: pointer;
  opacity: 1;
}
.licensing-embedded {
  background: #0c0f0e;
}
.licensing-embedded .licensing-shell {
  min-height: 100vh;
  padding: 24px 24px 30px;
}
.licensing-embedded .licensing-container,
.licensing-embedded .licensing-container--review {
  max-width: 980px;
}
.licensing-embedded .licensing-back {
  margin-bottom: 14px;
}
.licensing-embedded h1 {
  font-size: clamp(32px, 4.2vw, 48px);
}
.licensing-embedded h2 {
  margin-bottom: 18px;
}
.licensing-embedded .licensing-lead {
  margin: 14px 0 22px;
  font-size: 15px;
}
.licensing-embedded .licensing-intents {
  grid-template-columns: 1fr;
}
.licensing-embedded .licensing-scope-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 15px;
}
.licensing-embedded .licensing-scope-summary > div {
  padding: 14px 16px;
}
.licensing-embedded .licensing-scope-summary p {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.4;
}
.licensing-embedded .licensing-form-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 14px;
}
.licensing-embedded .licensing-review-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.75fr);
  gap: 14px;
  margin-top: 18px;
}
.licensing-embedded .licensing-heading-row {
  align-items: flex-end;
  flex-direction: row;
  gap: 24px;
}
.licensing-embedded .licensing-price {
  box-sizing: border-box;
  width: auto;
  flex: 0 0 170px;
  padding: 16px;
}
.licensing-embedded .licensing-price strong {
  font-size: 23px;
}
.licensing-embedded .licensing-panel {
  margin-bottom: 12px;
  padding: 18px;
}
.licensing-embedded .licensing-form {
  margin-top: 20px;
}
.licensing-embedded .licensing-field {
  margin-bottom: 8px;
}
.licensing-embedded .licensing-field input,
.licensing-embedded .licensing-field select {
  height: 44px;
}
.licensing-embedded .licensing-choice-row {
  margin-bottom: 20px;
}
.licensing-embedded .licensing-actions {
  margin-top: 18px;
}
.licensing-embedded .licensing-definition-list > div {
  gap: 14px;
  padding: 8px 0;
}
.licensing-embedded .licensing-terms {
  margin: 10px 0;
  padding: 14px 18px;
}
.licensing-embedded .licensing-checkout-form {
  padding: 16px 18px;
}
.licensing-embedded .licensing-checkout-form .button {
  margin-top: 14px;
}
.licensing-embedded--intent {
  background: #0c0f0e;
}
.licensing-embedded--intent .licensing-shell {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 100vh;
  padding: 36px 0;
  background: #0c0f0e;
}
.licensing-embedded--intent .licensing-container {
  width: 100%;
}
.licensing-embedded--intent .licensing-intent {
  min-height: 96px;
  padding: 20px;
  background: rgba(15, 19, 17, 0.54);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
.licensing-embedded--intent .licensing-intent--featured {
  background: rgba(103, 128, 110, 0.42);
}
.licensing-embedded.music-library-licensing-inline-frame {
  background: transparent;
}
.licensing-embedded.music-library-licensing-inline-frame .licensing-shell {
  display: block;
  box-sizing: border-box;
  min-height: 0;
  padding: 24px 70px 28px 28px;
  background: transparent;
}
.licensing-embedded.music-library-licensing-inline-frame .licensing-container,
.licensing-embedded.music-library-licensing-inline-frame .licensing-container--narrow,
.licensing-embedded.music-library-licensing-inline-frame .licensing-container--review {
  width: 100%;
  max-width: none;
}
.licensing-embedded.music-library-licensing-inline-frame .licensing-intents {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.licensing-embedded.music-library-licensing-inline-frame .licensing-intent {
  min-height: 124px;
  padding: 18px;
}
.licensing-embedded.music-library-licensing-inline-frame .licensing-heading-row {
  align-items: center;
}
.licensing-embedded--intent.music-library-licensing-inline-frame {
  background: transparent;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-shell {
  align-items: initial;
  padding: 20px 70px 24px 28px;
  background: transparent;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-container {
  max-width: none;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-eyebrow {
  margin: 0 0 8px;
  color: rgba(210, 230, 233, 0.63);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.licensing-embedded--intent.music-library-licensing-inline-frame h1 {
  max-width: none;
  color: #f4fafa;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-lead {
  max-width: 720px;
  margin: 8px 0 17px;
  color: rgba(218, 230, 231, 0.7);
  font-size: 13px;
  line-height: 1.5;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(230px, 0.72fr);
  gap: 14px;
  align-items: stretch;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intents {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent {
  min-height: 126px;
  padding: 16px;
  border-color: rgba(203, 222, 224, 0.15);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent span {
  font-size: 15px;
  line-height: 1.25;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent small {
  margin-top: 7px;
  color: rgba(217, 230, 231, 0.62);
  font-size: 11px;
  line-height: 1.45;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent strong {
  padding-top: 10px;
  color: #c8edf2;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent:hover,
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent:focus {
  border-color: rgba(160, 220, 229, 0.52);
  background: rgba(75, 121, 128, 0.16);
  transform: none;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent--featured {
  border-color: rgba(92, 197, 213, 0.68);
  background: linear-gradient(135deg, rgba(48, 126, 139, 0.32), rgba(27, 65, 69, 0.22));
  box-shadow: inset 0 0 0 1px rgba(100, 205, 222, 0.12), 0 0 0 1px rgba(67, 174, 190, 0.08);
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary {
  padding: 16px 18px;
  border: 1px solid rgba(203, 222, 224, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary > strong {
  display: block;
  color: #eef8f9;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary li {
  position: relative;
  padding: 0 0 10px 18px;
  color: rgba(218, 230, 231, 0.72);
  font-size: 11px;
  line-height: 1.45;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary li:last-child {
  padding-bottom: 0;
}
.licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-summary li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  color: #8cd8e4;
}
@media (min-width: 1101px) {
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-shell {
    padding-left: calc(106px + clamp(16px, 1.75vw, 30px));
  }
}
@media (max-width: 850px) {
  .licensing-embedded .licensing-shell {
    padding: 28px 18px 60px;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-shell {
    padding: 24px 58px 30px 20px;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-intents {
    grid-template-columns: 1fr;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-scope-summary,
  .licensing-embedded.music-library-licensing-inline-frame .licensing-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-review-grid {
    grid-template-columns: 1fr;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-layout {
    grid-template-columns: 1fr;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1050px) and (min-width: 851px) {
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-inline-intent-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .music-library-license-sheet__close {
    top: 12px;
    right: 12px;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-shell {
    padding: 58px 16px 26px;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-scope-summary,
  .licensing-embedded.music-library-licensing-inline-frame .licensing-form-grid {
    grid-template-columns: 1fr;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-heading-row {
    align-items: stretch;
    flex-direction: column;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-price {
    width: 100%;
    flex-basis: auto;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-shell {
    padding-top: 58px;
    padding-bottom: 22px;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame h1 {
    font-size: 23px;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-lead {
    margin-bottom: 14px;
  }
  .licensing-embedded--intent.music-library-licensing-inline-frame .licensing-intent {
    min-height: 0;
  }
}
@media (max-width: 767px) {
  body.music-library-licensing-mobile-open {
    overflow: hidden;
  }
  body.music-library-licensing-mobile-open .music-library-atmosphere {
    z-index: 11;
  }
  body.music-library-licensing-mobile-open header.music-library-atmosphere-header {
    pointer-events: none;
  }
  .music-library-license-sheet {
    box-sizing: border-box;
    position: fixed;
    z-index: 1000;
    top: var(--music-library-license-viewport-top, 0);
    right: 0;
    left: 0;
    width: 100%;
    height: var(--music-library-license-viewport-height, 100vh);
    height: var(--music-library-license-viewport-height, 100dvh);
    margin: 0;
    padding-top: max(8px, env(safe-area-inset-top));
    background: rgba(4, 7, 8, 0.72);
  }
  .music-library-audition-row.is-licensing-track + .music-library-license-sheet {
    z-index: 1000;
  }
  .music-library-license-sheet__panel {
    display: flex;
    min-height: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(182, 206, 211, 0.28);
    border-bottom: 0;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(155deg, rgba(14, 18, 19, 0.995), rgba(22, 27, 28, 0.99));
    box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.42);
  }
  .music-library-license-sheet__flow {
    min-height: 0;
    flex: 1 1 auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: max(14px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .music-library-license-sheet__panel > .music-library-visually-hidden {
    clip: auto;
    -webkit-clip-path: none;
            clip-path: none;
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    margin: 0;
    overflow: hidden;
    padding: 17px 62px 14px 18px;
    border-bottom: 1px solid rgba(203, 222, 224, 0.13);
    color: rgba(235, 246, 248, 0.88);
    font-size: 14px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .music-library-license-sheet__close {
    top: 8px;
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
  }
  .music-library-license-sheet iframe {
    min-height: 340px;
  }
  .music-library-audition-row.is-licensing-track {
    border-radius: 10px;
  }
  .licensing-embedded.music-library-licensing-inline-frame {
    overflow: hidden;
  }
  .licensing-embedded.music-library-licensing-inline-frame .licensing-shell {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.more-tracks {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.more-tracks .heading-row .col-12 {
  margin-bottom: 15px;
}
.more-tracks .track-box {
  background-color: #fff;
}
.more-tracks .track-box .photo-box {
  padding: 5px;
}
.more-tracks .details-box {
  padding: 35px;
}
.more-tracks .details-box h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.more-tracks .details-box .date {
  margin-bottom: 0;
  line-height: 1;
  font-size: 10px;
}
.more-tracks .details-box .tags-box {
  margin-top: 10px;
  margin-bottom: 10px;
}
.more-tracks .details-box .tags-box a {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
}
.more-tracks .details-box .tags-box a:hover {
  text-decoration: underline;
}
.more-tracks .details-box .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 100%;
  margin-bottom: 10px;
}
.more-tracks .details-box .links div {
  display: flex;
  align-items: center;
}
.more-tracks .details-box .links div .play {
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
}
.more-tracks .details-box .links div .play img {
  max-width: 20px;
  height: 20px;
}
.more-tracks .details-box .links div p {
  margin-bottom: 0;
}
.more-tracks .details-box .links div .social-list {
  margin-bottom: 0;
}
.more-tracks .details-box .links div .social-list li {
  margin-right: 15px;
}
.more-tracks .details-box .links div .social-list li a i {
  font-size: 20px;
}
.more-tracks .details-box .links div .social-list li:last-of-type {
  margin-right: 0;
}
.more-tracks .details-box .button-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .more-tracks .tracks-row [class^='col-'] {
    margin-bottom: 30px;
  }
}
.hero-small {
  padding-bottom: calc(80px + 2.34375vw);
  padding-top: calc(120px + 6.77083333vw);
  min-height: 60vh;
  position: relative;
  background-size: cover;
}
.hero-small .container1200 {
  position: relative;
  z-index: 2;
}
.hero-small .container1200 .row img {
  display: block;
}
.hero-small .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .hero-small {
    min-height: 40vh;
  }
}
.text-module {
  padding-top: calc(80px + 2.34375vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.text-module .col-12 {
  margin-bottom: 50px;
}
.text-module ul {
  padding-left: calc(30px + 3.125vw);
}
.text-over-bg {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.text-over-bg .container1614 {
  position: relative;
  z-index: 3;
}
.text-over-bg .container1614 .row {
  padding-top: calc(80px + 2.34375vw);
  padding-bottom: calc(80px + 2.34375vw);
  min-height: 100vh;
  align-items: flex-end;
  color: #fff;
}
.text-over-bg .container1614 .row h2 {
  margin-bottom: 50px;
}
.text-over-bg .container1614 .row p.underline {
  text-decoration: underline;
}
.text-over-bg .container1614 .row p:last-of-type {
  margin-bottom: 0;
}
.text-over-bg .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.menage-profile {
  padding-top: calc(120px + 4.16666667vw);
  padding-bottom: calc(120px + 4.16666667vw);
}
.menage-profile .col-12 {
  margin-bottom: calc(30px + 2.60416667vw);
}
.menage-profile .col-12 p {
  font-size: 14px;
  line-height: 20px;
}
.menage-profile .col-12 p a {
  text-decoration: underline;
}
.menage-profile .col-12 .image-menage .avatar-upload {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit {
  height: 100%;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input {
  display: none;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label {
  font-family: "ibmSemi";
  display: inline-block;
  height: 70px;
  line-height: 62px;
  min-width: 190px;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  border-radius: 35px;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  transition: background-color 0.35s ease-in, color 0.25s ease-in-out;
  min-width: 135px;
  height: 40px;
  line-height: 36px;
  font-size: 14px;
  background-color: transparent;
  color: #000;
  cursor: pointer;
  display: block;
  margin-bottom: 30px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label i {
  margin-right: 10px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label svg path {
  transition: fill 0.35s ease-in-out;
  fill: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label:hover {
  color: #000;
  background-color: transparent;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label:hover svg path {
  fill: #000;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.large {
  min-width: 410px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.small {
  min-width: 135px;
  height: 40px;
  line-height: 36px;
  font-size: 14px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.small svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.reverse {
  background-color: transparent;
  color: #000;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.reverse svg path {
  fill: #000;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.reverse:hover {
  background-color: #000;
  color: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.reverse:hover svg path {
  fill: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.white {
  background-color: #fff;
  color: #fff;
  border: 1px solid #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.white:hover {
  background-color: transparent;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.white.reverse {
  background-color: transparent;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label.white.reverse:hover {
  color: #000;
  background-color: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label svg path {
  fill: #000;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label:hover {
  background-color: #000;
  color: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit input + label:hover svg path {
  fill: #fff;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-edit .removeImage {
  margin-bottom: 0;
  cursor: pointer;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-preview {
  width: 165px;
  height: 165px;
  position: relative;
  border-radius: 100%;
  margin-right: 30px;
  background-color: #000;
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-preview h3 {
  margin-bottom: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menage-profile .col-12 .image-menage .avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  position: relative;
}
.menage-profile .col-12.social-media-menage h3 {
  margin-bottom: 15px;
}
.menage-profile .col-12.social-media-menage h3 .button {
  height: 23px;
  line-height: 20px;
  text-transform: uppercase;
  font-size: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
.menage-profile .col-12.social-media-menage .social-add-delete {
  /*                select {
font-family: 'FontAwesome';

                }*/
}
.menage-profile .col-12.social-media-menage .social-add-delete fieldset {
  display: flex;
  align-items: center;
}
.menage-profile .col-12.social-media-menage .social-add-delete fieldset select {
  margin-right: 15px;
  height: 50px;
  background-color: #f3f4f8;
  border-radius: 5px;
  padding: 7px;
  font-size: 15px;
  width: 128px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAGCAMAAAAmGUT3AAAAHlBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC3KG9qAAAACnRSTlMAESIzZneImczuhU4OsAAAAChJREFUCNctxrcBACAIALAANv5/2EEzhQKRsgfiLKqHOBuq5wvVPyRcD1gAeuqynusAAAAASUVORK5CYII=);
  background-position-x: calc(100% - 5px);
  border: none;
  outline: none;
  scroll-behavior: smooth;
}
.menage-profile .col-12.social-media-menage .social-add-delete fieldset select option {
  font-size: 15px;
  background-color: #f3f4f8;
  padding: 7px;
  border: none;
}
.menage-profile .col-12.social-media-menage .social-add-delete fieldset input {
  margin-right: 15px;
}
.menage-profile .col-12.social-media-menage .social-add-delete fieldset .social-delete i {
  cursor: pointer;
}
.menage-profile .col-12.two-factor-col {
  margin-bottom: 30px;
}
.menage-profile .col-12.two-factor-col .two-fa-box {
  display: flex;
  justify-content: space-between;
}
.menage-profile .col-12.two-factor-col .two-fa-box .button {
  background-color: #f3f4f8;
  border: 1px solid #f3f4f8;
  color: #000;
}
.menage-profile .col-12.two-factor-col .two-fa-box .button:hover {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.menage-profile .col-12.two-factor-col .two-fa-box .button.disable {
  background-color: #f14475;
  border: 1px solid #f14475;
  color: #fff;
}
.menage-profile .col-12.two-factor-col .two-fa-box .button.disable:hover {
  background-color: white;
  color: #f14475;
}
.menage-profile .col-12.two-factor-col .qr-box {
  padding-top: 10px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.menage-profile .col-12.two-factor-col .qr-box h5 {
  margin-bottom: 10px;
}
.menage-profile .col-12.two-factor-col .qr-box p {
  margin-bottom: 10px;
}
.menage-profile .col-12.two-factor-col .qr-box .qr {
  background-color: #f3f4f8;
  padding: 50px;
  margin-bottom: 15px;
  text-align: center;
}
.menage-profile .col-12.two-factor-col .qr-box .qr img {
  max-width: 320px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.menage-profile .col-12 input[type="submit"] {
  width: 100%;
  border: 1px solid #000;
}
.subscriptions {
  padding-top: calc(120px + 2.86458333vw);
  padding-bottom: calc(80px + 0.78125vw);
  background-color: #f3f4f8;
}
.subscriptions .subscriptions-intro,
.subscriptions .creator-plan,
.subscriptions .business-licensing {
  max-width: 760px;
}
.subscriptions .subscriptions-intro {
  margin-bottom: 55px;
}
.subscriptions .subscriptions-intro h3 {
  margin-bottom: 20px;
}
.subscriptions .subscriptions-intro p {
  max-width: 650px;
  margin-bottom: 25px;
}
.subscriptions .subscription-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.subscriptions .subscription-links .button {
  margin: 0;
}
.subscriptions .box.creator-plan {
  max-width: 760px;
  height: auto;
  padding: 65px;
  background-color: #fff;
  border: 1px solid #000;
  margin-bottom: 35px;
}
.subscriptions .box.creator-plan .plan-type {
  margin-bottom: 12px;
}
.subscriptions .box.creator-plan h3 {
  border-bottom: 1px solid #000;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.subscriptions .box.creator-plan h4 {
  margin-bottom: 30px;
}
.subscriptions .box.creator-plan .custom-list {
  margin-bottom: 20px;
}
.subscriptions .box.creator-plan .creator-support {
  max-width: 520px;
  padding-top: 18px;
  border-top: 1px solid #ddd;
  color: #333;
  font-size: 15px;
  line-height: 23px;
  margin: 0 0 35px;
}
.subscriptions .box.creator-plan .button {
  margin-bottom: 0;
}
.subscriptions .box.creator-plan .creator-cta {
  min-width: 220px;
}
.subscriptions .box.creator-plan .button.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.subscriptions .box.creator-plan .plan-availability {
  font-family: "ibm";
  color: #666;
  font-size: 13px;
  margin: 15px 0 0;
}
.subscriptions .plan-type {
  font-family: "ibmSemi";
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.subscriptions .business-licensing {
  padding: 35px 0 0;
  border-top: 1px solid #000;
}
.subscriptions .business-licensing h3 {
  margin-bottom: 15px;
}
.subscriptions .business-licensing p:not(.plan-type) {
  max-width: 650px;
  margin-bottom: 25px;
}
.subscriptions .business-licensing .button {
  margin: 0;
}
html.night-mode .subscriptions,
body.night-mode .subscriptions {
  background-color: #000;
  color: #fff;
}
html.night-mode .subscriptions .box.creator-plan,
body.night-mode .subscriptions .box.creator-plan {
  background-color: #111;
  border-color: #fff;
}
html.night-mode .subscriptions .box.creator-plan h3,
body.night-mode .subscriptions .box.creator-plan h3 {
  border-bottom-color: #fff;
}
html.night-mode .subscriptions .box.creator-plan .plan-availability,
body.night-mode .subscriptions .box.creator-plan .plan-availability {
  color: #aaa;
}
html.night-mode .subscriptions .box.creator-plan .creator-support,
body.night-mode .subscriptions .box.creator-plan .creator-support {
  border-top-color: #333;
  color: #ddd;
}
html.night-mode .subscriptions .box.creator-plan .custom-list li::before,
body.night-mode .subscriptions .box.creator-plan .custom-list li::before {
  filter: invert(1);
}
html.night-mode .subscriptions .box.creator-plan .creator-cta,
body.night-mode .subscriptions .box.creator-plan .creator-cta {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
html.night-mode .subscriptions .box.creator-plan .creator-cta:hover,
body.night-mode .subscriptions .box.creator-plan .creator-cta:hover {
  background-color: transparent;
  color: #fff;
}
html.night-mode .subscriptions .business-licensing,
body.night-mode .subscriptions .business-licensing {
  border-top-color: #fff;
}
@media only screen and (max-width: 767px) {
  .subscriptions .subscriptions-intro {
    margin-bottom: 35px;
  }
  .subscriptions .box.creator-plan {
    padding: 30px;
  }
  .subscriptions .business-licensing {
    padding-top: 30px;
  }
}
.subscriptions-payment {
  padding-top: calc(120px + 2.86458333vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.subscriptions-payment .box {
  max-width: 500px;
  padding: 65px;
  background-color: #fff;
  border: 1px solid #000;
  margin-bottom: 20px;
}
.subscriptions-payment .box h5 {
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
.subscriptions-payment .box .details-box {
  display: flex;
  justify-content: space-between;
}
.subscriptions-payment .box .details-box h4 {
  margin-bottom: 10px;
}
.subscriptions-payment .box .details-box h5 {
  border: none;
  padding-bottom: 0;
}
.subscriptions-payment .box .details-box i {
  cursor: pointer;
  font-size: 30px;
}
@media only screen and (max-width: 767px) {
  .subscriptions-payment .box {
    padding: 30px;
  }
}
.subscriptions-menage {
  padding-top: calc(120px + 2.86458333vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.subscriptions-menage h3 .button.small {
  min-width: 134px;
  height: 29px;
  line-height: 27px;
  font-size: 10px;
  padding: 0 10px;
}
.subscriptions-menage p {
  font-size: 14px;
  line-height: 25px;
}
.subscriptions-menage .table-box {
  border: 1px solid #000;
  background-color: #fff;
  padding: 40px 65px;
  overflow: auto;
}
.subscriptions-menage .table-box table {
  width: 100%;
}
.subscriptions-menage .table-box table tr:not(.heading-tr) td {
  padding: 25px 0;
  border-top: 1px solid #000;
}
.subscriptions-menage .table-box table th {
  padding: 15px 0;
  font-family: "ibmSemi";
  font-size: 14px;
}
.subscriptions-menage .table-box td h5 {
  margin-bottom: 5px;
}
.subscriptions-menage .table-box td p {
  margin-bottom: 0;
}
.subscriptions-menage .table-box td:last-of-type {
  text-align: right;
}
.popup-box {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in;
}
.popup-box.show {
  opacity: 1;
  visibility: visible;
}
.popup-box .cancel-subscription {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 75px;
  background-color: #fff;
  max-width: 540px;
}
.popup-box .cancel-subscription a.link {
  margin-bottom: 50px;
}
.popup-box .cancel-subscription a.button {
  display: block;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1023px) {
  .subscriptions-menage .table-box {
    padding: 30px;
  }
  .subscriptions-menage .table-box table {
    width: 100%;
  }
  .subscriptions-menage .table-box table tr:not(.heading-tr) td {
    padding: 15px 0;
  }
  .subscriptions-menage .table-box td {
    padding-right: 15px;
  }
  .subscriptions-menage .table-box td h5 {
    width: 120px;
    font-size: 14px;
  }
  .subscriptions-menage .table-box td:last-of-type .button {
    margin-bottom: 10px;
  }
  .popup-box .cancel-subscription {
    padding: 30px;
    width: 90%;
  }
}
.download-list {
  padding-top: calc(80px + 5.98958333vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.download-list form .filter-row {
  margin-bottom: 30px;
}
.download-list form .filter-row [class^='col-']:first-of-type {
  position: relative;
}
.download-list form .filter-row input,
.download-list form .filter-row select {
  border: none;
  background-color: #fff;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  font-family: "ibmSemi";
}
.download-list form .filter-row input::-moz-placeholder, .download-list form .filter-row select::-moz-placeholder {
  opacity: 1;
  color: #000;
  font-size: 20px;
}
.download-list form .filter-row input::placeholder,
.download-list form .filter-row select::placeholder {
  opacity: 1;
  color: #000;
  font-size: 20px;
}
.download-list form .filter-row input[type="submit"] {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAVCAMAAABxCz6aAAAAMFBMVEUAAAAvPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8vPz8NUh0+AAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAgElEQVR42pWPBxbDIAhAnRCkwv1P24EvhO7W9eG7k5XcEaGkWAqpMotyO1wV7kZSOBztIbid7m62LEoOxzMZhsGXikEgyqL1Bm1uPH2QeaW8RdnVgDNKGoYsGD63Hwbxc34WKOYVyImrnz51IA4RLCLLmt6YCfLtALde/rbphe0XvP8EMTG6Zy0AAAAASUVORK5CYII=);
  width: 20px;
  height: 20px;
  font-size: 0;
  position: absolute;
  right: 30px;
  top: 18px;
  background-repeat: no-repeat;
  padding: 0;
}
.download-list .heading-row {
  justify-content: space-between;
}
.download-list .heading-row .grid-options {
  text-align: right;
}
.download-list .heading-row .grid-options ul li {
  list-style: none;
  display: inline-block;
  background-color: #fff;
  padding: 10px;
  margin-right: 10px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s linear;
}
.download-list .heading-row .grid-options ul li svg path {
  stroke: #000;
  transition: fill 0.2s linear;
}
.download-list .heading-row .grid-options ul li:hover {
  background-color: #000;
}
.download-list .heading-row .grid-options ul li:hover svg path {
  stroke: #fff;
}
.download-list .heading-row .grid-options ul li.active {
  background-color: #000;
}
.download-list .heading-row .grid-options ul li.active svg path {
  stroke: #fff;
}
.download-list .download-list-row .col-12 {
  overflow: auto;
}
.download-list .download-list-row table {
  width: 100%;
}
.download-list .download-list-row table tr {
  background-color: #fff;
  border-top: 1px solid #f3f4f8;
}
.download-list .download-list-row table tr.heading-tr {
  background-color: #f9fafc;
  padding: 15px;
  border-top: none;
}
.download-list .download-list-row table tr.heading-tr th {
  padding: 8px;
  font-family: "ibmSemi";
  text-transform: uppercase;
  font-size: 12px;
}
.download-list .download-list-row table tr.heading-tr th:first-of-type {
  text-align: center;
}
.download-list .download-list-row table tr td {
  padding: 8px;
}
.download-list .download-list-row table tr td.main {
  display: flex;
  align-items: center;
}
.download-list .download-list-row table tr td.main .play {
  margin-bottom: 0;
  padding: 10px;
  padding-left: 0;
  cursor: pointer;
}
.download-list .download-list-row table tr td.main .play img {
  max-width: 20px;
  height: 20px;
}
.download-list .download-list-row table tr td.main img {
  width: 50px;
  margin-right: 10px;
}
.download-list .download-list-row table tr td.main h4 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.download-list .download-list-row table tr td p {
  margin-bottom: 0;
}
.download-list .download-list-row table tr td p.uploaded {
  font-size: 10px;
  font-family: "ibmSemi";
  text-transform: uppercase;
}
.download-list .download-list-row table tr td a.tag-link {
  padding: 5px 15px;
  margin-right: 5px;
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 10px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.download-list .download-list-row table tr td a.tag-link:hover {
  text-decoration: underline;
}
.download-list .download-list-row table tr td.links .social-list {
  margin-bottom: 0;
  text-align: left;
}
.download-list .download-list-row table tr td.links .social-list li {
  margin-right: 10px;
}
.download-list .download-list-row table tr td.links .social-list li a i {
  font-size: 20px;
}
.download-list .download-list-row table tr td.attribution .social-list,
header .side-panel.download-panel .social-list {
  text-align: left;
  display: inline-flex;
  border: 1px solid #000;
  border-radius: 50px;
}
.download-list .download-list-row table tr td.attribution .social-list li,
header .side-panel.download-panel .social-list li {
  margin-right: 0;
}
.download-list .download-list-row table tr td.attribution .social-list li a,
header .side-panel.download-panel .social-list li a {
  display: inline-block;
  text-align: center;
  line-height: 35px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.2s linear;
}
.download-list .download-list-row table tr td.attribution .social-list li a i,
header .side-panel.download-panel .social-list li a i {
  font-size: 16px;
}
.download-list .download-list-row table tr td.attribution .social-list li a:hover,
header .side-panel.download-panel .social-list li a:hover {
  background-color: #f3f4f8;
  opacity: 1;
}
.download-list .download-list-row table tr td:last-of-type {
  text-align: right;
}
.download-list .download-list-row .spinner-col {
  text-align: center;
  margin-top: 50px;
}
.download-list .download-list-row .spinner-col i.fa-spinner {
  font-size: 50px;
}
@media only screen and (max-width: 1199px) {
  .download-list .download-list-row table tr td {
    width: 200px;
  }
  .download-list .download-list-row table tr td.main {
    height: 100px;
  }
}
@media (max-width: 1024px) {
  .download-list {
    padding-top: calc(150px + 5.98958333vw);
  }
}
.testimonials {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 2.34375vw);
  position: relative;
}
.testimonials .row {
  align-items: center;
}
.testimonials .row .quote-sign {
  margin-bottom: 50px;
}
.testimonials .row .col-md-6 img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.text-image-player-small {
  padding-top: calc(80px + 3.90625vw);
  padding-bottom: calc(80px + 3.90625vw);
}
.text-image-player-small.small-padding {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: calc(80px + 0.78125vw);
}
.text-image-player-small .row {
  align-items: center;
}
.text-image-player-small .row .content-col {
  padding-right: 50px;
}
.text-image-player-small .row .content-col.text-padding-big {
  padding-top: 140px;
}
.text-image-player-small .row .content-col p {
  max-width: 80%;
}
.text-image-player-small .row .photo-col {
  text-align: right;
  position: relative;
}
.text-image-player-small .row .photo-col .player-thumbnail {
  position: absolute;
  top: 165px;
  left: 60px;
}
.text-image-player-small .row.reverse-order .photo-col {
  order: 1;
  text-align: left;
}
.text-image-player-small .row.reverse-order .photo-col .player-thumbnail {
  left: auto;
  right: 70px;
}
.text-image-player-small .row.reverse-order .content-col {
  order: 2;
  padding-right: 15px;
}
@media only screen and (max-width: 991px) {
  .text-image-player-small .row .content-col {
    order: 2;
    padding-top: 150px;
    padding-right: 15px;
  }
  .text-image-player-small .row .content-col p {
    max-width: 100%;
  }
  .text-image-player-small .row .content-col.text-padding-big {
    padding-top: 150px;
  }
  .text-image-player-small .row .photo-col {
    order: 1;
    text-align: center;
    position: relative;
  }
  .text-image-player-small .row .photo-col .player-thumbnail {
    position: absolute;
    top: auto;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
  }
  .text-image-player-small .row.reverse-order .photo-col {
    order: 1;
    text-align: left;
  }
  .text-image-player-small .row.reverse-order .photo-col .player-thumbnail {
    left: 50%;
    right: auto;
  }
  .text-image-player-small .row.reverse-order .content-col {
    order: 2;
    padding-right: 15px;
  }
}
.text-image-ver2 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.text-image-ver2 .row {
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .text-image-ver2 .row {
    flex-direction: column-reverse;
  }
  .text-image-ver2 .row .col-md-6 {
    margin-bottom: 30px;
  }
}
.cta-animation {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.cta-animation .bg-layer1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.cta-animation .bg-layer2 {
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: -30%;
  z-index: 2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cta-animation .text-big {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.cta-animation .text-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.cta-animation .links {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.cta-animation .links a {
  font-size: 30px;
}
@media only screen and (max-width: 568px) {
  .cta-animation {
    height: 80vh;
  }
  .cta-animation .text-big {
    width: 90%;
  }
  .cta-animation .text-small {
    width: 80%;
  }
  .cta-animation .links {
    text-align: center;
    width: 100%;
    padding-top: 36px;
  }
  .cta-animation .links a {
    margin: 0 10px !important;
  }
  .cta-animation .links a:first-of-type {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.release-hero {
  background: #02050a;
  color: #fff;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}
.release-hero__inner {
  display: grid;
  grid-template-columns: minmax(420px, 42%) minmax(0, 58%);
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 92px;
}
.release-hero__copy {
  align-self: center;
  max-width: 680px;
  padding: 55px 55px 80px clamp(45px, 6vw, 110px);
  position: relative;
  z-index: 2;
}
.release-hero__kicker {
  font-family: "ibmSemi";
  font-size: 13px;
  letter-spacing: 0.24em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.release-hero h1 {
  font-family: "ibmSemi";
  font-size: clamp(72px, 8vw, 150px);
  letter-spacing: -0.07em;
  line-height: 0.86;
  margin-bottom: 32px;
}
.release-hero__date {
  font-family: "ibmSemi";
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.2;
  margin-bottom: 18px;
}
.release-hero__platforms {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 4px 0 28px;
}
.release-hero__platform {
  display: inline-flex;
  height: 22px;
  outline: 1px solid transparent;
  outline-offset: 7px;
  position: relative;
}
.release-hero__platform img {
  display: block;
  height: 100%;
  width: auto;
}
.release-hero__platform .release-hero__platform-default {
  opacity: 0.75;
}
.release-hero__platform .release-hero__platform-brand {
  inset: 0 auto auto 0;
  opacity: 0;
  position: absolute;
}
.release-hero__platform:focus-visible {
  outline-color: rgba(255, 255, 255, 0.72);
}
.release-hero__platform:focus-visible .release-hero__platform-brand {
  opacity: 1;
}
.release-hero__brief {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 510px;
}
.release-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.release-hero__actions .link.release-hero__action {
  font-family: "ibmSemi";
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: 0;
  min-width: 205px;
  padding: 19px 25px;
  text-align: center;
  text-transform: uppercase;
}
.release-hero__actions .link.release-hero__action::after {
  display: none;
}
.release-hero__actions .link.release-hero__action:first-child {
  background: #fff;
  color: #000;
}
.release-hero__media {
  height: calc(100vh - 92px);
  height: calc(100svh - 92px);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}
.release-hero__media::before {
  background: linear-gradient(90deg, #02050a 0%, rgba(2, 5, 10, 0.86) 8%, rgba(2, 5, 10, 0) 38%);
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.release-hero__media img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 58% 58%;
     object-position: 58% 58%;
  width: 100%;
}
.release-hero--without-media .release-hero__inner {
  grid-template-columns: minmax(0, 1fr);
}
.release-hero--without-media .release-hero__copy {
  max-width: 820px;
}
@media (hover: hover) and (pointer: fine) {
  .release-hero__platform:hover .release-hero__platform-brand {
    opacity: 1;
  }
}
@media only screen and (min-width: 992px) {
  header.home-release {
    background: transparent;
    padding: 0 clamp(30px, 3.5vw, 70px);
  }
  header.home-release .container-fluid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  header.home-release .row {
    flex-wrap: nowrap;
    min-height: 92px;
  }
  header.home-release .row > .col:first-child {
    flex: 1 1 auto;
    max-width: none;
  }
  header.home-release .row > .col:first-child > .main-menu {
    align-items: center;
    background: transparent;
    display: flex;
    height: auto;
    max-width: none;
    min-height: 91px;
    overflow: visible;
    padding: 0;
    position: static;
    transform: none;
    width: 100%;
  }
  header.home-release .row > .col:first-child > .main-menu > .logo {
    display: block;
    flex: 0 0 auto;
    line-height: 0;
    margin-right: clamp(40px, 5vw, 82px);
  }
  header.home-release .row > .col:first-child > .main-menu nav {
    flex: 1;
    margin: 0;
  }
  header.home-release .row > .col:first-child > .menu-box,
  header.home-release .row > .col:first-child > .libary {
    display: none;
  }
  header.home-release .row > .col:nth-child(2) {
    display: none;
  }
  header.home-release .row > .col:last-child {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  header.home-release .row > .col:last-child p {
    color: #fff;
    padding: 0;
  }
  header.home-release ul.menu-list {
    align-items: center;
    display: flex;
    gap: clamp(24px, 2.5vw, 48px);
    margin: 0;
  }
  header.home-release ul.menu-list > li {
    padding: 0;
    position: relative;
  }
  header.home-release ul.menu-list > li > a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 20px 0;
  }
  header.home-release ul.menu-list > li > a span::after {
    background-color: #fff;
  }
  header.home-release ul.menu-list > li.login,
  header.home-release ul.menu-list > li.theme-toggle {
    display: none;
  }
  header.home-release ul.menu-list > li .sub-list {
    background: rgba(2, 5, 10, 0.96);
    left: -20px;
    margin: 0;
    min-width: 230px;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 0.18s linear, transform 0.18s linear;
    visibility: hidden;
  }
  header.home-release ul.menu-list > li .sub-list a {
    color: #fff;
    margin-bottom: 12px;
  }
  header.home-release ul.menu-list > li:hover .sub-list,
  header.home-release ul.menu-list > li:focus-within .sub-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  header.home-release .overlay {
    opacity: 0;
    pointer-events: none;
  }
  header.home-release .main-menu .logo svg path {
    fill: #fff;
  }
  header.home-release.scroll {
    background: #02050a;
  }
  html.night-mode header.home-release .main-menu {
    background-color: transparent !important;
  }
  html.night-mode header.home-release .overlay {
    opacity: 0 !important;
    pointer-events: none;
  }
}
@media only screen and (max-width: 991px) {
  .release-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 100px;
  }
  .release-hero__copy {
    align-self: auto;
    max-width: 720px;
    padding: 55px 30px 38px;
  }
  .release-hero h1 {
    font-size: clamp(64px, 15vw, 110px);
  }
  .release-hero__media {
    height: 58vh;
    min-height: 430px;
  }
  .release-hero__media::before {
    background: linear-gradient(180deg, #02050a 0%, rgba(2, 5, 10, 0.72) 10%, rgba(2, 5, 10, 0) 40%);
  }
  .release-hero__media img {
    -o-object-position: 58% 55%;
       object-position: 58% 55%;
  }
}
@media only screen and (max-width: 568px) {
  .release-hero__copy {
    padding: 42px 22px 30px;
  }
  .release-hero__kicker {
    font-size: 12px;
    margin-bottom: 22px;
  }
  .release-hero h1 {
    font-size: clamp(56px, 20vw, 84px);
    margin-bottom: 24px;
  }
  .release-hero__date {
    font-size: 20px;
  }
  .release-hero__platforms {
    gap: 16px 20px;
    margin-bottom: 24px;
  }
  .release-hero__platform {
    height: 19px;
  }
  .release-hero__brief {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .release-hero__actions .link.release-hero__action {
    flex: 1 1 100%;
    min-width: 0;
  }
  .release-hero__media {
    height: 52vh;
    min-height: 360px;
  }
}
.current-release-notice {
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.58);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: max(20px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  pointer-events: none;
  position: fixed;
  transition: opacity 220ms ease;
  visibility: hidden;
  z-index: 1000;
}
.current-release-notice[hidden] {
  display: none;
}
.current-release-notice.is-visible {
  opacity: 1;
  visibility: visible;
}
.current-release-notice__card {
  background: #050607;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.56);
  color: #fff;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  max-width: 430px;
  overflow: auto;
  pointer-events: auto;
  position: relative;
  width: 100%;
}
.current-release-notice__copy {
  padding: 30px 30px 20px;
}
.current-release-notice__copy h2 {
  font-family: "ibmSemi";
  color: #fff;
  font-size: 48px;
  line-height: 0.95;
  margin: 8px 58px 10px 0;
}
.current-release-notice__kicker {
  font-family: "ibmSemi";
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1.45;
  margin: 0;
  text-transform: uppercase;
}
.current-release-notice__date {
  font-family: "ibmSemi";
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
}
.current-release-notice__dismiss {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 54px;
  font-weight: 200;
  height: 56px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 13px;
  top: 13px;
  width: 56px;
  z-index: 1;
}
.current-release-notice__dismiss:hover,
.current-release-notice__dismiss:focus-visible {
  color: #fff;
}
.current-release-notice__dismiss:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.current-release-notice__artwork {
  aspect-ratio: 4 / 3;
  background: #0b0d0f;
  overflow: hidden;
}
.current-release-notice__artwork img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.current-release-notice__action {
  display: flex;
  justify-content: center;
  padding: 26px 24px 30px;
}
.current-release-notice__discover {
  font-family: "ibmSemi";
  align-items: center;
  background: #17191c;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 50px;
  min-width: 164px;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}
.current-release-notice__discover:hover,
.current-release-notice__discover:focus-visible {
  background: #fff;
  color: #000;
  text-decoration: none;
}
.current-release-notice__discover:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
@media only screen and (max-width: 590px) {
  .current-release-notice {
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .current-release-notice__card {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    max-width: 390px;
  }
  .current-release-notice__copy {
    padding: 24px 20px 16px;
  }
  .current-release-notice__copy h2 {
    font-size: 42px;
    margin-right: 54px;
  }
  .current-release-notice__kicker {
    font-size: 9px;
    letter-spacing: 0.19em;
  }
  .current-release-notice__dismiss {
    height: 52px;
    right: 8px;
    top: 8px;
    width: 52px;
  }
  .current-release-notice__action {
    padding: 20px 20px 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .current-release-notice,
  .current-release-notice__discover {
    transition: none;
  }
}
.hero-anim {
  height: 100vh;
  position: relative;
  overflow: hidden;
  transition: all 0.5s linear;
}
.hero-anim.tint .ov {
  opacity: 1;
}
.hero-anim .ov {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  transition: all 800ms linear;
}
.hero-anim .bg-layer1 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}
.hero-anim .bg-layer2 {
  position: absolute;
  width: 100%;
  height: 80vh;
  bottom: -55%;
  z-index: 3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
.hero-anim .anim-boy {
  position: absolute;
  width: 100%;
  height: 85vh;
  bottom: -55%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  z-index: 4;
}
.hero-anim .bg-layer3 {
  position: absolute;
  width: 100%;
  height: 100vh;
  bottom: -55%;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
.hero-anim .text-big {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
  max-width: 1115px;
  padding: 0 30px;
}
.hero-anim .text-small {
  position: absolute;
  top: 57%;
  top: calc(39% + 168px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 100%;
  text-align: center;
  padding: 0 30px;
  max-width: 1115px;
}
.hero-anim .anim-text {
  position: absolute;
  width: 100%;
  height: 112vh;
  z-index: 7;
  bottom: -75%;
  padding-top: 70px;
  padding-right: 100px;
  padding-bottom: 100px;
  padding-left: 30%;
}
.hero-anim .anim-text h3 {
  color: #fff;
  font-family: "ibmSemi";
  font-size: calc(20px + 1.04166667vw);
  line-height: calc(20px + 1.04166667vw);
  font-family: "ibm";
  font-weight: 400;
}
@media only screen and (max-width: 1400px) {
  .hero-anim .anim-boy,
  .hero-anim .bg-layer2 {
    background-position: center;
    z-index: 4;
  }
  .hero-anim .anim-text {
    padding: 70px;
  }
}
@media (max-width: 1160px) {
  .hero-anim .text-small {
    top: calc(39% + 125px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 820px;
  }
}
@media (max-width: 1160px) {
  .hero-anim .text-small {
    top: calc(39% + 127px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 820px;
  }
}
@media (max-width: 840px) {
  .hero-anim .text-small {
    top: calc(39% + 95px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 620px;
  }
}
@media (max-width: 630px) {
  .hero-anim .text-small {
    top: calc(39% + 86px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 520px;
  }
}
@media (max-width: 530px) {
  .hero-anim .text-small {
    top: calc(39% + 70px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 420px;
  }
}
@media (max-width: 450px) {
  .hero-anim .text-small {
    top: calc(39% + 55px);
  }
  .hero-anim .text-big,
  .hero-anim .text-small {
    max-width: 320px;
  }
}
@media only screen and (max-width: 568px) {
  .hero-anim .anim-text {
    padding: 30px;
  }
}
.player-thumbnail {
  transition: 0.5s;
  cursor: pointer;
  transition: all 300ms linear;
  max-width: 200px;
}
.text-image-player .player-thumbnail,
.testimonials .player-thumbnail,
.text-image-player-small .player-thumbnail,
.text-image-multi .player-thumbnail,
.text-over-image .player-thumbnail {
  z-index: 2;
}
.text-image-player .player-thumbnail:before,
.testimonials .player-thumbnail:before,
.text-image-player-small .player-thumbnail:before,
.text-image-multi .player-thumbnail:before,
.text-over-image .player-thumbnail:before {
  display: block;
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  background-color: black;
  z-index: -1;
  left: -5%;
  top: -5%;
  transition: all 300ms linear;
  opacity: 0;
}
.text-image-player .player-thumbnail:hover:before,
.testimonials .player-thumbnail:hover:before,
.text-image-player-small .player-thumbnail:hover:before,
.text-image-multi .player-thumbnail:hover:before,
.text-over-image .player-thumbnail:hover:before {
  transform: scale(0.93);
  opacity: 1;
}
.waveform-player {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background: white;
  min-height: 116px;
  padding: 16px 32px;
  transform: translateX(-100%);
  width: 100%;
  box-shadow: 0 0 10px 2px #0000000f;
}
.waveform-player span.v-total {
  display: inline-block;
  font-size: 10px;
  position: relative;
  top: -9px;
}
.waveform-player .row {
  margin: 0;
}
.waveform-player .row [class^="col"] {
  line-height: 1;
  padding: 0 0;
}
.waveform-player .row [class^="col"] p {
  margin: 0;
  font-size: 10px;
  position: relative;
  top: -8px;
  margin-left: 10px;
  display: inline-block;
}
.waveform-player > .row {
  margin-left: auto;
  margin-right: auto;
  max-width: 1578px;
  width: 100%;
}
.waveform-player .main {
  min-width: 0;
}
.waveform-player .main > .row {
  flex-wrap: nowrap;
  width: 100%;
}
.waveform-player .main .waveform-player__waveform-column {
  flex: 1 1 auto;
  min-width: 0;
}
.waveform-player .main .waveform-player__controls {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  padding-left: 18px;
}
.waveform-player .main .waveform-player__controls p,
.waveform-player .main .waveform-player__controls span.v-total {
  margin-left: 6px;
  position: static;
  top: auto;
}
.waveform-player img {
  width: 68px;
  margin-right: 20px;
}
.waveform-player #waveform {
  cursor: crosshair;
  height: 64px;
  margin-top: 0;
  overflow: hidden;
  touch-action: none;
  width: 100%;
}
.waveform-player #main-play-icon {
  margin-left: 20px;
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAAANElEQVQ4jWOgNmDEYd5/JDbj//8QLiMjI4YcukYmartw1MBRA0cNHDVw1MARayB1AQMDAwCxlwUqGDWSVAAAAABJRU5ErkJggg==);
  cursor: pointer;
}
.waveform-player #main-play-icon.paused {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAXCAYAAAALHW+jAAABGklEQVQ4ja3UPStHURwH8A8DNhlIZLJJwmA0ymJkVhLvA69A3gDFYvAGSMngKYMQJYPVYKAooqPfrUse/u7xrVun8/C5p/MErdjHKy7QJzObge3hKcrraKzKJuAwyh04iLr0TVcFdz7VjeEh2q7RnwsWWSzNdhkNuWBKZ6xvAc/mgkUm8Bj9z9GTCxYpL8MK6nLBlG4cx9gXTOaCRcbxHMYJ2nLBlHoshbP7H2CR95NQ/w9QygKGcCRzhiOlG3UWV7cS2B5jiuMzVW78KzhfgtZiUz6kVnAUd9H/Er3fdfwNbMF2aVYzv/35J3CuBK3mvDbDuI22GwzWApXB9EqnNGPrL0/VVym2P0H3Ud5AUxUspQunAV1hoCoEb8VVaWlcvWVmAAAAAElFTkSuQmCC);
}
.waveform-player #songTitle {
  font-family: "ibmSemi";
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
  margin-top: 4px;
  display: block;
}
.waveform-player__title-row {
  align-items: center;
  display: flex;
  gap: 9px;
  margin-bottom: 5px;
  min-width: 0;
  position: relative;
}
.waveform-player__listening-info {
  flex: 0 0 auto;
  position: relative;
}
.waveform-player__listening-info summary {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  font-family: serif;
  font-size: 11px;
  font-style: italic;
  height: 18px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  opacity: 0.64;
  width: 18px;
}
.waveform-player__listening-info summary::-webkit-details-marker {
  display: none;
}
.waveform-player__listening-info summary:hover,
.waveform-player__listening-info summary:focus-visible {
  opacity: 1;
}
.waveform-player__listening-info summary:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}
.waveform-player__listening-info[open] summary {
  opacity: 1;
}
.waveform-player__listening-popover {
  background-color: rgba(12, 15, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  bottom: calc(100% + 14px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 13px;
  font-style: normal;
  left: 0;
  letter-spacing: normal;
  line-height: 1.55;
  padding: 14px 16px;
  position: absolute;
  text-transform: none;
  width: min(330px, calc(100vw - 32px));
  z-index: 4;
}
.waveform-player__listening-popover a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.waveform-player small#songAuthor {
  font-size: 14px;
}
.playSong {
  cursor: pointer;
}
img.playSong {
  max-width: 13px !important;
  margin-right: 6px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .waveform-player__listening-popover {
    bottom: calc(100% + 54px);
  }
}
@media (max-width: 767px) {
  .waveform-player {
    min-height: 0;
    padding: 10px 16px 12px;
  }
  .waveform-player > .row {
    display: grid;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr);
  }
  .waveform-player > .row > .ls,
  .waveform-player > .row > .main,
  .waveform-player > .row > .rs {
    flex: initial;
    margin: 0;
    max-width: none;
    padding: 0;
    width: 100%;
  }
  .waveform-player > .row > .rs {
    display: none;
  }
  .waveform-player .Img {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .waveform-player .Img > [class^="col"] {
    flex: 0 0 auto;
    max-width: none;
    padding: 0;
    width: auto;
  }
  .waveform-player .Img > .Title {
    flex: 1 1 auto;
    min-width: 0;
  }
  .waveform-player img {
    margin-right: 12px;
    width: 38px;
  }
  .waveform-player #songTitle {
    font-size: 15px;
    margin-top: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .waveform-player .waveform-player__title-row {
    margin-bottom: 3px;
  }
  .waveform-player .waveform-player__listening-popover {
    left: -50px;
  }
  .waveform-player .main > .row {
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start !important;
  }
  .waveform-player .main > .row > .col-auto {
    padding: 0;
  }
  .waveform-player .main > .row > .col-auto:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }
  .waveform-player .main > .row > .col-auto:last-child {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
  }
  .waveform-player #waveform {
    height: 52px;
    margin-top: 0;
    touch-action: none;
    width: 100%;
  }
  .waveform-player #main-play-icon {
    display: inline-block;
    flex: 0 0 auto;
    margin-left: 12px;
  }
  .waveform-player span.v-total,
  .waveform-player .row [class^="col"] p {
    font-size: 12px;
    margin-left: 6px;
    position: static;
    white-space: nowrap;
  }
}
.featured-tracks .track-player .details-box h4,
.music-libary .libary-row .details-box h4,
.more-tracks .details-box h4 {
  min-height: 46px;
  font-size: calc(15px + 0.52083333vw);
  line-height: calc(14px + 0.52083333vw);
}
@media (max-width: 991px) {
  .featured-tracks .track-player .details-box h4,
  .music-libary .libary-row .details-box h4,
  .more-tracks .details-box h4 {
    min-height: 1px;
    font-size: calc(17px + 0.52083333vw);
    line-height: calc(17px + 0.52083333vw);
  }
}
.video-cta {
  position: relative;
}
.video-cta .content {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
  flex-wrap: wrap;
  flex-basis: fit-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  line-height: 31px;
  padding: 150px 50px;
}
.video-cta .content p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 30px;
  max-width: 1170px;
}
.video-cta .content a.link {
  font-size: 30px;
  margin-right: 0 !important;
}
.video-cta .content a.link:after {
  background-color: white;
}
.video-cta video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .video-cta .content {
    padding: 150px 25px;
  }
  .video-cta .content p,
  .video-cta .content a.link {
    font-size: 20px;
    line-height: 24px;
  }
}
body.open header .overlay,
html.open header .overlay {
  transition: all 0.3s ease-in;
  background-color: #171b26;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.loaded header {
  transition: none !important;
}
header.transparent .row .col:first-of-type .menu-box {
  background-color: transparent;
}
header.transparent .row .col:first-of-type .menu-box .menu-trigger span {
  background-color: white;
}
header.transparent.scroll .row .col:first-of-type .menu-box .menu-trigger span {
  background-color: black;
}
header.transparent.font-dark .row .col:first-of-type .menu-box .menu-trigger span {
  background-color: black;
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  transition: all 70ms ease-in;
}
header .menu-box {
  cursor: pointer;
}
header .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
header .row {
  align-items: center;
  color: #fff;
  margin: 0;
}
header .row .col {
  transition: opacity 0.35s ease-in;
  padding: 0;
}
header .row .col:first-of-type {
  display: flex;
  align-items: center;
  padding-left: 0;
}
header .row .col:first-of-type .main-menu {
  overflow: auto;
  max-width: 500px;
  width: 100%;
  background-color: #fff;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding: 25px 68px;
  padding-bottom: 0;
  transform: translateX(-100%);
  transition: transform 0.35s ease-in;
  z-index: 2;
}
header .row .col:first-of-type .main-menu .menu-box {
  display: none;
  cursor: pointer;
}
header .row .col:first-of-type .main-menu.opened {
  transform: translateX(0);
}
header .row .col:first-of-type .main-menu nav {
  margin-top: 25px;
}
header .row .col:first-of-type .menu-box {
  width: 100px;
  height: 100px;
  background-color: #fff;
  position: relative;
  transform: translateX(0);
  transition: transform 0.35s ease-in;
}
header .row .col:first-of-type .menu-box.opened {
  transform: translateX(500px);
}
header .row .col:first-of-type .menu-box .menu-trigger {
  cursor: pointer;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 20px;
  width: 60px;
}
header .row .col:first-of-type .menu-box .menu-trigger span {
  position: absolute;
  width: 60px;
  background-color: #000;
  height: 1px;
  transition: all 0.2s linear;
}
header .row .col:first-of-type .menu-box .menu-trigger span:nth-of-type(1) {
  top: 5px;
}
header .row .col:first-of-type .menu-box .menu-trigger span:nth-of-type(2) {
  top: 15px;
}
header .row .col:first-of-type .menu-box .menu-trigger.opened span:nth-of-type(1) {
  transform: rotate(45deg);
}
header .row .col:first-of-type .menu-box .menu-trigger.opened span:nth-of-type(2) {
  top: 6px;
  transform: rotate(-45deg);
}
header .row .col:first-of-type .libary {
  font-family: "ibmSemi";
  margin-left: 30px;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
header .row .col:first-of-type .libary::after {
  content: "";
  width: 110%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: -6px;
  transform: scaleX(0);
  transition: transform 0.2s linear;
}
header .row .col:first-of-type .libary:hover::after {
  transform: scaleX(1);
}
header .row .col:nth-of-type(2n) {
  text-align: center;
}
header .row .col:last-of-type {
  text-align: right;
}
header .row .col:last-of-type p {
  font-family: "ibmSemi";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-right: 30px;
  padding-left: 10px;
}
header .row .col:last-of-type p span {
  position: relative;
  padding-bottom: 5px;
  cursor: pointer;
}
header .row .col:last-of-type p span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.2s ease-in, opacity 0.3s linear;
  opacity: 0;
}
header .row .col:last-of-type p span:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
header ul.menu-list {
  padding-left: 0;
}
header ul.menu-list li {
  list-style: none;
  padding-left: 0;
}
header ul.menu-list li a {
  font-family: "ibmSemi";
  color: #000;
  display: inline-flex;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 20px;
}
header ul.menu-list li a img {
  width: 15px;
  margin-right: 20px;
}
header ul.menu-list li a span {
  position: relative;
  display: block;
  padding-bottom: 5px;
}
header ul.menu-list li a span:after {
  content: '';
  background-color: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0%;
  bottom: -5px;
  transform: scaleX(0);
  transition: transform 0.2s ease-in, opacity 0.3s linear;
  opacity: 0;
}
header ul.menu-list li a:hover span::after,
header ul.menu-list li a.active span::after {
  opacity: 1;
  transform: scaleX(1);
}
header ul.menu-list li.theme-toggle {
  margin-top: 20px;
}
header ul.menu-list li.theme-toggle a.night-mode-trigger {
  margin-bottom: 0;
}
header ul.menu-list li.theme-toggle a.night-mode-trigger .night-mode-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
header ul.menu-list li.theme-toggle a.night-mode-trigger .night-mode-icon.sun {
  display: none;
}
header ul.menu-list li.theme-toggle a.night-mode-trigger.is-day .night-mode-icon.moon {
  display: none;
}
header ul.menu-list li.theme-toggle a.night-mode-trigger.is-day .night-mode-icon.sun {
  display: block;
}
header ul.menu-list li .sub-list {
  padding-left: 35px;
  margin-top: -6px;
  margin-bottom: 30px;
}
header ul.menu-list li .sub-list li a {
  font-family: "ibm";
  text-transform: none;
  margin-bottom: 10px;
}
header ul.menu-list li .sub-list li a span:after {
  height: 1px;
}
header ul.menu-list li.login {
  padding-top: 35px;
  border-top: 1px solid #000;
}
header.opened .overlay {
  transition: all 0.3s ease-in;
  background-color: transparent;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header.opened .col:nth-of-type(2n),
header.opened .col:last-of-type {
  opacity: 0;
  pointer-events: none;
}
header.opened .row .col:first-of-type .main-menu {
  transform: translateX(0);
}
header.opened .row .col:first-of-type .menu-box {
  transform: translateX(500px);
}
header.opened .row .col:first-of-type .menu-box .menu-trigger span:nth-of-type(1) {
  transform: rotate(45deg);
}
header.opened .row .col:first-of-type .menu-box .menu-trigger span:nth-of-type(2) {
  top: 6px;
  transform: rotate(-45deg);
}
header.open .overlay {
  transition: all 0.3s ease-in;
  background-color: #171b26;
  opacity: 0.4;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header.open .col {
  opacity: 0;
}
header.logged .logged-box {
  margin-right: 15px;
  background-color: #fff;
  border-radius: 20px;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  cursor: pointer;
}
header.logged .logged-box img {
  width: 30px;
  border-radius: 50%;
}
header.logged .logged-box p {
  color: #000;
}
header.logged .logged-box .bars {
  width: 20px;
  height: 10px;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}
header.logged .logged-box .bars span {
  background-color: #000;
  width: 20px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 3px;
}
header.logged .logged-box .bars span:last-of-type {
  bottom: 2px;
  top: auto;
}
header.font-dark .row .col:first-of-type .libary {
  color: #000;
}
header.font-dark .row .col:first-of-type .libary::after {
  background-color: #000;
}
header.font-dark .row .col:nth-of-type(2n) a svg path {
  fill: #000;
}
header.font-dark .row .col:last-of-type p {
  color: #000;
}
header.font-dark .row .col:last-of-type p span::after {
  background-color: #000;
}
header.scroll {
  background-color: #fff;
}
header.scroll .row .col:first-of-type .libary {
  color: #000;
}
header.scroll .row .col:first-of-type .libary::after {
  background-color: #000;
}
header.scroll .row .col:nth-of-type(2n) a svg path {
  fill: #000;
}
header.scroll .row .col:last-of-type p {
  color: #000;
}
header.scroll .row .col:last-of-type p span::after {
  background-color: #000;
}
header.dark-scroll.scroll {
  background-color: #000;
}
header.dark-scroll.scroll .row .col:first-of-type .libary {
  color: #fff;
}
header.dark-scroll.scroll .row .col:first-of-type .libary::after {
  background-color: #fff;
}
header.dark-scroll.scroll .row .col:nth-of-type(2n) a svg path {
  fill: #fff;
}
header.dark-scroll.scroll .row .col:last-of-type p {
  color: #fff;
}
header.dark-scroll.scroll .row .col:last-of-type p span::after {
  background-color: #fff;
}
header .logged-menu {
  position: fixed;
  width: 375px;
  height: 100vh;
  background-color: #fff;
  right: 0;
  top: 0;
  padding: 25px 70px;
  transform: translateX(100%);
  transition: transform 0.35s ease-in;
}
header .logged-menu .logged-box {
  background-color: #f3f4f8;
  max-width: 100%;
}
header .logged-menu .logged-box p {
  color: #000;
  font-family: "ibmSemi";
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding: 0 10px;
}
header .logged-menu .logged-box .bars span:first-of-type {
  transform: rotate(45deg);
  top: 3px;
}
header .logged-menu .logged-box .bars span:last-of-type {
  transform: rotate(-45deg);
  top: 3px;
}
header .logged-menu .menu-list {
  margin-top: 70px;
}
header .logged-menu.open {
  transform: translateX(0);
}
header .side-panel {
  position: fixed;
  max-width: 530px;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  right: 0;
  top: 0;
  padding: 85px 30px 70px 60px;
  transform: translateX(100%);
  transition: transform 0.35s ease-in;
}
header .side-panel.download-panel {
  max-width: 401px;
}
header .side-panel.download-panel .line {
  display: block;
  height: 1px;
  background-color: black;
  margin: 20px 0;
}
header .side-panel.download-panel h3 {
  margin-bottom: 15px;
}
header .side-panel.download-panel .social-list {
  margin-bottom: 10px;
}
header .side-panel.download-panel h5 {
  text-align: center;
  margin-bottom: 15px;
}
header .side-panel.download-panel .user-avatar {
  background-color: #f3f4f8;
  padding: 10px;
  line-height: 10px;
  border-radius: 50px;
}
header .side-panel.download-panel .user-avatar [class^="col"] {
  text-align: left;
  color: black;
  padding: 0 5px;
}
header .side-panel.download-panel .user-avatar [class^="col"] p {
  margin-bottom: 0;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
}
header .side-panel.download-panel .user-avatar [class^="col"] small {
  font-size: 10px;
}
header .side-panel.download-panel .user-avatar img {
  border-radius: 100%;
  vertical-align: middle;
  margin-right: 10px;
}
header .side-panel.download-panel .small {
  text-decoration: underline;
  font-size: 14px;
}
header .side-panel .button {
  margin-bottom: 30px;
  width: 100%;
  min-width: 10px;
}
header .side-panel .info {
  position: relative;
  padding-left: 25px;
}
header .side-panel .info:before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAAMFBMVEUAAAAZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQZHSQzSKYcAAAAD3RSTlMAESIzRFVmd4iZqrvM3e5GKvWZAAAAbElEQVR42iWNhRHAMAwDP8zW/tv2dP3ETABpPOmNBKbFm7XOFw2gaoFZqsBzdK/jB10JUoS1OnsD5AzYPwMYCmwOZwLpCmAe5gM4DnmTrOpmDZ/MMKOQa82U+Oei+0qPmzAjdI5iYHBlDHfAB44fA7PZTlJZAAAAAElFTkSuQmCC);
  position: absolute;
  left: 0px;
  top: 2px;
}
header .side-panel .contact-select .chosen-container-single .chosen-single span {
  padding-left: 0px;
  margin-right: 0;
  border-bottom: 1px solid black;
}
header .side-panel .contact-select .chosen-container-single .chosen-drop {
  padding-left: 12px;
  padding-bottom: 12px;
  padding-left: 0;
  margin-left: -8px;
}
header .side-panel.open {
  transform: translateX(0);
}
header .side-panel .bars {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
header .side-panel .bars span {
  background-color: #000;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 3px;
}
header .side-panel .bars span:first-of-type {
  transform: rotate(45deg);
  top: 7px;
}
header .side-panel .bars span:last-of-type {
  transform: rotate(-45deg);
  top: 7px;
}
header .side-panel .wrapper {
  overflow: auto;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
header .side-panel .wrapper .upside-box {
  margin-bottom: 50px;
}
header .side-panel .wrapper .upside-box h3 i {
  margin-right: 15px;
  cursor: pointer;
}
header .side-panel .wrapper .upside-box .button {
  margin-bottom: 30px;
}
header .side-panel .wrapper .upside-box p {
  font-size: 16px;
  line-height: 26px;
}
header .side-panel .wrapper .upside-box p.small {
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 15px;
}
header .side-panel .wrapper .upside-box p.small a {
  font-size: 12px;
  font-family: "ibm";
  text-decoration: none;
  margin-right: 0;
  padding-bottom: 0;
  overflow: unset;
  position: static;
  text-decoration: underline;
}
header .side-panel .wrapper .upside-box p.small a::after {
  height: 1px;
}
header .side-panel .wrapper .upside-box .additional-info {
  display: flex;
  justify-content: space-between;
}
header .side-panel .wrapper .upside-box .additional-info label {
  margin-bottom: 0;
}
header .side-panel .wrapper .upside-box .additional-info span {
  font-size: 12px;
  cursor: pointer;
}
header .side-panel .wrapper .downside-box .buttons-box {
  margin-bottom: 30px;
}
header .side-panel .wrapper .downside-box .buttons-box .button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid #dedfe5;
}
header .side-panel .wrapper .downside-box .buttons-box .button:hover {
  background-color: #dedfe5;
}
header .side-panel .wrapper .downside-box .buttons-box .button img {
  max-width: 30px;
  margin-right: 20px;
}
header .side-panel .wrapper .downside-box .sign-box {
  padding-top: 20px;
  border-top: 1px solid #000;
}
header .side-panel .wrapper .downside-box .sign-box p {
  text-align: center;
  font-family: "ibmSemi";
  font-size: 16px;
  margin-bottom: 5px;
}
header .side-panel .wrapper .downside-box .sign-box p span {
  cursor: pointer;
  font-family: "ibm";
  font-size: 16px;
  overflow: unset;
  position: static;
  text-decoration: underline;
}
header .side-panel .wrapper .downside-box .contact-box {
  border-top: 1px solid #000;
  padding-top: 20px;
  display: flex;
  justify-content: space-around;
}
header .side-panel .wrapper .downside-box .contact-box div {
  text-align: center;
}
header .side-panel .wrapper .downside-box .contact-box div p {
  font-family: "ibmSemi";
  font-size: 14px;
  margin-bottom: 0;
  line-height: 20px;
}
header .side-panel .wrapper .downside-box .contact-box div a {
  font-size: 14px;
  text-decoration: none;
}
header .side-panel .wrapper .downside-box .contact-box div a:hover {
  text-decoration: underline;
}
header .side-panel.contact-success {
  background-repeat: no-repeat;
  background-position: right;
}
header .side-panel.contact-success .wrapper {
  justify-content: center;
  text-align: center;
}
header .side-panel.contact-success .wrapper img {
  max-width: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
header .side-panel.contact-success .wrapper p {
  font-size: 20px;
}
header .side-panel.contact-success .wrapper .button {
  margin-top: 40px;
  width: 100%;
}
header .side-panel.panel-message {
  background-repeat: no-repeat;
  background-position: right;
}
header .side-panel.panel-message .wrapper {
  justify-content: center;
  text-align: center;
}
header .side-panel.panel-message .wrapper img {
  max-width: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
header .side-panel.panel-message .wrapper p {
  font-size: 20px;
}
header .side-panel.panel-message .wrapper .button {
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  header .row {
    display: grid;
    grid-template-columns: minmax(56px, 1fr) auto minmax(56px, 1fr);
    min-height: 56px;
  }
  header .row > .col {
    max-width: none;
    min-width: 0;
    width: auto;
  }
  header .row > .col:nth-of-type(2n) {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  header .row > .col:first-of-type > .menu-box {
    height: 56px;
    width: 56px;
  }
  header .row > .col:first-of-type > .menu-box .menu-trigger,
  header .row > .col:first-of-type > .menu-box .menu-trigger span {
    width: 28px;
  }
  header .row > .col:nth-of-type(2n) > a {
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 0;
    min-height: 56px;
    padding: 0 8px;
    position: relative;
    width: 68px;
  }
  header .row > .col:nth-of-type(2n) > a svg {
    display: block;
    height: 67px;
    left: 50%;
    margin-left: -52px;
    margin-top: -33.5px;
    opacity: 0.82;
    position: absolute;
    top: 50%;
    transform: scale(0.5);
    transform-origin: center;
    width: 104px;
  }
  header .row > .col:nth-of-type(2n) > a svg path {
    fill: #fff;
  }
}
@media only screen and (max-width: 590px) {
  header .row .col:first-of-type .main-menu {
    max-width: 100%;
    padding: 30px;
  }
  header .row .col:first-of-type .main-menu .menu-box {
    display: block;
    width: 100px;
    height: 100px;
    background-color: #fff;
    position: relative;
    transform: translateX(0);
    transition: transform 0.35s ease-in;
    position: absolute;
    right: 0;
    top: 0;
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger {
    cursor: pointer;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 20px;
    width: 60px;
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger span {
    position: absolute;
    width: 60px;
    background-color: #000;
    height: 1px;
    transition: all 0.2s linear;
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger span:nth-of-type(1) {
    top: 15px;
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger span:nth-of-type(2) {
    top: 15px;
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger.opened span:nth-of-type(1) {
    transform: rotate(45deg);
  }
  header .row .col:first-of-type .main-menu .menu-box .menu-trigger.opened span:nth-of-type(2) {
    top: 6px;
    transform: rotate(-45deg);
  }
  header .row .col:first-of-type .libary {
    display: none;
  }
  header .row .col:nth-of-type(2n) {
    text-align: center;
  }
  header .row .col:last-of-type p {
    font-size: 10px;
    padding-right: 15px;
  }
  header .side-panel {
    padding: 85px 30px 70px 30px;
  }
  header .side-panel .wrapper .downside-box .contact-box {
    flex-wrap: wrap;
  }
  header .side-panel .wrapper .downside-box .contact-box div {
    margin-bottom: 15px;
  }
}
@media (max-width: 600px) {
  header.logged .logged-box {
    max-width: 89px;
  }
  header .row .col:last-of-type p {
    display: none;
  }
  .logged-menu .logged-box p {
    display: none;
  }
}
@media (max-width: 400px) {
  header.logged .logged-box {
    margin-right: 5px;
  }
}
@media (max-height: 850px) {
  header ul.menu-list li.login {
    padding-top: 24px;
  }
}
@supports (view-transition-name: none) {
  @keyframes ikson-crossfade-out {
    to {
      opacity: 0;
    }
  }
  @keyframes ikson-crossfade-in {
    from {
      opacity: 0;
    }
  }
  :root {
    view-transition-name: none;
  }
  .site-transition-content--enabled {
    view-transition-name: site-content;
  }
  ::view-transition-group(site-content),
  ::view-transition-group(site-header) {
    animation: none;
  }
  ::view-transition-old(site-content) {
    animation: ikson-crossfade-out 0.18s linear both;
  }
  ::view-transition-new(site-content) {
    animation: ikson-crossfade-in 0.18s linear both;
  }
  @media only screen and (min-width: 992px) {
    header.site-transition-header {
      view-transition-name: site-header;
    }
    ::view-transition-image-pair(site-header) {
      isolation: auto;
    }
    ::view-transition-old(site-header) {
      display: none;
    }
    ::view-transition-new(site-header) {
      animation: none;
      mix-blend-mode: normal;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    ::view-transition-old(site-content),
    ::view-transition-new(site-content) {
      animation-duration: 0s;
    }
  }
}
@media only screen and (min-width: 992px) {
  html.ikson-public-navigation-enabled .site-transition-content {
    position: relative;
  }
  html.ikson-public-navigation-enabled .site-transition-content.is-public-navigation-transitioning {
    pointer-events: none;
  }
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page {
    position: relative;
    z-index: 1;
  }
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-incoming {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.13s linear;
    z-index: 2;
  }
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-entered {
    opacity: 1;
  }
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-outgoing {
    transition: opacity 0.13s linear;
  }
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-left {
    opacity: 0;
  }
  html.ikson-public-navigation-enabled header[data-public-navigation-header] {
    transition: background-color 0.12s linear;
  }
  header.site-shell {
    background-color: #02050a;
    padding: 0 clamp(30px, 3.5vw, 70px);
  }
  header.site-shell .container-fluid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  header.site-shell .row {
    flex-wrap: nowrap;
    min-height: 92px;
  }
  header.site-shell .row > .col:first-child {
    flex: 1 1 auto;
    max-width: none;
  }
  header.site-shell .row > .col:first-child > .main-menu {
    align-items: center;
    background: transparent;
    display: flex;
    height: auto;
    max-width: none;
    min-height: 91px;
    overflow: visible;
    padding: 0;
    position: static;
    transform: none;
    width: 100%;
  }
  header.site-shell .row > .col:first-child > .main-menu > .logo {
    display: block;
    flex: 0 0 auto;
    line-height: 0;
    margin-right: clamp(40px, 5vw, 82px);
  }
  header.site-shell .row > .col:first-child > .main-menu nav {
    flex: 1;
    margin: 0;
  }
  header.site-shell .row > .col:first-child > .menu-box,
  header.site-shell .row > .col:first-child > .libary {
    display: none;
  }
  header.site-shell .row > .col:nth-child(2) {
    display: none;
  }
  header.site-shell .row > .col:last-child {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
  }
  header.site-shell .row > .col:last-child p {
    color: #fff;
    padding: 0;
  }
  header.site-shell ul.menu-list {
    align-items: center;
    display: flex;
    gap: clamp(24px, 2.5vw, 48px);
    margin: 0;
  }
  header.site-shell ul.menu-list > li {
    padding: 0;
    position: relative;
  }
  header.site-shell ul.menu-list > li > a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    margin: 0;
    padding: 20px 0;
  }
  header.site-shell ul.menu-list > li > a span::after {
    background-color: #fff;
  }
  header.site-shell ul.menu-list > li.login {
    display: none;
  }
  header.site-shell ul.menu-list > li.theme-toggle {
    margin-top: 0;
  }
  header.site-shell ul.menu-list > li.theme-toggle a {
    padding: 16px 0;
  }
  header.site-shell ul.menu-list > li .sub-list {
    background: rgba(2, 5, 10, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    left: -20px;
    margin: 0;
    min-width: 230px;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 0.18s linear, transform 0.18s linear;
    visibility: hidden;
  }
  header.site-shell ul.menu-list > li .sub-list a {
    color: #fff;
    margin-bottom: 12px;
  }
  header.site-shell ul.menu-list > li:hover .sub-list,
  header.site-shell ul.menu-list > li:focus-within .sub-list {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }
  header.site-shell .overlay {
    opacity: 0;
    pointer-events: none;
  }
  header.site-shell .main-menu .logo svg path,
  header.site-shell ul.menu-list > li > a span::after {
    fill: #fff;
    background-color: #fff;
  }
  html.night-mode header.site-shell,
  body.night-mode header.site-shell {
    background-color: #000;
  }
  html.night-mode header.site-shell .container-fluid,
  body.night-mode header.site-shell .container-fluid {
    border-bottom-color: rgba(255, 255, 255, 0.22);
  }
  html.night-mode header.site-shell .row > .col:last-child p,
  body.night-mode header.site-shell .row > .col:last-child p {
    color: #fff;
  }
  html.night-mode header.site-shell ul.menu-list > li .sub-list,
  body.night-mode header.site-shell ul.menu-list > li .sub-list {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
  header.site-shell[data-public-navigation-route='home'],
  header.site-shell[data-public-navigation-route='music'] {
    background: transparent !important;
  }
  header.site-shell[data-public-navigation-route='home'] .container-fluid,
  header.site-shell[data-public-navigation-route='music'] .container-fluid {
    border-bottom: 0;
  }
  header.site-shell[data-public-navigation-route='home']:not(.opened):not(.open) .overlay,
  header.site-shell[data-public-navigation-route='music']:not(.opened):not(.open) .overlay {
    background-color: transparent !important;
    opacity: 0 !important;
    pointer-events: none;
  }
  header.site-shell[data-public-navigation-route='home'] .main-menu,
  header.site-shell[data-public-navigation-route='music'] .main-menu {
    background: transparent !important;
  }
  header.site-shell[data-public-navigation-route='home'] .main-menu > .logo,
  header.site-shell[data-public-navigation-route='music'] .main-menu > .logo {
    height: 67px;
    overflow: visible;
    width: 73px;
  }
  header.site-shell[data-public-navigation-route='home'] .main-menu > .logo svg,
  header.site-shell[data-public-navigation-route='music'] .main-menu > .logo svg {
    display: block;
    height: 67px;
    transform: scale(0.7);
    transform-origin: left center;
    width: 104px;
  }
  header.home-release[data-public-navigation-route='home'] .main-menu > .logo {
    height: 67px;
    overflow: visible;
    width: 73px;
  }
  header.home-release[data-public-navigation-route='home'] .main-menu > .logo svg {
    display: block;
    height: 67px;
    transform: scale(0.7);
    transform-origin: left center;
    width: 104px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-incoming,
  html.ikson-public-navigation-enabled .site-transition-content .public-navigation-page.is-public-navigation-outgoing {
    transition-duration: 0s;
  }
}
footer {
  padding-top: calc(80px + 0.78125vw);
  padding-bottom: 50px;
}
footer .social-row {
  padding-bottom: calc(80px + 0.78125vw);
}
footer .social-row .social-list {
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
footer .social-row .social-list li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  padding-left: 0;
}
footer .social-row .social-list li a {
  transition: opacity 50ms ease-in;
}
footer .social-row .social-list li a i {
  font-size: 28px;
}
footer .social-row .social-list li a:hover {
  opacity: 0.5;
}
footer .social-row .social-list li:last-of-type {
  margin-right: 0;
}
footer .social-row .social-list li::before {
  display: none;
}
footer .social-row.hide-social {
  display: none;
}
footer .downside-row {
  border-top: 1px solid #000;
  padding-top: 30px;
}
footer .downside-row .col-12 p {
  margin-bottom: 0;
  margin-right: 30px;
  font-size: 14px;
}
footer .downside-row .col-12 a {
  font-size: 14px;
  justify-content: flex-end;
  flex-grow: 1;
  transition: opacity 0.3s ease-in;
}
footer .downside-row .col-12 a img {
  width: 20px;
  margin-top: 5px;
  margin-left: 10px;
}
footer .downside-row .col-12 a:hover {
  opacity: 0.5;
}
footer .downside-row .site-credits {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 7px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}
footer .downside-row .site-credits a {
  color: inherit;
  flex-grow: 0;
  font-size: inherit;
  justify-content: flex-start;
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer .downside-row .site-credits a:hover,
footer .downside-row .site-credits a:focus-visible {
  opacity: 0.62;
}
footer .downside-row .site-credits a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 3px;
}
body.music-library-page footer {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.72);
  padding: 0;
  pointer-events: none;
}
body.music-library-page footer .social-row {
  display: none;
}
body.music-library-page footer .downside-row {
  border-top: 0;
  padding-top: 0;
}
body.music-library-page footer .downside-row .site-credits {
  font-size: 11px;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  body.music-library-page footer {
    bottom: 22px;
    left: 0;
    position: fixed;
    transition: bottom 0.2s ease, opacity 0.09s linear;
    width: 100%;
    z-index: 8;
  }
  body.music-library-page footer .container1614 {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
  }
  body.music-library-page.music-library-player-visible footer {
    bottom: 148px;
  }
}
@media only screen and (min-width: 992px) {
  .site-transition-content[data-public-navigation-route='home'] ~ footer {
    transition: opacity 0.09s linear;
  }
  body.music-library-page .site-transition-content.is-public-navigation-transitioning ~ footer {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.music-library-page footer,
  .site-transition-content[data-public-navigation-route='home'] ~ footer {
    transition-duration: 0s;
  }
}
@media only screen and (max-width: 767px) {
  footer .social-row {
    padding-bottom: 50px;
  }
  footer .social-row .social-list li {
    margin-right: 15px;
  }
  footer .social-row .social-list li a i {
    font-size: 20px;
  }
  body.music-library-page footer {
    background-color: #05070a !important;
    padding: 22px 0 max(22px, env(safe-area-inset-bottom));
    position: relative;
    z-index: 2;
  }
  body.music-library-page footer .downside-row .site-credits {
    font-size: 9px;
    gap: 5px;
  }
  body.music-library-page.music-library-player-visible footer {
    padding-bottom: calc(146px + env(safe-area-inset-bottom));
  }
}
* {
  outline: 0 !important;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
html {
  overflow-x: hidden;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.container500 {
  max-width: 530px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container800 {
  max-width: 770px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container1200 {
  max-width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container1614 {
  max-width: 1644px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.copy-message {
  position: fixed;
  z-index: 99;
  background-color: white;
  padding: 7px;
  right: 0;
  width: 100%;
  top: 0;
  text-align: center;
  box-shadow: 0px 1px 12px 0px #00000036;
}
.social-list {
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.social-list li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
  padding-left: 0;
}
.social-list li a {
  transition: opacity 0.3s ease-in;
  cursor: pointer;
}
.social-list li a i {
  font-size: 28px;
}
.social-list li a:hover {
  opacity: 0.5;
}
.social-list li:last-of-type {
  margin-right: 0;
}
.social-list li::before {
  display: none;
}
.pt195 {
  padding-top: calc(80px + 5.98958333vw);
}
.pb195 {
  padding-bottom: calc(80px + 5.98958333vw);
}
.pt175 {
  padding-top: calc(80px + 4.94791667vw);
}
.pb175 {
  padding-bottom: calc(80px + 4.94791667vw);
}
.pt145 {
  padding-top: calc(80px + 3.38541667vw);
}
.pb145 {
  padding-bottom: calc(80px + 3.38541667vw);
}
.pt125 {
  padding-top: calc(80px + 2.34375vw);
}
.pb125 {
  padding-bottom: calc(80px + 2.34375vw);
}
.pt95 {
  padding-top: calc(80px + 0.78125vw);
}
.pb95 {
  padding-bottom: calc(80px + 0.78125vw);
}
.player-thumbnail img.thumb {
  display: block;
  width: 200px;
}
.player-thumbnail .details {
  background-color: #fff;
  text-align: left;
  padding: 10px;
}
.player-thumbnail .details a {
  font-family: "ibmSemi";
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.player-thumbnail .details .duration {
  display: flex;
  align-items: end;
}
.player-thumbnail .details .duration img {
  max-width: 10px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.2s linear;
}
.player-thumbnail .details .duration img:hover {
  opacity: 0.6;
}
.player-thumbnail .details .duration span {
  font-size: 16px;
  line-height: 1;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #c6c6c6;
}
:root {
  scrollbar-color: #e5e5e5 #e5e5e5;
  scrollbar-track-color: #e5e5e5;
  scrollbar-width: thin;
}
.tidal img {
  width: 33px;
  display: inline-block !important;
  vertical-align: bottom;
  margin: 0;
  margin-bottom: 0 !important;
}
.upper {
  text-transform: uppercase;
}
.margin-auto {
  margin-left: auto;
  margin-right: auto;
}
.relative {
  position: relative;
  z-index: 1;
}
.img-responsive {
  width: 100%;
}
.padding-0-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.h-100vw {
  min-height: 100vh;
}
@media only screen and (min-height: 1000px) {
  .h-100vw {
    min-height: 1000px;
  }
}
.cleanUl {
  list-style: none;
  padding-left: 0;
}
.cleanUl li:before {
  display: none !important;
}
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.player-small {
  position: absolute;
}
.audio-player-container {
  position: fixed;
  z-index: 9;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fff;
  box-shadow: 0px -10px 30px -12px rgba(0, 0, 0, 0.23);
}
.audio-player-container .wrapper {
  max-width: 1644px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.audio-player-container .wrapper .details-box {
  display: flex;
}
.audio-player-container .wrapper .details-box .photo-box {
  margin-right: 20px;
}
.audio-player-container .wrapper .details-box .photo-box img {
  width: 50px;
}
.audio-player-container .wrapper .details-box .title-box .title {
  text-decoration: none;
  font-family: "ibmSemi";
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1;
}
.audio-player-container .wrapper .details-box .title-box p {
  font-size: 10px;
  margin-bottom: 0;
  line-height: 1;
  text-transform: uppercase;
}
.audio-player-container .wrapper .scoial-box li a i {
  font-size: 20px;
}
.audio-player-container .wrapper .audio-player {
  max-width: 700px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .audio-player-container .wrapper {
    max-width: 1644px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .audio-player-container .wrapper .details-box {
    display: flex;
  }
  .audio-player-container .wrapper .details-box .photo-box {
    width: 50px;
  }
  .audio-player-container .wrapper .details-box .title-box .title {
    text-decoration: none;
    font-family: "ibmSemi";
    text-transform: uppercase;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 1;
  }
  .audio-player-container .wrapper .details-box .title-box p {
    font-size: 10px;
    margin-bottom: 0;
    line-height: 1;
    text-transform: uppercase;
  }
  .audio-player-container .wrapper .scoial-box {
    flex: 0 0 10%;
  }
  .audio-player-container .wrapper .scoial-box li {
    margin-right: 15px;
  }
  .audio-player-container .wrapper .scoial-box li a i {
    font-size: 15px;
  }
  .audio-player-container .wrapper .audio-player {
    padding: 0 15px;
  }
}
@keyframes toDown {
  0% {
    opacity: 0;
    transform: translateY(-100px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
  }
}
@keyframes toUp {
  0% {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) translateX(-50%);
  }
}
@keyframes toDownY {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes toUpY {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes opc {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bottom {
  0% {
    bottom: -150%;
    opacity: 0;
  }
  100% {
    bottom: -118%;
    opacity: 1;
  }
}
@keyframes mountain {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  100% {
    bottom: -30%;
    opacity: 1;
  }
}
@keyframes animBoy {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  100% {
    bottom: -10%;
    opacity: 1;
  }
}
@keyframes animTrees {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  100% {
    bottom: -50%;
    opacity: 1;
  }
}
.hero-anim .bg-layer1 {
  opacity: 0;
  animation-name: opc;
  animation-delay: 200ms;
  animation-duration: 600ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .bg-layer2 {
  opacity: 0;
  animation-name: mountain;
  animation-delay: 800ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .text-big {
  opacity: 0;
  animation-name: toDown;
  animation-delay: 1500ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .text-small {
  opacity: 0;
  animation-name: toUp;
  animation-delay: 2000ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .anim-text {
  opacity: 0;
  animation-name: bottom;
  animation-delay: 3500ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .anim-boy {
  opacity: 0;
  animation-name: animBoy;
  animation-delay: 1000ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-anim .anim-trees {
  opacity: 0;
  animation-name: animTrees;
  animation-delay: 500ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-creator .creator-img {
  opacity: 0;
  animation-name: toDownY;
  animation-delay: 200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-creator h1 {
  opacity: 0;
  animation-name: opc;
  animation-delay: 800ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-creator .details-box,
.hero-creator p,
.hero-creator a,
.hero-creator .h2,
.hero-creator .h3 {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 1200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-two-cols .col-md-6:first-of-type {
  opacity: 0;
  animation-name: toDownY;
  animation-delay: 200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-two-cols .col-md-6:last-of-type {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 800ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.creators-hero .col-lg-6 {
  opacity: 0;
  animation-name: toDownY;
  animation-delay: 800ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.creators-hero .col-lg-5 {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-text h1 {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-text p {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 500ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-text ul {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 900ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.hero-small img,
.hero-small h1 {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 200ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.music-libary-hero .col-md-4 {
  opacity: 0;
  animation-name: toDownY;
  animation-delay: 300ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.music-libary-hero .col-md-8 {
  opacity: 0;
  animation-name: toUpY;
  animation-delay: 800ms;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.no-scroll-y {
  overflow-y: hidden;
  height: 100vh;
}
form p.error-msg {
  color: #ed1a60 !important;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 0;
}
form fieldset {
  padding: 0;
  right: 0;
  border: none;
  position: relative;
  margin-bottom: 22px;
}
form fieldset.error p.error {
  color: #ed1a60 !important;
  font-size: 14px;
  margin-bottom: 15px;
}
form fieldset.error input {
  border-color: #ed1a60;
}
form fieldset.error span {
  position: absolute;
  right: 0;
  top: 5px;
  font-size: 12px;
  color: #ed1a60;
}
form fieldset.error p {
  color: #ed1a60 !important;
  position: absolute;
  right: 0;
  top: -15px;
  font-size: 12px;
  margin: 0 !important;
}
form fieldset.small-margin {
  margin-bottom: 5px;
}
form label {
  font-family: "ibmSemi";
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
  position: absolute;
  top: 10px;
}
form select {
  font-family: "ibmSemi";
}
form input[type="email"]:focus + label {
  top: -10px !important;
  font-size: 12px !important;
}
form input[type="text"],
form input[type="email"],
form input[type="search"],
form input[type="password"],
form select,
form .chosen-container,
form textarea {
  width: 100%;
  border: none;
  display: block;
  border-bottom: 1px solid #000;
  height: 56px;
  transition: border-color 200ms linear;
  font-size: 20px;
  background-color: transparent;
  border-radius: 0;
  -webkit-appearance: none;
}
form input[type="text"]::-moz-placeholder, form input[type="email"]::-moz-placeholder, form input[type="search"]::-moz-placeholder, form input[type="password"]::-moz-placeholder, form select::-moz-placeholder, form .chosen-container::-moz-placeholder, form textarea::-moz-placeholder {
  opacity: 0.5;
}
form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form input[type="search"]::placeholder,
form input[type="password"]::placeholder,
form select::placeholder,
form .chosen-container::placeholder,
form textarea::placeholder {
  opacity: 0.5;
}
form input[type="text"]:focus + label,
form input[type="email"]:focus + label,
form input[type="search"]:focus + label,
form input[type="password"]:focus + label,
form select:focus + label,
form .chosen-container:focus + label,
form textarea:focus + label,
form input[type="text"][data-empty="false"] + label,
form input[type="email"][data-empty="false"] + label,
form input[type="search"][data-empty="false"] + label,
form input[type="password"][data-empty="false"] + label,
form select[data-empty="false"] + label,
form .chosen-container[data-empty="false"] + label,
form textarea[data-empty="false"] + label {
  top: -10px;
  font-size: 12px;
}
form input[type="text"]:invalid + label,
form input[type="email"]:invalid + label,
form input[type="search"]:invalid + label,
form input[type="password"]:invalid + label,
form select:invalid + label,
form .chosen-container:invalid + label,
form textarea:invalid + label {
  font-size: 20px;
  top: 10px;
}
form input[type="text"] + label,
form input[type="email"] + label,
form input[type="search"] + label,
form input[type="password"] + label,
form select + label,
form .chosen-container + label,
form textarea + label {
  pointer-events: none;
}
form input[type="text"] select[data-empty="true"] + label,
form input[type="email"] select[data-empty="true"] + label,
form input[type="search"] select[data-empty="true"] + label,
form input[type="password"] select[data-empty="true"] + label,
form select select[data-empty="true"] + label,
form .chosen-container select[data-empty="true"] + label,
form textarea select[data-empty="true"] + label {
  top: -2px;
  opacity: 0.6;
}
form input[type="text"]:disabled + label,
form input[type="email"]:disabled + label,
form input[type="search"]:disabled + label,
form input[type="password"]:disabled + label,
form select:disabled + label,
form .chosen-container:disabled + label,
form textarea:disabled + label,
form input[type="text"]:disabled,
form input[type="email"]:disabled,
form input[type="search"]:disabled,
form input[type="password"]:disabled,
form select:disabled,
form .chosen-container:disabled,
form textarea:disabled {
  opacity: 0.6;
}
form textarea {
  min-height: 130px;
  padding-top: 20px;
}
form textarea::-moz-placeholder {
  padding-top: 15px;
}
form textarea::placeholder {
  padding-top: 15px;
}
form input[type="submit"] {
  outline: 0;
  cursor: pointer;
  border: none;
}
form input[type="submit"]:focus {
  outline: 0;
}
form button {
  background-color: transparent;
  width: 100%;
  border: none;
}
form select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  overflow: hidden;
  cursor: pointer;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAJCAMAAAAM9FwAAAAAG1BMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACUUeIgAAAACXRSTlMAESIzRIiZzO5OGEO9AAAAMUlEQVR42k3IxQEAQQzDQIfTf8MHi9ZvBFNQ4og2chWQbWQBneVzjtdZPmeazjCf7RdKTAD6DL5nDQAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 15px);
}
form select::-ms-expand {
  display: none;
}
form ::-moz-placeholder {
  font-size: 16px;
  opacity: 0.3;
}
form ::placeholder {
  font-size: 16px;
  opacity: 0.3;
}
form select:required:invalid {
  opacity: 0.2;
}
input[type="radio"] {
  display: none;
}
input[type="radio"] + label {
  font-size: 12px;
  margin-bottom: 0;
  cursor: pointer;
  position: static;
  line-height: 15px;
  font-family: "ibm";
}
input[type="radio"] + label i {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}
input[type="radio"] + label i:before {
  content: url("/static/web/images/radio.png");
  padding-right: 10px;
}
input[type="radio"]:checked + label i:before {
  content: url("/static/web/images/radio-checked.png");
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  font-size: 12px;
  margin-bottom: 0;
  cursor: pointer;
  position: static;
  line-height: 15px;
  font-family: "ibm";
}
input[type="checkbox"] + label i {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  width: 15px;
}
input[type="checkbox"] + label i:before {
  content: url("/static/web/images/icons/square.svg");
  padding-right: 10px;
}
input[type="checkbox"]:checked + label i:before {
  content: url("/static/web/images/icons/square-check.svg");
}
.add-info {
  font-family: "ibm";
  font-size: 12px;
  line-height: 25px;
  margin-bottom: 10px;
}
label a {
  text-decoration: underline;
}
.file-upload input[type="file"] {
  display: none;
}
.file-upload span {
  font-size: 14px;
  text-transform: uppercase;
  padding: 0 10px;
}
.file-upload-button {
  max-width: 100%;
}
/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
@media (max-width: 767px) {
  form label {
    font-size: 12px;
    line-height: 12px;
  }
}
@font-face {
  font-family: "ibm";
  src: url("/static/web/fonts/IBMPlexSans-Regular.eot");
  src: url("/static/web/fonts/IBMPlexSans-Regular.woff");
  src: url("/static/web/fonts/IBMPlexSans-Regular.eot?#iefix") format("embedded-opentype"), url("/static/web/fonts/IBMPlexSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "ibmSemi";
  src: url("/static/web/fonts/IBMPlexSans-SemiBold.eot");
  src: url("/static/web/fonts/IBMPlexSans-SemiBold.woff");
  src: url("/static/web/fonts/IBMPlexSans-SemiBold.eot?#iefix") format("embedded-opentype"), url("/static/web/fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
}
.ibm {
  font-family: "ibm";
}
.ibmSemi {
  font-family: "ibmSemi";
}
body {
  font-size: 20px;
  line-height: 30px;
  font-family: "ibm";
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }
}
.text-form p.small {
  font-size: 12px;
}
p {
  margin-bottom: calc(20px + 1.04166667vw);
  margin-top: 0;
}
p.mb80 {
  margin-bottom: calc(30px + 2.60416667vw);
}
p.p30 {
  font-size: 30px;
  line-height: 40px;
}
a {
  color: inherit;
  text-decoration: none;
}
p a,
li a {
  text-decoration: underline;
}
ul {
  padding-left: 0;
}
ul li {
  padding-left: 10px;
}
.custom-list li {
  position: relative;
  list-style: none;
  padding-left: 30px;
}
.custom-list li::before {
  content: '';
  background-image: url('/static/web/images/icons/check-regular.svg');
  background-repeat: no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
h1 {
  font-family: "ibmSemi";
  font-size: calc(30px + 1.5625vw);
  line-height: calc(39px + 1.6625vw);
  margin-bottom: calc(25px + 0.67708333vw);
}
h2 {
  font-family: "ibmSemi";
  font-size: calc(30px + 1.5625vw);
  line-height: calc(39px + 1.6625vw);
  margin-bottom: calc(25px + 0.67708333vw);
}
h3 {
  font-family: "ibmSemi";
  font-size: calc(20px + 1.04166667vw);
  line-height: calc(20px + 1.04166667vw);
}
h4 {
  font-family: "ibmSemi";
  font-size: calc(20px + 0.52083333vw);
  line-height: calc(20px + 0.52083333vw);
  margin-bottom: 30px;
}
h5 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
}
.f60 {
  font-family: "ibmSemi";
  font-size: calc(30px + 1.5625vw);
  line-height: calc(39px + 1.6625vw);
  margin-bottom: calc(25px + 0.67708333vw);
}
.f40 {
  font-family: "ibmSemi";
  font-size: calc(20px + 1.04166667vw);
  line-height: calc(20px + 1.04166667vw);
}
.f30 {
  font-family: "ibmSemi";
  font-size: calc(20px + 0.52083333vw);
  line-height: calc(20px + 0.52083333vw);
  margin-bottom: 30px;
}
/*!
 * Bootstrap Reboot v5.1.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}
*,
::after,
::before {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
hr:not([size]) {
  height: 1px;
}
abbr[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
dl,
ol,
ul {
  margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}
sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
figure {
  margin: 0 0 1rem;
}
table {
  caption-side: bottom;
  border-collapse: collapse;
}
caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
label {
  display: inline-block;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}
[list]::-webkit-calendar-picker-indicator {
  display: none;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
textarea {
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}
::-webkit-inner-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-color-swatch-wrapper {
  padding: 0;
}
::-webkit-file-upload-button {
  font: inherit;
}
::file-selector-button {
  font: inherit;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
iframe {
  border: 0;
}
summary {
  display: list-item;
  cursor: pointer;
}
progress {
  vertical-align: baseline;
}
[hidden] {
  display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
/*!
 * Bootstrap Grid v5.1.1 (https://getbootstrap.com/)
 
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.col {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.justify-content-evenly {
  justify-content: space-evenly !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.order-first {
  order: -1 !important;
}
.order-0 {
  order: 0 !important;
}
.order-1 {
  order: 1 !important;
}
.order-2 {
  order: 2 !important;
}
.order-3 {
  order: 3 !important;
}
.order-4 {
  order: 4 !important;
}
.order-5 {
  order: 5 !important;
}
.order-last {
  order: 6 !important;
}
@media (min-width: 576px) {
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
}
@media (min-width: 768px) {
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
html.night-mode,
body.night-mode {
  background: #000;
  color: #fff;
}
html.night-mode body,
body.night-mode {
  background: #000;
}
header .main-menu .logo svg path {
  fill: #000;
}
html.night-mode header .row > .col:nth-of-type(2n) a svg path,
body.night-mode header .row > .col:nth-of-type(2n) a svg path {
  fill: #fff !important;
}
html.night-mode header .main-menu .logo svg path,
body.night-mode header .main-menu .logo svg path {
  fill: #fff !important;
}
html.night-mode header .main-menu,
body.night-mode header .main-menu,
html.night-mode header .side-panel,
body.night-mode header .side-panel,
html.night-mode header .menu-box,
body.night-mode header .menu-box {
  background-color: #000 !important;
}
html.night-mode header .overlay,
body.night-mode header .overlay {
  background-color: #000;
  opacity: 0.65;
}
html.night-mode header.opened .overlay,
body.night-mode header.opened .overlay {
  background-color: transparent !important;
  opacity: 0;
}
html.night-mode header.opened .main-menu,
body.night-mode header.opened .main-menu {
  background-color: #000 !important;
}
html.night-mode header.opened .menu-box,
body.night-mode header.opened .menu-box {
  background-color: #000 !important;
}
html.night-mode header ul.menu-list li a,
body.night-mode header ul.menu-list li a {
  color: #fff !important;
}
html.night-mode header ul.menu-list li a img,
body.night-mode header ul.menu-list li a img {
  filter: invert(1);
}
html.night-mode header ul.menu-list li a span:after,
body.night-mode header ul.menu-list li a span:after {
  background-color: #fff;
}
html.night-mode header ul.menu-list li.login,
body.night-mode header ul.menu-list li.login {
  border-top-color: #fff;
}
html.night-mode header .menu-trigger span,
body.night-mode header .menu-trigger span,
html.night-mode header .side-panel .bars span,
body.night-mode header .side-panel .bars span {
  background-color: #fff !important;
}
html.night-mode header .logged-menu,
body.night-mode header .logged-menu {
  background-color: #000 !important;
}
html.night-mode header .logged-menu .logged-box,
body.night-mode header .logged-menu .logged-box {
  color: #fff !important;
}
html.night-mode footer,
body.night-mode footer {
  background-color: #000;
  color: #fff;
}
html.night-mode section,
body.night-mode section,
html.night-mode .music-libary,
body.night-mode .music-libary,
html.night-mode .download-list,
body.night-mode .download-list,
html.night-mode .featured-tracks,
body.night-mode .featured-tracks,
html.night-mode .more-tracks,
body.night-mode .more-tracks {
  background-color: #000 !important;
  color: #fff;
}
html.night-mode .featured-tracks h3,
body.night-mode .featured-tracks h3 {
  color: #fff;
}
html.night-mode .featured-tracks .track-player,
body.night-mode .featured-tracks .track-player {
  background-color: #111;
  color: #fff;
}
html.night-mode .featured-tracks .track-player .photo-box img,
body.night-mode .featured-tracks .track-player .photo-box img {
  border-color: #111;
}
html.night-mode .featured-tracks .track-player .details-box h4,
body.night-mode .featured-tracks .track-player .details-box h4,
html.night-mode .featured-tracks .track-player .details-box .date,
body.night-mode .featured-tracks .track-player .details-box .date,
html.night-mode .featured-tracks .track-player .details-box p,
body.night-mode .featured-tracks .track-player .details-box p {
  color: #fff;
}
html.night-mode .featured-tracks .track-player .details-box .tags a,
body.night-mode .featured-tracks .track-player .details-box .tags a {
  background-color: #222;
  color: #fff;
}
html.night-mode .featured-tracks .track-player .details-box .play img,
body.night-mode .featured-tracks .track-player .details-box .play img {
  filter: invert(1);
}
html.night-mode .featured-tracks .track-player .details-box .social-list a,
body.night-mode .featured-tracks .track-player .details-box .social-list a,
html.night-mode .featured-tracks .track-player .details-box .social-list i,
body.night-mode .featured-tracks .track-player .details-box .social-list i {
  color: #fff;
}
html.night-mode .music-libary h3,
body.night-mode .music-libary h3,
html.night-mode .music-libary h4,
body.night-mode .music-libary h4,
html.night-mode .music-libary .date,
body.night-mode .music-libary .date,
html.night-mode .music-libary p,
body.night-mode .music-libary p {
  color: #fff;
}
html.night-mode .music-libary .heading-row .grid-options ul li,
body.night-mode .music-libary .heading-row .grid-options ul li,
html.night-mode .music-libary form .filter-row input,
body.night-mode .music-libary form .filter-row input,
html.night-mode .music-libary form .filter-row select,
body.night-mode .music-libary form .filter-row select,
html.night-mode .music-libary .libary-row .track-box,
body.night-mode .music-libary .libary-row .track-box,
html.night-mode .music-libary .libary-row.libary-list-view table tr,
body.night-mode .music-libary .libary-row.libary-list-view table tr {
  background-color: #111;
  color: #fff;
}
html.night-mode .music-libary form .filter-row .music-library-search-submit,
body.night-mode .music-libary form .filter-row .music-library-search-submit {
  color: #fff;
}
html.night-mode .music-libary .details-box .links .play img,
body.night-mode .music-libary .details-box .links .play img,
html.night-mode .music-libary .libary-row.libary-list-view table tr td.main .play img,
body.night-mode .music-libary .libary-row.libary-list-view table tr td.main .play img {
  filter: invert(1);
}
html.night-mode .music-libary form .filter-row input::-moz-placeholder, body.night-mode .music-libary form .filter-row input::-moz-placeholder, html.night-mode .music-libary form .filter-row select::-moz-placeholder, body.night-mode .music-libary form .filter-row select::-moz-placeholder {
  color: #fff;
}
html.night-mode .music-libary form .filter-row input::placeholder,
body.night-mode .music-libary form .filter-row input::placeholder,
html.night-mode .music-libary form .filter-row select::placeholder,
body.night-mode .music-libary form .filter-row select::placeholder {
  color: #fff;
}
html.night-mode .music-libary .photo-box img,
body.night-mode .music-libary .photo-box img {
  border-color: #111;
}
html.night-mode .music-libary .details-box .tags-box a,
body.night-mode .music-libary .details-box .tags-box a,
html.night-mode .music-libary .libary-row.libary-list-view table tr td a.tag-link,
body.night-mode .music-libary .libary-row.libary-list-view table tr td a.tag-link {
  background-color: #222;
  color: #fff;
}
html.night-mode .music-libary .details-box .links .social-list a,
body.night-mode .music-libary .details-box .links .social-list a,
html.night-mode .music-libary .details-box .links .social-list i,
body.night-mode .music-libary .details-box .links .social-list i,
html.night-mode .music-libary .libary-row.libary-list-view table tr td.links .social-list a,
body.night-mode .music-libary .libary-row.libary-list-view table tr td.links .social-list a,
html.night-mode .music-libary .libary-row.libary-list-view table tr td.links .social-list i,
body.night-mode .music-libary .libary-row.libary-list-view table tr td.links .social-list i {
  color: #fff;
}
html.night-mode .music-libary .heading-row .grid-options ul li svg path,
body.night-mode .music-libary .heading-row .grid-options ul li svg path {
  stroke: #fff;
}
html.night-mode .music-libary .heading-row .grid-options ul li:hover,
body.night-mode .music-libary .heading-row .grid-options ul li:hover,
html.night-mode .music-libary .heading-row .grid-options ul li.active,
body.night-mode .music-libary .heading-row .grid-options ul li.active {
  background-color: #fff;
}
html.night-mode .music-libary .heading-row .grid-options ul li:hover svg path,
body.night-mode .music-libary .heading-row .grid-options ul li:hover svg path,
html.night-mode .music-libary .heading-row .grid-options ul li.active svg path,
body.night-mode .music-libary .heading-row .grid-options ul li.active svg path {
  stroke: #000;
}
html.night-mode .side-panel .default-form input[type="text"],
body.night-mode .side-panel .default-form input[type="text"],
html.night-mode .side-panel .default-form input[type="email"],
body.night-mode .side-panel .default-form input[type="email"],
html.night-mode .side-panel .default-form input[type="search"],
body.night-mode .side-panel .default-form input[type="search"],
html.night-mode .side-panel .default-form input[type="password"],
body.night-mode .side-panel .default-form input[type="password"],
html.night-mode .side-panel .default-form select,
body.night-mode .side-panel .default-form select,
html.night-mode .side-panel .default-form .chosen-container,
body.night-mode .side-panel .default-form .chosen-container,
html.night-mode .side-panel .default-form textarea,
body.night-mode .side-panel .default-form textarea {
  border-bottom-color: #fff;
}
html.night-mode .download-panel,
body.night-mode .download-panel,
html.night-mode .contact-side-panel,
body.night-mode .contact-side-panel,
html.night-mode .login-panel,
body.night-mode .login-panel,
html.night-mode .signup-panel,
body.night-mode .signup-panel,
html.night-mode .forgot-panel,
body.night-mode .forgot-panel,
html.night-mode .panel-message,
body.night-mode .panel-message {
  background-color: #000;
  color: #fff;
}
html.night-mode .download-panel .bars span,
body.night-mode .download-panel .bars span,
html.night-mode .contact-side-panel .bars span,
body.night-mode .contact-side-panel .bars span,
html.night-mode .login-panel .bars span,
body.night-mode .login-panel .bars span,
html.night-mode .signup-panel .bars span,
body.night-mode .signup-panel .bars span,
html.night-mode .forgot-panel .bars span,
body.night-mode .forgot-panel .bars span,
html.night-mode .panel-message .bars span,
body.night-mode .panel-message .bars span {
  background-color: #fff;
}
html.night-mode .download-panel .sign-box,
body.night-mode .download-panel .sign-box,
html.night-mode .contact-side-panel .sign-box,
body.night-mode .contact-side-panel .sign-box,
html.night-mode .login-panel .sign-box,
body.night-mode .login-panel .sign-box,
html.night-mode .signup-panel .sign-box,
body.night-mode .signup-panel .sign-box,
html.night-mode .forgot-panel .sign-box,
body.night-mode .forgot-panel .sign-box,
html.night-mode .panel-message .sign-box,
body.night-mode .panel-message .sign-box,
html.night-mode .download-panel .contact-box,
body.night-mode .download-panel .contact-box,
html.night-mode .contact-side-panel .contact-box,
body.night-mode .contact-side-panel .contact-box,
html.night-mode .login-panel .contact-box,
body.night-mode .login-panel .contact-box,
html.night-mode .signup-panel .contact-box,
body.night-mode .signup-panel .contact-box,
html.night-mode .forgot-panel .contact-box,
body.night-mode .forgot-panel .contact-box,
html.night-mode .panel-message .contact-box,
body.night-mode .panel-message .contact-box {
  border-top-color: #fff;
}
html.night-mode .button.reverse,
body.night-mode .button.reverse,
html.night-mode .music-libary .button.reverse,
body.night-mode .music-libary .button.reverse {
  background-color: #000;
  border-color: #fff;
  color: #fff;
}
html.night-mode .button.reverse svg,
body.night-mode .button.reverse svg,
html.night-mode .music-libary .button.reverse svg,
body.night-mode .music-libary .button.reverse svg,
html.night-mode .button.reverse path,
body.night-mode .button.reverse path,
html.night-mode .music-libary .button.reverse path,
body.night-mode .music-libary .button.reverse path {
  fill: #fff;
  stroke: #fff;
}
html.night-mode .button.reverse:hover,
body.night-mode .button.reverse:hover,
html.night-mode .music-libary .button.reverse:hover,
body.night-mode .music-libary .button.reverse:hover {
  background-color: #fff;
  color: #000;
}
html.night-mode .audio-player,
body.night-mode .audio-player {
  background-color: #000;
  color: #fff;
  border-top: 1px solid #222;
}
html.night-mode .waveform-player,
body.night-mode .waveform-player {
  background-color: #111;
  color: #fff;
  border-top: 1px solid #2a2a2a;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.35);
}
html.night-mode .waveform-player #main-play-icon,
body.night-mode .waveform-player #main-play-icon {
  filter: invert(1);
}
html.night-mode .waveform-player .social-list a,
body.night-mode .waveform-player .social-list a,
html.night-mode .waveform-player .social-list i,
body.night-mode .waveform-player .social-list i {
  color: #fff;
}
body.music-library-page .music-libary .music-library-audition-row .button.reverse,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse,
body.music-library-page .music-library-filter-popover .button.reverse {
  background-color: rgba(24, 27, 29, 0.76);
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #fff;
}
body.music-library-page .music-libary .music-library-audition-row .button.reverse svg,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse svg,
body.music-library-page .music-library-filter-popover .button.reverse svg,
body.music-library-page .music-libary .music-library-audition-row .button.reverse path,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse path,
body.music-library-page .music-library-filter-popover .button.reverse path {
  fill: #fff;
  stroke: #fff;
}
body.music-library-page .music-libary .music-library-audition-row .button.reverse:hover,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse:hover,
body.music-library-page .music-library-filter-popover .button.reverse:hover,
body.music-library-page .music-libary .music-library-audition-row .button.reverse:focus-visible,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse:focus-visible,
body.music-library-page .music-library-filter-popover .button.reverse:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}
body.music-library-page .music-libary .music-library-audition-row .button.reverse:focus-visible,
body.music-library-page .music-libary .music-library-artwork-card .button.reverse:focus-visible,
body.music-library-page .music-library-filter-popover .button.reverse:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  outline: none;
}
body.music-library-page .waveform-player {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background-color: rgba(24, 27, 29, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  bottom: 8px;
  box-shadow: 0 -10px 42px rgba(0, 0, 0, 0.28);
  color: #fff;
  overflow: visible;
}
body.music-library-page .waveform-player #songPoster {
  border-radius: 4px;
}
body.music-library-page .waveform-player #waveform {
  background-color: rgba(255, 255, 255, 0.025);
  border-radius: 6px;
}
body.music-library-page .waveform-player #main-play-icon {
  filter: invert(1);
}
@media only screen and (max-width: 767px) {
  body.music-library-page .waveform-player {
    border-radius: 10px;
    bottom: 5px;
  }
}
body.music-library-page .music-library-atmosphere::before {
  background-image: linear-gradient(180deg, rgba(1, 4, 8, 0.58) 0%, rgba(1, 4, 8, 0.3) 24%, rgba(2, 5, 9, 0.34) 42%, rgba(2, 5, 9, 0.48) 58%, rgba(3, 5, 8, 0.68) 76%, rgba(2, 3, 5, 0.9) 92%, var(--music-library-atmosphere-depth) 100%), linear-gradient(90deg, rgba(1, 4, 8, 0.38), rgba(1, 4, 8, 0.05) 50%, rgba(1, 4, 8, 0.42)), var(--music-library-atmosphere-image);
  background-position: center, center, 50% calc(50% + 62px);
  background-size: cover, cover, auto 116%;
  filter: brightness(0.9) saturate(1.04) contrast(1.13);
}
body.music-library-page .music-library-atmosphere::after {
  background-image: linear-gradient(180deg, transparent 34%, rgba(2, 4, 7, 0.08) 46%, rgba(2, 4, 7, 0.34) 61%, rgba(2, 4, 7, 0.7) 76%, rgba(2, 3, 5, 0.93) 88%, var(--music-library-atmosphere-depth) 94%, var(--music-library-atmosphere-depth) 100%);
}
body.music-library-page .music-library-atmosphere__blur {
  background-position: center, 50% calc(50% + 62px);
  background-size: cover, auto 116%;
  filter: blur(clamp(9px, 0.85vw, 14px)) brightness(0.88) saturate(1.08) contrast(1.1);
  inset: -18px -1.5% 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.46) 56%, rgba(0, 0, 0, 0.84) 66%, #000 76%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.46) 56%, rgba(0, 0, 0, 0.84) 66%, #000 76%, #000 100%);
  transform: scale(1.018);
}
body.music-library-page .music-library-audition-list {
  gap: 8px;
}
body.music-library-page .music-library-audition-row {
  --music-library-audition-border: rgba(255, 255, 255, 0.12);
  --music-library-audition-surface: rgba(12, 15, 17, 0.88);
  --music-library-waveform-color: #8c979a;
  --music-library-waveform-progress-color: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
  color: #f4f6f6;
  gap: clamp(12px, 1.25vw, 22px);
  grid-template-columns: 76px minmax(130px, 190px) minmax(360px, 1fr) auto;
  padding: 9px 14px;
}
body.music-library-page .music-library-audition-row:hover {
  --music-library-audition-surface: rgba(18, 22, 24, 0.94);
  box-shadow: 0 9px 26px rgba(0, 0, 0, 0.3);
}
body.music-library-page .music-library-audition-row.is-active-track {
  --music-library-audition-border: rgba(232, 240, 242, 0.28);
  box-shadow: inset 0 0 0 1px rgba(232, 240, 242, 0.08), 0 10px 28px rgba(0, 0, 0, 0.34);
}
body.music-library-page .music-library-audition-row__artwork {
  height: 76px;
  width: 76px;
}
body.music-library-page .music-library-audition-row__identity {
  gap: 12px;
}
body.music-library-page .music-library-audition-row__identity h4 {
  font-size: clamp(18px, 1.15vw, 21px);
}
body.music-library-page .music-library-audition-row__play-toggle {
  color: #f4f6f6;
  flex-basis: 28px;
  height: 30px;
  width: 28px;
}
body.music-library-page .music-library-audition-row__play-toggle::before {
  border-bottom-width: 8px;
  border-left-width: 13px;
  border-top-width: 8px;
}
body.music-library-page .music-library-audition-row .music-library-track-actions {
  gap: 4px;
  min-width: 116px;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .button {
  border-radius: 7px;
  font-size: 13px;
  height: 36px;
  line-height: 32px;
  min-width: 116px;
  padding-left: 12px;
  padding-right: 12px;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.button.reverse {
  background-color: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.74);
  height: 36px;
  min-width: 116px;
  width: 116px;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.button.reverse svg {
  height: 14px;
  margin-right: 7px;
  width: 14px;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.button.reverse svg path {
  fill: currentColor;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.button.reverse:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .music-library-future-action.button.reverse {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
  opacity: 1;
}
body.music-library-page .music-library-audition-row .music-library-track-actions .music-library-future-action.button.reverse:hover,
body.music-library-page .music-library-audition-row .music-library-track-actions .music-library-future-action.button.reverse:focus-visible {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}
body.music-library-page .music-library-waveform {
  background-color: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  height: 72px;
}
body.music-library-page .music-library-waveform:hover {
  background-color: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.22);
}
body.music-library-page .music-library-waveform__bars {
  gap: 2px;
  inset: 10px 13px;
}
@media only screen and (min-width: 768px) {
  body.music-library-page .music-library-search-form {
    margin-bottom: clamp(54px, 3.8vw, 62px);
    padding-top: clamp(10px, 0.8vw, 14px);
  }
}
@media only screen and (max-width: 1100px) {
  body.music-library-page .music-library-audition-row {
    grid-template-columns: 72px minmax(125px, 180px) minmax(260px, 1fr);
  }
  body.music-library-page .music-library-audition-row__artwork {
    height: 72px;
    width: 72px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions {
    min-width: 0;
  }
}
@media only screen and (max-width: 767px) {
  body.music-library-page .music-library-atmosphere::before {
    background-position: center, center, center top;
    background-size: cover, cover, 100% auto;
    filter: brightness(0.92) saturate(1.03) contrast(1.08);
  }
  body.music-library-page .music-library-atmosphere__blur {
    background-position: center, center top;
    background-size: cover, 100% auto;
    filter: blur(9px) brightness(0.9) saturate(1.05) contrast(1.06);
  }
  body.music-library-page .music-library-audition-row {
    gap: 10px 14px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 10px 12px;
  }
  body.music-library-page .music-library-audition-row__artwork {
    height: 64px;
    width: 64px;
  }
  body.music-library-page .music-library-waveform {
    height: 70px;
  }
}
header.music-library-atmosphere-header[data-public-navigation-route='music'] {
  position: absolute;
}
@media only screen and (min-width: 768px) {
  body.music-library-page footer {
    bottom: auto;
    padding: 22px 0;
    position: relative;
  }
  body.music-library-page.music-library-player-visible footer {
    bottom: auto;
    padding-bottom: calc(146px + env(safe-area-inset-bottom));
  }
  body.music-library-page .music-library-audition-row {
    grid-template-columns: 72px minmax(126px, 184px) minmax(360px, 1fr) auto;
    padding: 7px 12px;
  }
  body.music-library-page .music-library-audition-row__artwork {
    height: 72px;
    width: 72px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions {
    align-items: center;
    flex-direction: row;
    gap: 8px;
    min-width: 164px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions.music-library-track-actions--download-only {
    min-width: 40px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.music-library-download-utility.button.reverse {
    align-items: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: inline-flex;
    flex: 0 0 40px;
    font-family: inherit;
    height: 40px;
    justify-content: center;
    line-height: 1;
    min-width: 40px;
    padding: 0;
    width: 40px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.music-library-download-utility.button.reverse svg {
    height: 16px;
    margin: 0;
    width: 16px;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.music-library-download-utility.button.reverse:focus-visible {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(255, 255, 255, 0.16);
    color: #fff;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .music-library-download-utility__label {
    display: none;
    pointer-events: none;
  }
  body.music-library-page .music-library-waveform {
    height: 68px;
  }
  body.music-library-page .music-library-waveform__bars {
    inset: 9px 13px;
  }
}
@media only screen and (max-width: 767px) {
  body.music-library-page .music-library-audition-row .music-library-track-actions.music-library-track-actions--download-only {
    justify-content: flex-end;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions.music-library-track-actions--download-only .download-panel-trigger.music-library-download-utility.button.reverse {
    flex: 0 0 auto;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.music-library-download-utility.button.reverse {
    align-items: center;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: inline-flex;
    font-family: inherit;
    justify-content: center;
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .download-panel-trigger.music-library-download-utility.button.reverse:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 5px rgba(255, 255, 255, 0.16);
  }
  body.music-library-page .music-library-audition-row .music-library-track-actions .music-library-download-utility__label {
    display: inline;
    pointer-events: none;
  }
}
