ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.colorPicker {
    width: 80px;
    height: 50px;
    margin-right: 20px;
    margin-top: 10px;
}

.colorPicker:hover {
    cursor: pointer;
}


input[type="checkbox"][name="myWorks[]"] {
    display: none;
}

.cb-label {
    padding: 5px;
    margin: 10px;
    display: block;
    position: relative;
}

.cb-label::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -5px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 28px;
    transition-duration: 0.4s;
    transform: scale(0);
}

.cb-label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    cursor: pointer;
}

:checked+.cb-label {
    border-color: #ddd;
}

:checked+.cb-label::before {
    content: "✓";
    background-color: rgb(0, 158, 53);
    transform: scale(1);
    z-index: 1;
}

:checked+.cb-label img {
    transform: scale(0.9);
    box-shadow: 0 0 5px #333;
    z-index: -1;
}

.myWorkImage {
    position: relative;
    border: 1px solid #fff;
    padding: 5px;
    margin: 10px;
    display: block;
}

.myWorkImage i {
    border-radius: 50%;
    backdrop-filter: blur(4.5px);
    background: rgba(255, 255, 255, 0.2) !important;
    display: block;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    transition-duration: 0.4s;
    transform: scale(1);
    z-index: 100;
    cursor: pointer;
}

.myWorkImage i:hover {
    color: red;
}

.hidden::before {
    display: none;
}


.deleteSong {
    position: absolute;
    top: 5px;
    right: -5px;
    width: 25px;
    height: 25px;
}

.deleteSong:hover {
    color: red;
    cursor: pointer;
}