﻿.switch {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 50px;
    text-align: center;
    margin: -30px 0 0 -75px;
    background: #4cd964;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-radius: 25px;
}

    .switch span {
        position: absolute;
        width: 20px;
        height: 4px;
        top: 40%;
        left: 48%;
        margin: -2px 0px 0px -4px;
        color: #fff;
        /*display: block;*/
        /*-webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: all 0.2s ease;
        -moz-transition: all 0.2s ease;
        -o-transition: all 0.2s ease;
        -ms-transition: all 0.2s ease;
        transition: all 0.2s ease;
        border-radius: 2px;*/
    }

        .switch span:after {
            /*content: "";
            display: block;
            position: absolute;
            width: 4px;
            height: 12px;
            margin-top: -8px;
            background: #fff;
            -webkit-transition: all 0.2s ease;
            -moz-transition: all 0.2s ease;
            -o-transition: all 0.2s ease;
            -ms-transition: all 0.2s ease;
            transition: all 0.2s ease;
            border-radius: 2px;*/
        }

input[type=radio] {
    display: none;
}

.switch label {
    cursor: pointer;
    color: rgba(0,0,0,0.2);
    width: 60px;
    line-height: 50px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

label[for=Manga] {
    position: absolute;
    left: 0px;
    height: 20px;
}

label[for=Anime] {
    position: absolute;
    right: 0px;
}

#Anime:checked ~ .switch {
    background: #4cd964;
}

    #Anime:checked ~ .switch span {
        /*background: #fff;
        margin-left: -8px;*/
    }

        #Anime:checked ~ .switch span:after {
            /*background: #fff;
            height: 20px;
            margin-top: -8px;
            margin-left: 8px;*/
        }

#Manga:checked ~ .switch label[for=Manga] {
    color: #fff;
}

#Anime:checked ~ .switch label[for=Anime] {
    color: #fff;
}