/* ========================================================================
 * c-switch - v0.0.1
 * http://www.carnou.com/c-switch
 * ========================================================================
 * 
 * Developed by Mauro Baptista @carnou
 *
 * ========================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ========================================================================
 */

.c_switch {
    cursor: pointer;
}
 
.c_switch .c_align_middle {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
}

.c_switch .c_round_back {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.c_switch .c_round_toggle {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}

.c_switch .bg {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
}
.c_switch .text {
    color: white;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 200;
}
.c_switch .text_on {
    background: -webkit-gradient(linear, left top, left bottom, from(#4B8699), to(#1B5C71));
    background: -webkit-linear-gradient(#4B8699, #1B5C71);
    background: linear-gradient(#4B8699, #1B5C71);
}

.c_switch .text_off {
    background: -webkit-gradient(linear, left top, left bottom, from(#737e8d), to(#3f454e));
    background: -webkit-linear-gradient(#737e8d, #3f454e);
    background: linear-gradient(#737e8d, #3f454e);
}

.c_switch .text_green {
    background: -webkit-gradient(linear, left top, left bottom, from(#008000), to(#006400));
    background: -webkit-linear-gradient(#008000, #006400);
    background: linear-gradient(#008000, #006400);
}
