.img-shadow {
    -webkit-box-shadow: 8px 8px 60px -2px rgb(0, 39, 255);
    -moz-box-shadow: 8px 8px 60px -2px rgba(0, 39, 255, 1);
    box-shadow: 8px 8px 60px -2px rgba(0, 39, 255, 1);
}
.wait-until {
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 15px;
    color: rgb(231, 231, 231);
    transition: .4s;
    text-shadow: 0 2px 6px rgba(0, 0, 1, 1);
}
#user-purchased {
    display: grid;
    margin-top: 80px;
    width: 100%;
    grid-template-columns: 100px 1fr;
    grid-template-areas: "u-menu u-products";
}

.customer-nav {
    background-color: #000000;
    width: 60px;
    margin-top: 70px;
    display: flex;
    position: sticky !important;
    flex-direction: column;
    grid-area: u-menu;
}
.customer-nav ul li {
    list-style: none;
    color: #acacac;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-nav ul li div, .customer-nav ul li div a  {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-caption {
    margin-top: -10px;
    font-size: 8px;
}

.user-nav-icon:hover {
    color: #FFFFFF;
    cursor: pointer;
}
.u-products {
    width: 100%;
    height: 90vh;
    overflow-y: auto;
    grid-area: u-products;
}

.play-btn {
    font-size: 55px;
    color: rgb(231, 231, 231);
    transition: .4s;
    pointer-events: auto;
    z-index: 999;
}

.play-btn:hover {
    color: rgb(255, 123, 0);
    transform: scale(1.3);
}

.other {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 20px;
    color: cadetblue;
    text-decoration: none;
}

.navigation {
    display: flex;
    justify-content: center;
    padding: 1rem;

}

.border-gradient {
  border: 3px solid;
  border-image:
    linear-gradient(
      to bottom,
      red,
      rgba(0, 0, 0, 0)
    ) 1 100%;
}

button:hover {
    transform: scale(1.1);

}
.my-product {
    text-shadow: 0 0 15px #000000;
    stroke: black;
    backdrop-filter: blur(10px);
}
.products-library {
    transition: .2s;
}
.products-library:hover {
    border-color: yellow;

}

@media screen and (max-width: 758px) {
    .play-btn {
        font-size: 75px;}
        }