/*
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;
    height: 100vh;
  }
  nav{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    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;
  }
  .link{
    color: white;
    text-decoration: underline;
  }
  .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 !important;
  }
  
  .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: 40px;
  }
  .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: 2rem;
  }
  .list-title{
    font-size: 22px;
    font-weight: 200;
  }
  .list-content{
    padding-top: 10px;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    -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%;
  }
  .menu-icon{
    width: 1.75em;
    height: 1.75em;
    vertical-align: -0.125em;
  }
  .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{
  width: .75em;
  height: .75em;
}

/*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);
	}
}
/*Spinner CSS*/
#loading {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
  to { -webkit-transform: rotate(360deg); }
}
/*COMING SOON CSS*/
@keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

@-webkit-keyframes fadeIn {
  from {top: 20%; opacity: 0;}
  to {top: 100; opacity: 1;}
  
}

.coming-soon-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
  
}

.coming-soon-title{
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
}

.coming-soon-dot {
  color: red;
}

/*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: absolute;
  z-index: 5; /* Sit on top */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
}

/* 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;

}
/*footer CSS*/
.site-footer
{
  background-color:#26272b !important;
  background-image: none !important;
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}

.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
/*Phone CSS*/
  @media (max-width: 1000px) {
    body{
      background-color: black;
    }

    #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;
    }
  }
  