@keyframes themekit-init {
    0% {
        right: -300px;
    }
    50% {
        right: -250px;
    }
    100% {
        right: -300px;
    }
}

.themekit-sidebar-cnt {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    right: -300px;
    background: rgb(255, 255, 255);
    box-shadow: 0 10px 30px 0 rgba(25, 45, 100, .08);
    z-index: 99999995;
    display: none;
    transition: all .5s;
}

.themekit-sidebar-cnt.themekit-active {
    right: 0;
}

.themekit-sidebar-cnt.themekit-init {
    display: block;
    animation: themekit-init 1s;
    animation-delay: 2s;
}

.themekit-sidebar {
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    position: relative;
    overflow-y: scroll;
    z-index: 5;
}

.themekit-button {
    position: absolute;
    width: 90px;
    height: 50px;
    background: rgb(255, 255, 255);
    right: 265px;
    top: 125px;
    border-radius: 30px;
    box-shadow: 0 10px 30px 0 rgba(25, 45, 100, .08);
    cursor: pointer;
    z-index: 1;
}

.themekit-button:before {
    content: "";
    background: url(media/gear.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    position: absolute;
    margin: 13px 17px;
    opacity: .7;
    transition: all .5s;
}

.themekit-button:hover:before {
    opacity: 1;
}

.themekit-sidebar>div {
    padding: 30px;
}

.themekit-sidebar>div>h2 {
    background: url(media/labels.svg);
    background-size: 170px auto;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    height: 20px;
    margin: 0;
}

.themekit-sidebar>div.themekit-colors h2 {
    background-position: 0px 0px;
}

.themekit-sidebar>div.themekit-colors-2 h2 {
    background-position: 0px -56px;
}

.themekit-sidebar>div.themekit-products h2 {
    background-position: 0px -168px;
}

.themekit-sidebar>div.themekit-powered h2 {
    background-position: 0px -511px;
}

.themekit-colors ul {
    padding: 0;
    list-style: none;
    display: grid;
    grid-gap: 15px;
    margin: 15px 0;
    grid-template-columns: repeat(5, 1fr);
}

.themekit-colors ul li {
    padding: 0;
    list-style: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .5s;
}

.themekit-colors ul li:hover {
    transform: scale(.9);
}

.themekit-colors+.themekit-colors {
    padding-top: 0;
}

.themekit-colors>div {
    position: relative;
    display: flex;
}

.themekit-colors input {
    padding: 0 5px;
    line-height: 25px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid rgb(228, 228, 228);
    width: 100%;
    box-shadow: none !important;
    outline: none !important;
}

.themekit-colors input+i {
    background: url(media/check.svg);
    background-size: 11px 11px;
    background-repeat: no-repeat;
    background-position: center center;
    height: 27px;
    width: 35px;
    background-color: rgb(59, 59, 59);
    margin-left: -10px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
    transition: all .5s;
}

.themekit-colors input+i:hover {
    background-color: rgb(128, 128, 128);
}

.themekit-products>div>a {
    height: 110px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid rgb(228, 228, 228);
    position: relative;
    overflow: hidden;
    transition: all .5s;
}

.themekit-products>div>a:last-child {
    margin-bottom: 0;
}

.themekit-products>div>a:before {
    content: "";
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: all .5s;
}

.themekit-products>div>a:hover:before {
    opacity: 1;
}

.themekit-powered>div {
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr 1fr;
}

.themekit-powered>div>a {
    height: 40px;
    background-size: 80% 80%;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    margin: 20px 0;
    border: 1px solid rgb(228, 228, 228);
    border-radius: 5px;
    transition: all .5s;
}

.themekit-products>div>a:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .themekit-sidebar-cnt {
        display: none !important;
    }
}