@font-face {
  font-family: interstate-light;
  src: url(/assets/front/fonts/interstate-light-cond.otf)
}
@font-face {
  font-family: interstate-regular;
  src: url(/assets/front/fonts/interstate-regular-comp.otf)
}
@font-face {
  font-family: interstate-bold;
  src: url(/assets/front/fonts/interstate-bold-cond.otf)
}
@font-face {
  font-family: interstate-black;
  src: url(/assets/front/fonts/interstate-black-cond.otf)
}


.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

:root {
  --body: radial-gradient(circle at top right, #3f3d3d 0%, rgba(0, 0, 0, 1) 75%);
  --primary: #707070;
  --secondary: #9F9D9D;
  --active: #755DE6;
  --black: #151515;
  --white: #FFFFFF;
  --xxs: 9px;
  --xs: 12px;
  --s: 14px;
  --m: 17px;
  --l: 25px;
  --xl: 30px;
  --xxl: 50px;
  --xxxl: 72px;
  --mauritius-bold: "mauritius-bold";
  --neue: "Helvetica Neue";
  --lh-30: 30px;
  --ft-light: 'interstate-light';
  --ft-regular: 'interstate-regular';
  --ft-bold: 'interstate-bold';
  --fr-black: 'interstate-black';
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: var(--body);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  box-sizing: border-box;
  color: var(--white);
  position: relative;
}

/****
BUTTONS
*/
.cta-white,
.cta-dark {
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  min-width: 100%;
}
.cta-white {
  background-color: transparent;
  text-align: center;
  max-width: 150px;
}
.cta-white:hover,
.cta-dark:hover {
  cursor: pointer;
  color: white;
  transition: all 0.5s ease;
}
.cta-white:hover,
.cta-white.cart-btn:hover {
  background-color: rgba(255,255,255,0.7);

}
.cta-dark {
  background: var(--black);
}
.cta-dark:hover {
  background-color: var(--active);
}
.quantity-input {
  display: inline-block;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: -0.11px;
  -webkit-user-select: none;
  user-select: none;
  position: relative;
  background-color: rgba(255,255,255, 0.2);
  border-radius: 50px;
  vertical-align: bottom;
  /* padding: 12px 16px;
  height: 22px; */
  width: 20%;
  color: white;
}
.cart-icon {
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.cart-icon:hover {
  cursor: pointer;
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}

/* dots */
.slick-dots li button:before {
  color: var(--active) !important;
}
.pagination {
  display: flex;
  align-items: center;
  padding: 0.5em;
  gap: 0.2em;
}
.pagination .current,
.pagination .page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
  padding: 0.5em;
  margin: 0.1em;
  border: 1px solid var(--primary);
  border-radius: 0.3em;
}
.pagination .current {
  background-color: var(--active);
  color: white;
  font-weight: 500;
}
.pagination .page {
  background-color: transparent;
}
.previous,
.next,
.last {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  height: 30px;
  width: auto;
  border: 1px solid var(--primary);
  padding: 0.5em;
  border-radius: 0.3em;
}


/*****
TEXT
*/
.heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.heading-text {
  color: var(--white);
}
h1 {
  font-family: 'interstate-black';
  text-transform: uppercase;
}
h2 {
  font-family: 'interstate-black';
  text-transform: uppercase;
}
h3 {
  font-family: 'interstate-black';
  text-transform: uppercase;
}
a,
a:focus {
  text-decoration: none;
}

a {
  color: var(--white);
}

a:hover,
a:focus {
  color: var(--primary);
}


/************
  NAVIGATION
*************/
.header-ctr {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
}
/* .top-nav {
  background-color: var(--black);
} */
.audiopool-logo {
  width: 200px;
}
.top-nav-info {
  display: flex;
  align-items: center;
}
.top-nav-buttons {
  justify-content: end;
}
.top-nav-links {
  justify-content: center;
}
.top-nav-links, .top-nav-buttons {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-link.show {
  color: var(--active) !important;
}
.nav-link, .nav-item {
  color: white;
}
.nav-link:hover,
.nav-item {
  color: var(--primary);
}
.dropdown-menu {
  background-color: transparent;
}
.dropdown-item {
  color: var(--white);
}
.dropdown-item:hover {
  background-color: var(--active);
}
.nav-link.dropdown-toggle.show,
.navbar-expand-lg .navbar-nav .dropdown-menu {
 background: rgba(0, 0, 0, 0.7);
}
.nav-link {
  color: var(--white);
  font-weight: bold;
}
.nav-link.active {
  color: white !important;
  font-weight: 900;
  text-decoration: underline;
}

#music-icon {
  width: 40px;
  fill: white;
  cursor: pointer;
  transition: fill 0.3s ease;
}

#music-icon:hover {
  fill: #ff6347;
}

#music-icon:focus {
  opacity: 0.5;
}

.local img {
  width: 25px;
  height: 25px;
}
.header-ctr.scrolled {
  background: rgba(0, 0, 0, 0.8);
}

/**
FOOTER
*/
.footer {
  padding: 5rem;
  height: 20vh;
}
.footer h4 {
  text-decoration: underline;
  text-transform: uppercase;
  font-family: 'interstate-bold';
  font-size: var(--l);
}
.credits {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.credits .col-sm-12 {
  text-align: center;
}
.footer ul {
  padding-left: 0;
}
.footer ul li {
  list-style: none;
}


/*****
Modals
*/

.modal-content {
  transform: scale(1.3);
  background: transparent;
}

.modal-content img {
  object-fit: contain;
}

/*****
 HEROES
*/

.short-desc {
  position: absolute;
  z-index: 10;
}
