.gui-color {
    left: 0;
    top: 0;
    height: 75vh;
    width:15vw;
    background-color: white;
    border-right: 4px #0077ba solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gui-color .heading {
    padding: 3px;
    background-color: #004F79;
    color: white;
    font-size: large;
    text-align: center;
}

.img-wrap {
    margin: 2px 0;
    position: relative;
    width: 100%;
}
.img-wrap:after{
    content: "";
    display: block;
    padding-top: 100%;
}
.gui-color .img-content {
    position: absolute;
    border-radius: 50%;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-image: url("../images/type_preview/single/stones/1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.15s ease-in-out;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: transparent;
}
.gui-color .img-content::before { 
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    border-radius: 50%;   
    background-color: transparent;
    border: none;
    transition: all 0.15s ease-in-out;
}


.gui-color .img-content:hover::before,
.gui-color .img-content.activeColor::before{
    background-color: rgba(255,255,255, 0.2);
    border:2px solid black;
}

.gui-color .img-content:hover {
    color: rgb(0, 0, 0);
}
.gui-color .img-text {
    z-index: 1;
    font-size: small;
}


.color-images {
    height:100%;
    width: 100%;
    padding: 5px;
    display: flex;
    flex-flow: column;
    overflow-y: auto;
}

@media (max-width: 767.98px) { 
    .gui-color .heading {
        font-size: small;
    }

}