<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Settings Box */
.color_scheme {
    background: #fff;
    border: 1px solid #cecece;
    position: fixed;
    padding: 15px 20px;
    z-index: 300;
    margin-top: 200px;
    width: 197px;
}
.color_scheme .color_scheme_settings {
    background: #fff;
    color: #363636;
    font-size: 22px;
    position: absolute;
    margin: -16px 0px 0px 175px;
    border: 1px solid #cecece;
    padding: 8px;
    cursor: pointer;
    border-left: 0px solid #fff;
}
.color_scheme .color_scheme_title {
    color: #4b4b4b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
    border-bottom: 1px solid #686868;
    text-transform: uppercase;
    margin-bottom: 30px;
    padding-bottom: 10px;
}
.color_scheme hr {
    border-bottom: 1px solid #ddd;
    border-top: 0px solid #ccc;
    margin: 0px -20px;
    margin-bottom: 20px;
    height: 1px;
}
.color_scheme select {
    width: 100%;
    padding: 5px;
    border: 1px solid #c5c5c5;
    line-height: 1em;
    color: #4b4b4b;
    font-size: 12px;
    height: 30px;
    outline: none;
    margin-bottom: 15px;
}
.color_scheme select:focus {
	border: 1px solid #FF0000;
}
.color_scheme p {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    color: #4b4b4b;
    color: #000;
    line-height: 1em;
    font-size: 12px;
}
.color_scheme li {
    list-style: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 100px;
    background: red;
    margin-right: 3px;
    border: 1px solid #c5c5c5;
    margin-bottom: 3px;
    cursor: pointer;
    *display: inline;
    *zoom: 1;
    text-align: center;
    overflow: hidden;
}
.color_scheme li img {
    width: 40px;
    height: 40px;
    margin: -10px;
}
.color_scheme li span {
    display: block;
    width: 100%;
    height: 100%;
}
.color_scheme li span.color_1 {
    background: #CC0000
;
}
.color_scheme li span.color_2 {
	background: #CC0000;
}
.color_scheme li span.color_3 {
    background: #e0218a;
}
.color_scheme li span.color_4 {
    background: #1bda51;
}
.color_scheme li span.color_pick {
    background: url('../color-box/farbtastic/color_pick.png') no-repeat center center;
} 
.color_scheme ul {
    margin: 0px;
    padding: 0px;
}


/* Animation */
.color_scheme select {
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}



/* Black version */
.boxed_fluid.black_version {
    background: #464646;
    color: #fff;
}
.boxed_fluid {
    width: 100%;
    background: #fff;
    overflow: hidden;
    margin: 0px auto;
}
.boxed .boxed_fluid {
    max-width: 1200px;
}
/* Black Version */


/* color/layout changer */
body.animated_change *{
    -webkit-transition: background-color 1s, color 1s, width 1s, height 1s;
    -moz-transition: background-color 1s, color 1s, width 1s, height 1s;
    -ms-transition: background-color 1s, color 1s, width 1s, height 1s;
    -o-transition: background-color 1s, color 1s, width 1s, height 1s;
    transition: background-color 1s, color 1s, width 1s, height 1s;
}
.color_scheme{
    left: -199px;
    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    -o-transition: left 0.4s;
    transition: left 0.4s;
}

/* COLOR CHANGE */
.d-text-c.active,
.d-text-c-h:hover,
.d-text-c {
    color: #CC0000;
}
.d-bg-c.active,
.d-bg-c-h:hover,
.d-bg-c {
    background: #CC0000;
}
.d-border-c.active,
.d-border-c-h:hover,
.d-border-c {
    border-color: #CC0000;
}</pre></body></html>