.interface.change-look-interface {
    width: 240px;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    top: 50%;
}

div#change-look-options button {
    background: #000;
    color: #FFF;
    font-weight: 600;
    padding: 7px 0 9px;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid #000;
    text-align: center;
    width: 100%;
    margin: 1px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

div#change-look-options button:hover,
div#change-look-options button:active{
    background: #3c3c3c;
}

div#change-look-options button:last-of-type {
    margin-bottom: 0;
    background: #0e9161;
    border-color: #0e9161;
}

div#change-look-options button:last-of-type:hover,
div#change-look-options button:last-of-type:active{
    background: #26b17d !important;
}

/* PREVIEW PANE */

.avatar-preview-frame {
    width: 48px;
    height: 54px;
    box-shadow: none;
    position: relative;
    background-color: #FFF;
    margin: 0 2px;
    border-radius: 3px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

div#avatar-preview-container {
    border-radius: 4px;
    margin: 6px 0 5px 0;
    display: flex;
    justify-content: center;
    padding: 17px 10px 9px;
    background: #FFF;
    box-shadow: inset 0 0 5px #6f6f6f;
    border: 1px solid #000;
}

div#avatar-preview-front {
    background-image: url(/assets/spritesheets/player-spritesheet.png);
    background-position: 0 0;
}

div#avatar-preview-left {
    background-image: url(/assets/spritesheets/player-spritesheet.png);
    background-position: 0 1760px;
}

div#avatar-preview-back {
    background-image: url(/assets/spritesheets/player-spritesheet.png);
    background-position: 0 1320px;
}

div#avatar-preview-right {
    background-image: url(/assets/spritesheets/player-spritesheet.png);
    background-position: 0 1540px;
}

.hair-preview-pane-bg-image,
.top-preview-pane-bg-image,
.bottom-preview-pane-bg-image {
    width: 48px;
    height: 55px;
    position: absolute;
    top: 0;
    left: 0;
}

.bottom-preview-pane-bg-image{ z-index: 1; }
.top-preview-pane-bg-image{ z-index: 2; }
.hair-preview-pane-bg-image{ z-index: 3; }

/* SELECT CHANGE LOOK OPTION/ITEM */

.interface.change-look-select-item-interface {
    z-index: 3;
    transform: translate(-50%, -50%) scale(1);
    left: 50%;
    top: 50%;
}

.change-look-select-item-content-container {
    height: 483px;
    overflow-y: scroll;
    backface-visibility: hidden;
}

.change-look-select-item-content-container::-webkit-scrollbar-track {
    background-color: #cfcfcf;
    border-radius: 5px;
}

.change-look-select-item-content-container::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 4px;
}

.change-look-select-item-content-container::-webkit-scrollbar {
    width: 8px;
}

.change-look-select-item-interface .no-items-to-display {
    padding: 10px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 561px) {    
    .change-look-select-item-interface {
        width: 332px;
    }
}

@media (max-width: 400px) {    
    .change-look-select-item-interface {
        width: 251px;
    }
}

@media (max-height: 675px) {    
    .change-look-select-item-content-container {
        height: 321px;
    }
}

@media (max-height: 517px) {    
    .change-look-select-item-content-container {
        height: 159px;
    }
}

@media (max-height: 360px){
    .change-look-select-item-content-container{
        height: 117px;
    }
}