/*
  Version: 2.1
*/

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500&display=swap');

:root {
  --bg-color: #F7F8F9;
  --primary: #464D34;
  --secondary-text: #191D23;
  --secondary: #76881D;
  --secondary-hover: #849B15;
  --tertiary: #DEEDBA;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--primary);
  font-family: 'Sora', sans-serif;

}

.primary-btn {
  transition: background-color 600ms;
  height: 44px;
  background-color: var(--secondary);
  color: white;
}

.primary-btn:hover {
  transition: background-color 300ms;
  background-color: var(--secondary-hover);
}

/* General Style */

h1 {
  font-size: 56px !important;
  font-style: normal;
  font-weight: 500;
  /* line-height: 64px; */
  letter-spacing: -1.12px;
}

h2 {
  font-size: 36px !important;
}

h3 {
  font-size: 26px !important;
}

.text-lyrics {
  font-family: "Inter", sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */

  font-size: 1.1rem;
  font-optical-sizing: auto;
}

@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

/* Navbar */


.material-symbols-sharp {
  font-variation-settings: 'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 50
}

ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: var(--text-color);
}

.main-w {
  max-width: 1600px;
  margin: auto;
}

.navbar ul li a {
  position: relative;
}

.nav-hover {
  display: inline-block;
  position: relative;
}

.nav-hover:before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0;
  height: 1px;
  transition: width 0.3s ease-in-out;
  background-color: var(--secondary);
}


.nav-hover:hover::before {
  color: var(--secondary);
  width: 100%;

}

.nav-hover:hover {
  color: var(--secondary);
  transition: color 0.3s ease-in-out;
}

.burger-menu,
.search-nav {
  display: none;
}

.logo {
  font-family: 'Sora';
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.52px;
}

/* Track List */

.performer {
  color: var(--secondary-text) !important;

}

.track:hover {
  background-color: #fff;
  transition: background-color 0.2s linear;
}

.track:hover p {
  color: var(--secondary);
  transition: color 0.2s linear;
}

.play-effect {
  background-color: white;
  border-bottom: 1px solid var(--secondary);
  transition: all 0.9s linear;
}

/* Filters */



.rotate-icon {
  transform: rotate(180deg);
}


.show-filters {
  /* height: max-content !important;
  opacity: 100 !important;
  transition: all .3s ease; */
  display: grid !important;
}

.filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--secondary-text);
  background: var(--bg-color);
}

.filter:hover,
.filter:focus {
  border: 1px solid var(--secondary);
  background: white !important;
  transition: all 0.3s linear;
}

.filter::selection {
  background: var(--secondary) !important;
  color: white;
}

.dropdown_option {
  transition: all 0.3s linear;
}

.dropdown_option:hover {
  color: var(--secondary-hover);
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: white;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
}

/* For IE10 */
select::-ms-expand {
  display: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}


input:focus {
  outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

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

/* Player */
#bottom_player {
  background-color: var(--primary);
  color: var(--bg-color);
}

.player-title {
  color: var(--tertiary);
}

#ply-icon {
  min-width: 44px !important;
}

.share-tooltip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 219px;
  height: 34px;
  background: var(--bg-color);
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary);
}

input[type="Range"] {
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: var(--bg-color);
  height: 8px;
}

/******** Firefox ********/
input[type="range"]::-moz-range-track {
  background: var(--bg-color);
  height: 8px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  margin-top: -4px;
  background-color: var(--secondary);
  border: none;
  height: 1px;
  width: 1px;
  box-shadow: -407px 0 0 400px var(--secondary);
}

input[type="range"]::-moz-range-thumb {
  -moz-appearance: none;
  opacity: 0;
}

input[type="range"]::-moz-range-progress {
  background-color: var(--secondary);
  height: 8px;
}

/* Donate */
.support {
  background: var(--tertiary);
}

.btn-color {
  color: var(--secondary);
}


/* FOOTER */

footer {
  bottom: 0;
  padding: 64px 0;
  background: var(--primary);
  color: var(--bg-color);
}

/* Pagination */

ol {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 64px 0;
  gap: 16px;

}

ol li {
  display: flex;
  background-color: var(--bg-color);
  list-style-type: none;
}

ol li a {
  display: flex;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  border: 1px solid var(--primary);
  color: var(--primary);
}

ol li a.active {
  background-color: var(--secondary);
  color: var(--bg-color);
  border: none;
}

ol li a:hover {
  background-color: var(--secondary-hover);
  color: var(--bg-color);
  border: none;
}


/* .overlay {
  position: fixed;
  top: 30%;
  left: 50%;
  width: fit-content;
  height: fit-content;
  transform: translate(-50%, -50%);
  background-color: var(--bg-color);
  border: 1px solid var(--secondary);
  padding: 10px;
  display: none;
  transition: opacity 0.1s ease-in-out;
} */

/* Responsive */
@media (max-width: 768px) {
  #show-filters {
    display: none;
  }

  h1 {
    font-size: 36px !important;
    line-height: 40px !important;
  }

  h3 {
    font-size: 21px !important;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.21px;
  }


  .track-btn {
    cursor: pointer;
    min-width: 68px;
    height: 68px;
    justify-content: center;
    align-items: center;
  }

  input[type="Range"] {
    /*width: 16rem;*/
    height: 4px;
  }

  .play-mobile {
    display: flex;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--secondary);
  }

  .play-icon {
    background-color: var(--bg-color) !important;
    color: var(--secondary) !important;
    border-radius: 50% !important;
    min-height: 44px;
    min-width: 44px;
    max-width: 44px;
    max-height: 44px;
    margin: 0 auto;
  }

  .share-tooltip {
    display: none !important;
  }

  .col-gap {
    gap: 12px !important;
  }

  .border-mobile {
    border: 1px solid var(--primary) !important;
    padding: 14px 16px;
    width: 100%;
  }
}

@media (max-width: 640px) {

  .col-gap {
    gap: 12px !important;
  }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #show-filters {
    display: grid;
  }
}


/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  ...
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  ...
}