﻿@media all and (max-width: 1024px) {
    .theme-roller {
        display: none;
    }
}
.nitro-theme-roller {
    position: fixed;
    top: 200px;
    left: 0;
    background: rgba(85,85,85,.75);
    width: 230px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translate(-230px);
    -moz-transform: translate(-230px);
    -ms-transform: translate(-230px);
    transform: translate(-230px);
    z-index: 9999;
}

    .nitro-theme-roller.opened {
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
        box-shadow: 0 1px 3px 1px rgba(0,0,0,0.15);
    }

    .nitro-theme-roller .open-button {
        position: absolute;
        top: 30px;
        right: -50px;
        width: 50px;
        height: 50px;
        background: #393939 url(../img/icon-open-button.png) no-repeat center;
        border: 0;
        font-size: 0;
        opacity: .9;
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
    }

        .nitro-theme-roller .open-button:hover,
        .nitro-theme-roller.opened .open-button {
            opacity: 1;
        }

    .nitro-theme-roller .style-section {
        position: relative;
    }

    .nitro-theme-roller .style-title {
        position: relative;
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        padding: 20px;
        line-height: 1;
        background: #333;
        font-weight: normal;
        z-index: 2;
        text-align: center;
    }

        .nitro-theme-roller .style-title:after {
            content: " ";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -27px;
            border-style: solid;
            border-width: 8px 27px 0 27px;
            border-color: #333 transparent transparent transparent;
        }

.presets-list.colors li {
    padding: 23px 0 22px 65px;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #333;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

    .presets-list.colors li:last-child {
        border: 0;
    }

    .presets-list.colors li:before {
        content: " ";
        position: absolute;
        top: 50%;
        left: 15px;
        margin-top: -20px;
        width: 40px;
        height: 40px;
        border: 1px solid #222;
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
    }

    .presets-list.colors li.red:before {
        background: #a12;
    }

    .presets-list.colors li.green:before {
        background: #0b7060;
    }

    .presets-list.colors li.ohra:before {
        background: #d78146;
    }

    .presets-list.colors li.blue:before {
        background: #4875b9;
    }

    .presets-list.colors li.neutral:before {
        background: #333;
    }

    .presets-list.colors li.custom-color:before {
        background: url(../img/color.jpg) no-repeat center;
    }

    .presets-list.colors li:hover,
    .presets-list.colors li.selected {
        background: #555;
    }

        .presets-list.colors li.selected:before {
            border-color: #fff;
        }
