﻿@media all and (max-width: 1024px) {
    .theme-roller {
        display: none;
    }
}
.allure-theme-roller {
    position: fixed;
    top: 120px;
    left: 0;
    background: #333;
    width: 300px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translate(-300px);
    -moz-transform: translate(-300px);
    -ms-transform: translate(-300px);
    transform: translate(-300px);
    z-index: 9999;
}

    .allure-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);
    }

    .allure-theme-roller .open-button {
        position: absolute;
        top: 70px;
        right: -50px;
        width: 50px;
        height: 50px;
        background: #2c2c2c url(../img/icon-open-button.png) no-repeat center;
        border: 0;
        text-indent: -9999px;
        opacity: .5;
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
    }

        .allure-theme-roller .open-button:hover,
        .allure-theme-roller.opened .open-button {
            opacity: 1;
        }

    .allure-theme-roller .style-section {
        position: relative;
    }

    .allure-theme-roller .style-title {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        padding: 20px;
        line-height: 16px;
        background: #2c2c2c;
        font-weight: 400;
    }

    .allure-theme-roller .presets-list {
        padding: 20px 0;
        background: url(../img/border-dash.png) repeat-x left top;
    }

.presets-list.colors li {
    padding: 20px 0 20px 90px;
    font-size: 14px;
    line-height: 14px;
    color: #888;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

    .presets-list.colors li:before {
        content: " ";
        position: absolute;
        top: 50%;
        left: 30px;
        margin-top: -20px;
        width: 40px;
        height: 40px;
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
    }

    .presets-list.colors li.peach:before {
        background: #e87772;
    }

    .presets-list.colors li.orange:before {
        background: #f3a078;
    }

    .presets-list.colors li.olive:before {
        background: #a6b773;
    }

    .presets-list.colors li.sky:before {
        background: #87badd;
    }

    .presets-list.colors li.wood:before {
        background: #b19489;
    }

    .presets-list.colors li.violet:before {
        background: #a9a1c6;
    }
    .presets-list.colors li.custom-color:before {
        background: url(../img/color.jpg) no-repeat center;
    }

    .presets-list.colors li:hover {
        background: #3f3f3f;
    }

    .presets-list.colors li.selected {
        color: #fff;
    }

        .presets-list.colors li.selected:before {
            outline: 4px solid #666;
        }

.reset-button {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #333 url(../img/icon-reset-button.png) no-repeat center;
    border: 0;
    border-radius: 100%;
    text-indent: -9999px;
    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}

    .reset-button:hover {
        background-color: #393939;
    }

.presets-list.textures {
    overflow: hidden;
    padding: 25px 20px;
}

    .presets-list.textures li {
        width: 40px;
        height: 40px;
        background: #f3f3f3;
        float: left;
        margin: 0 6px;
        text-indent: -9999px;
        -webkit-transition: all .15s ease-in-out;
        -moz-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        cursor: pointer;
        overflow: hidden;
    }

        .presets-list.textures li:hover,
        .presets-list.textures li.selected {
            outline: 4px solid #666;
        }

        .presets-list.textures li.texture-one {
            background: #fff url(../img/texture_1.png) repeat center;
        }

        .presets-list.textures li.texture-two {
            background: #fff url(../img/texture_2.jpg) repeat center;
        }

        .presets-list.textures li.texture-three {
            background: #fff url(../img/texture_3.jpg) repeat center;
        }

