#gallery {
    overflow: hidden;
}

#gallery .modal-header,
#gallery .modal-footer {
    border: none;
}

#gallery-content {
    background-color: rgba(255, 255, 255, 0.125);
    backdrop-filter: blur(10px);
    max-width: 60%;
    display: flex;
    flex-direction: column;
    border-radius: .3rem;
}

#gallery-content .modal-content {
    background-color: transparent;
}

.popups {
    min-height: 0;
}

.popups::-webkit-scrollbar {
    width: 12px;
}

.popups::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.popups::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: #6c757d;
}

.popups::-webkit-scrollbar-thumb:hover {
    background: #5a6268;
}

#skinsUL {
    padding: 0;
    margin: 0;
    padding-left: 10px;
    padding-top: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    scrollbar-color: #9090a0 #fff;
    scrollbar-width: thin;
}

.skin {
    margin-right: 10px;
    margin-bottom: 10px;
    list-style-type: none;
    /* removes bullet point */
}

.circular {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url("../img/checkerboard.png");
    background-repeat: no-repeat;
    background-size: 150px 150px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .8);
    cursor: pointer;
    transition: all 0.2s;
}

.skinName {
    text-align: center;
    margin-bottom: 0;
    transition: all 0.2s;
}

.circular:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, .8);
    transform: scale(1.1);
}

.circular:hover+.skinName {
    text-shadow: 0 0 1px rgba(0, 0, 0, .8);
}


#settingspop {
    margin-top: 4%;
}
