#style-switcher {
    background: none repeat scroll 0 0 #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
    right: -201px;
    position: fixed;
    top: 30px;
    width: 201px;
    z-index: 9999;
    padding: 10px 10px;
    font-family: 'bookmanregular' !important;
}

#style-switcher .title {
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    margin-top: 5px;
}

#style-switcher .bottom + .btn {
    margin-top: 10px;
	background-color: #64869c;
    color: #fff;
}

#style-switcher ul.pattern {
    list-style: none outside none;
    overflow: hidden;
    padding: 0;
    border-radius: 0px;
}

#style-switcher .bottom a.settings {
    background: none repeat scroll 0 0 #ffffff;
    height: 41px;
    position: absolute;
    left: -40px;
    top: 0px;
    width: 40px;
    padding: 3px;
    border-radius: 30px 0px 0px 30px;
    cursor: pointer;
}

#style-switcher .btn-dark {
	padding: 5px 9px;
    background-color: #3c4858 !important;
    border: 1px solid #3c4858 !important;
    color: #ffffff !important;
    -webkit-box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
    box-shadow: 0 3px 5px 0 rgba(60, 72, 88, 0.3);
}

#style-switcher .btn-dark.btn-primary {
    color: #fff;
    background-color: #428bca !important;
    border-color: #125188 !important;
    border-width: 2px !important;
}

#style-switcher .btn-dark:not(:last-child) {
    margin-right: 5px;
}

#style-switcher .mdi-spin:before {
    /*-webkit-animation: mdi-spin 2s infinite linear;
    animation: mdi-spin 2s infinite linear;*/
}

#style-switcher .mdi-spin {
    /*-webkit-animation: mdi-spin 2s infinite linear;
    animation: mdi-spin 2s infinite linear;*/
}

#style-switcher .settings {
    padding: 10px 12px !important;
}

#style-switcher .settings.shadow {
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.35) !important;
}

#style-switcher .settings i {
    font-size: 18px;
}

@-webkit-keyframes mdi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes mdi-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.shadow {
    -webkit-box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
}