.color-trigger:before,
.colors-list .active::after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute
}

:root {
    --main-color: #00a7e9;
}

.color-palate {
    background: #fff;
    -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    -ms-box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    -o-box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .1);
    position: fixed;
    left: -285px;
    text-align: center;
    top: 20%;
    transition: .5s;
    width: 285px;
    z-index: 999;
    padding-bottom: 10px
}

.color-palate-head,
.palate {
    background: var(--main-color) none repeat scroll 0 0
}

.color-palate-head {
    padding: 12px 0
}

.color-palate-head h6,
.secondary-head h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 0;
    text-transform: uppercase
}

.palate {
    display: block;
    float: left;
    height: 45px;
    margin: 0 2.5% 12px;
    width: 20%;
    cursor: pointer;
    position: relative
}

.colors-list .active::after {
    background: url(../images/tick.png) center center no-repeat !important;
    content: ''
}

.various-color {
    overflow: hidden;
    padding: 20px 0 15px
}

.colors-list {
    margin: 0 20px
}

.secondary-head {
    background: #222;
    padding: 14px 0
}

.secondary-color {
    padding: 23px 0
}

.secondary-colors-list {
    margin: 0 80px
}

.palate-foo {
    color: #777;
    font-size: 13px;
    font-weight: 400;
    padding: 0 30px;
    line-height: 1.8em
}

.palate-foo span {
    display: block;
    padding-top: 20px;
    margin-top: 5px;
    border-top: 1px dotted #b2b2b2
}

.palate.default-color {
    background: #e53e29
}

.palate.green-color {
    background: #2ecc40
}

.palate.olive-color {
    background: #0091f7
}

.palate.brown-color {
    background: #ab8b40
}

.palate.purple-color {
    background: #bb54e1
}

.palate.teal-color {
    background: #14c599
}

.palate.orange-color {
    background: #f7a73e
}

.palate.yellow-color {
    background: #f7c61d
}

.color-trigger {
    background: var(--main-color) none repeat scroll 0 0;
    cursor: pointer;
    height: 50px;
    right: -46px;
    position: absolute;
    top: 0;
    width: 46px;
    padding-top: 6px
}

.color-trigger:before {
    content: ''
}

.color-trigger i {
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    -webkit-animation: 2s linear infinite rotation
}

.color-palate.visible-palate {
    left: 0
}

.color-palate h6 {
    font-weight: 500;
    color: #fff
}

.color-palate .box-version,
.color-palate .rtl-version {
    padding-top: 10px;
    padding-bottom: 0
}

.color-palate .option-box {
    padding-top: 10px;
    padding-bottom: 5px
}

.color-palate .option-box>li {
    position: relative;
    color: #fff;
    width: 40%;
    margin: 0 3px 9px;
    cursor: pointer;
    padding: 6px 12px;
    display: inline-block;
    background-color: var(--main-color);
    text-transform: capitalize
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg)
    }
}