/*
Theme Name: Record Reviver
Author: Kraig
Version: 1.0
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
    color: #fff;
    text-decoration: none;
    
  }
  body{
    background-color: black;
    overflow: hidden;
  }
  nav{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
  }
  .white{
    color: #fff;
  }
  .w100{
    width: 100%;
  }
  .w90{
    width: 90%;
  }
  .w80{
    width: 80%;
  }
  .w70{
    width: 70%;
  }
  .w60{
    width: 60%;
  }
  .w50{
    width: 50%;
  }
  .w45{
    width: 45%;
  }
  .w33{
    width: 33%;
  }
  .w25{
    width: 25%;
  }
  .w15{
    width: 15%;
  }
  .w10{
    width: 10%;
  }
  .wfit{
    width: -webkit-fill-available;
  }
  .h100{
    height: 100%;
  }
  .h50{
    height: 50%;
  }
  .h15rem{
    min-height: 15rem;
  }
  .hfit{
    height: fit-content;
  }
  .back-wrapper{
    max-height: calc(100vh - 28.75rem);
  }
  .flex{
    display: flex;
  }
  .vertical{
    flex-direction: column;
  }
  .center{
    justify-content: center;
    align-items: center;
  }
  .p10{
    padding: 10px;
  }
  .text-center{
    text-align: center;
  }
  .back-black{
    background-color: black;
  }
  .display-none{
    display: none;
  }
  
  .scroller{
    overflow: scroll;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
  }
  .small-image{
    width: 100px;
    min-width: 100px;
    height: 100px;
  }
  .hero-image {
    position: relative;
    height: calc(100vh - 28.75rem); /* Adjust the height to fit the screen */
    min-height: 15rem; /* Ensure a minimum height */
    overflow: hidden; /* Prevent content from overflowing the container */
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the entire area while maintaining aspect ratio */
    filter: blur(4px); /* Apply blur to the background image */
    z-index: 1; /* Place it behind the sub-image */
  }
  
  /* Add a gradient overlay using a ::before pseudo-element */
  .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1));
    z-index: 1; /* Same as background image to layer it on top of the image */
    pointer-events: none; /* Allow clicks to pass through */
  }
  
  .hero-sub-image {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; /* Keep the sub-image above the blurred background */
    text-align: center;
  }
  .img-no-width{
    max-width: none;
    width: fit-content;
  }
  .h100 {
    height: 100%;
  }
  .back-arrow-container{
    height: 50px;
    padding-top: 10px;
    justify-content: start;
  }
  .back-arrow{
    font-size: 15px;
  }
  
  .single-info{
    padding-top: 10px;
  }
  
  .single-title{
    font-size: 2.125rem;
  }
  .single-sub-title{
    font-size: 1.125rem;
    color: #a0a0a0;
  }
  .h100 {
    height: 100%;
  }
  .wrap{
    flex-wrap: wrap;
  }
  .full-wrapper{
    width: 100%;
    height:100vh;
    max-height: 100vh;
    padding-top: 60px;
  }
  .padding-bottom{
    padding-bottom: 50vh;
  }
  .header{
    background-color: black;

    display: flex;
    position: relative;
  }
  .red {
    color: red;
  }
  .footer-item{
    padding-top: 10px;
  }
  .list-header{
    padding-top: 15px;
  }
  .list-tabs{
    position: relative;
    height: 3rem;
  }
  .list-title{
    font-size: 22px;
    font-weight: 200;
  }
  .list-content{
    padding-top: 10px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    overflow: scroll;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
  }
  .list-content::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
  }

  .list-item-wrapper{
    width: 18%;
  }
  .list-item {
    width: 95%;
  }

  .tab-title{
    font-family: Lato, Helvetica Neue, helvetica, sans-serif;
    color: #a0a0a0;
    cursor: pointer;
    height: 100%;
  }
  .list-options{
    gap: 15px;
    align-items: start;
  }
  .select-list-item{
    font-size: 20px;
  }
  .content-text{
    height: 100%;
    width: 50%;
  }
  .profile-pic-container{
    padding: 20px;
    height: fit-content;
  }
  .selected{
    font-weight: 400;
    color: #fff;
    border-bottom: solid;
    border-bottom-color: red;
  }
  .jend{
    justify-content: end;
  }
  .over-hidden{
    overflow: hidden;
  }
  .item-image{
    height: 250px;
    width: 250px;
  }
  .item-title{
    position: relative;
    font-size: 1rem;
    font-weight: bold;
    width: calc(100%);
    text-overflow: ellipsis;
  }
  .bold{
    font-weight: 1000;
  }
  .item-sub-title{
    position: relative;
    font-size: 0.75rem;
    color: #a0a0a0;
  }
  .title-name{
    position: relative;
    font-size: 0.8rem;
    font-weight: bold;
    height: 75%;
    padding-left: 10px;
    display: flex;
    align-items: center;
  }
  .title-sub-name{
    position: relative;
    font-size: 0.75rem;
    color: #a0a0a0;
    padding-left: 10px;
    height: 25%;
    display: flex;
    align-items: center;
  }
  .title-name p, .title-sub-name p{
    line-height: 1rem;
    margin: 0;
  }
  .hrem25{
    height: 2.5rem;
  }
  .g2{
    gap: 2%;
  }
  .g15{
    gap: 15%;
  }
  .icon{
    font-size: 1.5rem;
    cursor: pointer;
  }
  .pointer{
    cursor: pointer;
  }
  .scroll{
    overflow: scroll;
  }
  .scroll::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
  }
  .search-wrapper{
    height: 100%
  }
  .search-input-wrapper{
    border-bottom: .125rem solid #59595b;
    display: flex;
    margin: 0 auto;
    max-width: 55rem;
    transition: border-color .2s cubic-bezier(.5,0,.25,1);
    height: 10%;
  }
  .search-results{
    height: 90%;
  }
  .search-input{
    background-color: #0000;
    border: none;
    color: #fff !important;
    display: block;
    flex: 1 1 auto;
    font-family: Lato, Helvetica Neue, helvetica, sans-serif;
    padding-top: 0;
    text-rendering: optimizeLegibility;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    padding-bottom: .25rem;
  }
  textarea:focus, input:focus{
    outline: none;
}
.search-result-card{
    min-width: 30%;
    width: 30%;
    height: 65px;
}
.search-result-card-img{
    width: 65px;
    min-width: 65px;
}
.small-title{
    padding: 15px;
    font-weight: 600;
    line-height: 1.75rem;
    font-size: 1.375rem;
}
.small-font{
  padding-left: 5px;
  font-size: 1rem;
}
.results-wrapper{
    height:65px;
    row-gap: 10px;
    column-gap: 1%;
}
.universal-star{
  color:red;
  font-size: .75rem;
}
.yellow-star{
  color: orange;
}
/*Loading CSS*/
#loading-album {
	position: absolute;
	left: 45%;
	height: 50vw;
	width: 50%;
	max-height: 50%;
	max-width: 50vh;
}

#loading-vinyl {
    position: absolute;
    top: 50%;
    z-index: 0;
    width: 95%;
    height: 95%;
    display: block;
    background-image: url('https://gallery.yopriceville.com/var/resizes/Free-Clipart-Pictures/Music-PNG/Gramophone_Vinyl_LP_Record_PNG_Transparent_Clip_Art_Image.png?m=1462983196');
    background-size: 106% 106%;
    background-position: center;
    box-shadow: 0 0 20px 4px rgba(0,0,0,0.6);
    border-radius: 50%;
    content: '';
    animation: 5s linear spinThat infinite;
    &::before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        width: 95%;
        height: 95%;
        background-image: url('http://www.designresourcebox.com/ths/diverse/blacktextures/82267467.jpg');
        background-size: 100% 100%;
        border-radius: 50%;
        mix-blend-mode: screen;
        opacity: 0.3;
        content: '';
    }
}
@keyframes spinThat {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/*Stars CSS*/
#half-stars-example {

  /* use display:inline-flex to prevent whitespace issues. alternatively, you can put all the children of .rating-group on a single line */
  .rating-group {
    display: inline-flex;
  }
  
  /* make hover effect work properly in IE */
  .rating__icon {
    pointer-events: none;
  }
  
  /* hide radio inputs */
  .rating__input {
   position: absolute !important;
   left: -9999px !important;
  }

  /* set icon padding and size */
  .rating__label {
    cursor: pointer;
    /* if you change the left/right padding, update the margin-right property of .rating__label--half as well. */
    padding: 0 0.1em;
    font-size: 1rem;
  }

  /* add padding and positioning to half star labels */
  .rating__label--half {
    padding-right: 0;
    margin-right: -.48em;
    z-index: 2;
    width: .5rem;
  }

  
  /* set default star color */
  .rating__icon--star {
    color: orange;
  }
  
  /* set color of none icon when unchecked */
  .rating__icon--none {
    color: #eee;
  }

  /* if none icon is checked, make it red */
  .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
  }

  /* if any input is checked, make its following siblings grey */
  .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
  }
  
  /* make all stars orange on rating group hover */
  .rating-group:hover .rating__label .rating__icon--star,
  .rating-group:hover .rating__label--half .rating__icon--star {
    color: orange;
  }

  /* make hovered input's following siblings grey on hover */
  .rating__input:hover ~ .rating__label .rating__icon--star,
  .rating__input:hover ~ .rating__label--half .rating__icon--star {
    color: #ddd;
  }
  
  /* make none icon grey on rating group hover */
  .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
     color: #eee;
  }

  /* make none icon red on hover */
  .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
  }
  
}

/* Rank Modal*/
/* Style the modal (hidden by default) */
.modal {
  position: fixed;
  z-index: 5; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

/* Modal content box */
.modal-content {
  background-color: black;
  margin: 15% auto; /* Center the modal */
  padding: 20px;
  border: 1px solid black;
  border-radius: 10px;
  width: 80%; /* Adjust width */
  max-width: 500px; /* Optional max width */
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}

/* Modal content box for list selector */
.list-selector-modal-content {
  background-color: black;
  margin: 15% auto; /* Center the modal */
  padding: 20px;
  border: 1px solid black;
  height: 100%;
  overflow: scroll;
  border-radius: 10px;
  width: 100%; /* Adjust width */
  max-width: 500px; /* Optional max width */
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: scroll;
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;  /* Firefox */
}
/* The close button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  display: flex;
  justify-content: end;
}

.close:hover,
.close:focus {
  cursor: pointer;
}
.submit-rank-button{
  border: solid 1px;
  border-radius: 10px;
  border-color: red;
  height: 35px;
  font-weight: bold;
}
.nav-footer{
  display: none;

}
/*Phone CSS*/
  @media (max-width: 1000px) {
    body{
      background-color: black;
    }
    /*
    .nav-header{
      display: none;
    }
    .nav-footer{
      display: block;
      bottom: 0;
      left: 0; 
      right: 0;
      z-index: 1000;
      position: fixed;
    }

    .full-wrapper{
      width: 100%;
      height:90vh;
      max-height: 90vh;
      margin-top: 0px;
      padding-top: 0px;
    }
        .footer{
      background-color:black;
      display: flex;
    }
    .header{
      background-color: black;
      opacity: .5;
      display: none;
    }    
    */
    #loading-album {
      left: 25%;
  }
    .full-height{
        height:90vh;
        max-height: 90vh;
    }

    .list-item-wrapper{
      width: 49%;
    }
    .content-text{
      width: 100%;
    }
    .hero-sub-image{
        width: 80%;
        height: 80%;
        overflow: hidden;
    }
    
    .search-result-card{
        width: 100%;
    }
    .search-results-return{
        width: 90%;
    }
    .item-image{
      height: 150px;
      width: 150px;
    }
  }
  