.customizer {
    position: fixed;
    top: 80px;
    right: -450px;
    width: 450px;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #e1e1e1;
    z-index: 1001;

    transition: all 0.8s ease 0s; 
    -webkit-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
}

.customizer.open {
    right: 0;
}

.customizer__button {
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 24px;
    text-align: center;
    line-height: 50px;
    border-radius: 2px 0 0 2px;
    cursor: pointer;
}

.customizer__body h3 {
    margin-bottom: 20px;
}

.customizer__box {
    margin-bottom: 30px;
}

.customizer__box h4 {
    margin-bottom: 10px;
    color: #999;
}

.customizer__box button {
    margin-right: 6px !important;
    padding: 5px 20px !important;
    background-color: rgba(0, 0, 0, 0.15) !important;
}

 .customizer__box .active {
    background-color: rgba(0, 0, 0, 0.3)  !important;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15) inset;
}

.customizer__colors {
    overflow: hidden;
}

.customizer__colors li {
    border: 1px solid #eee;
    float: left;
    margin: 3px;
    padding: 5px;
    width: 10%;
    cursor: pointer;
}

.customizer__colors li:hover {
    border: 1px solid #ddd;
}

.customizer__colors span {
    display: block;
    float: left;
    height: 20px;
    width: 50%;
    text-indent: -9999px;
}

.customizer__code {
    background-color: #fff;
    border: 1px solid #e1e1e1;
    left: 50%;
    margin-left: -300px;
    padding: 25px;
    position: fixed;
    top: 100px;
    width: 600px;
    z-index: 99;
    border-radius: 2px;
    display: none;
}

.customizer__code h3 {
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .customizer {
        display: none;
    }
}