/* MAKE + SIGN A CHILD OF ITS CONTAINER */


.tier {
    height: 90px;
    border-radius: 13px;
    display: flex;
    margin-top: 4px;
}

.sign {
    height: 90px;
    width: 145px;
    border-radius: 13px;
    color: white;
    display: flex; /* inline flex?? */
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-family: "Inter", sans-serif;
    margin-left: 20px;
}

.sign:hover .add-tier {
    opacity: 100%;
}

.sign:hover .delete-tier {
    opacity: 100%;
}

.add-tier {
    position: absolute;
    margin-top: 90px;
    opacity: 0%;
    color: white;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background-color: #5cbd6e;
    cursor: default;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-tier {
    position: absolute;
    opacity: 0%;
    color: white;
    height: 17px;
    width: 17px;
    background-color: #FF2428;
    border-radius: 50%;
    cursor: default;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 125px;
    margin-bottom: 80px;
}

.tier-drop-zone {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    margin-left: 3px;
}

.tier-glow {
    border: solid red 2px;
}

#s-tier-sign {
    background-color: #DB5151;
}
#a-tier-sign {
    background-color: #DB8A51;
}
#b-tier-sign {
    background-color: #DBC051;
}
#c-tier-sign {
    background-color: #76DB51;
}
#f-tier-sign {
    background-color: #51D2DB;
}

#music-holder {
    height: 100%;
    margin-top: 50px;
    margin-left: 15px;
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(auto-fill, 85px);
    grid-template-rows: repeat(auto-fill, 85px);
    gap: 5px;
}

.music-element {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 13px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.music-element:before {
    content: '';
    position: absolute;
    /* background-image: url("../images/graduation.jpg"); */
    background-image: var(--bg-image);
    width: 100%;
    height: 100%;
    background-size: cover;
    border-radius: 13px;
    opacity: 0.80;
}

.music-element p {
    position: relative;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    text-align: center;
}



/* .element-outline {
    border: 1px solid white;
} */