* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    background: #FEFBFD
}

.blast-box {
    position: fixed;
    width: 300px;
    height: 300px;
   top: 0;
    left: -260px;
    color: #3C8137;
    z-index: 9999;
    font-family: sans-serif;
    transition: 0.5s cubic-bezier(1, 1.48, 0.76, 0.95) left
}

.blast-icon {
    position: absolute;
    width: 40px;
    line-height: 40px;
    right: 0;
    bottom: 0;
    color: #3C8137;
    background: #000000;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
    border: 1px solid #000000;
    perspective: 1000px;
    transition: 0.5s ease all;
    transform-origin: left;
    transition-delay: 0.5s;
    z-index: 9999
}

.blast-box .blast-frame {
    position: absolute;
    width: calc(100% - 40px);
    height: 300px;
    top: 0;
    left: 0;
    background: #89D279;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #3C8137;
    padding: 20px 5px
}

.blast-box .blast-colors {
    margin: 20px;
    padding-bottom: 20px
}

.blast-box .blast-color {
    position: relative;
    float: left;
    margin: 2px;
    height: 25px;
    width: 25px;
    max-height: 25px;
    max-width: 25px;
    background: black;
    color: transparent;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid white
}

.blast-box .blast-custom-colors {
    clear: both;
    padding-top: 40px
}

.blast-box input[name="blastCustomColor"] {
    margin-top: 20px;
    cursor: pointer;
    height: 30px;
    width: 100px;
    border: none;
    outline: none;
    background: transparent;
    padding: 0
}

.appear-it {
    left: 0
}

.flip-it {
    transform: rotateY(180deg);
    border-left: none
}