.layout-options {
    position: fixed;
    left: -280px;
    top: 170px;
    width: 280px;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.layout-options.show {
    left: 0;
}

.box-layout {
    width: 100%;
    background-color: #16242e;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 20px 15px;
    border-top: 2px solid #16242e;
}

.icon-cog {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-cog {
    background-color: #16242e;
}


/* ## Check */

.checkbox-switcher label {
    color: #eee;
    font-weight: normal;
    margin-bottom: 14px;
    padding-left: 90px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.checkbox-switcher label::before,
.checkbox-switcher label::after {
    border-radius: 3px;
    content: "";
    left: 0;
    position: absolute;
    top: 0;
}
.checkbox-switcher label::before {
    background-color: #fff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.35);
    height: 26px;
    width: 76px;
}
.checkbox-switcher label::after {
    background-color: #c7c7c7;
    height: 20px;
    margin-top: 3px;
    margin-left: 3px;
    transition: .3s transform ease-in-out;
    width: 35px;
    cursor: pointer;
}
.checkbox-switcher input {
    display: none;
}
.checkbox-switcher input:checked + label::after {
    background-color: #6eb443;
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}
.buy-btn {
    background-color: #82b440;
}
.buy-btn:hover {
    background-color: #7aa93c;
    border-color: #7aa93c;
}