/*
Responsive: yes
*/

#themeChanger {
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 9999;
}

#themeChanger label {
    width: 70px;
    text-align: center;
    background: white;
    display: block;
    border-radius: 50%;
    height: 70px;
    font-size: 10px;
    padding-top: 17px;
    font-weight: bold;
}

#themeChanger input {
    display: none;
}

#themeChanger input:checked + .tc-wrapper {
    right: 0;
}

#themeChanger .tc-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: white;
    padding: 5px;
    position: absolute;
    top: 80px;
    right: -80px;
    -webkit-transition: right .3s;
    transition: right .3s;
}

#themeChanger .tc-child {
    margin-bottom: 10px;
    width: 70px;
    height: 70px;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    border-radius: 3px;
    border: 1px solid goldenrod;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
}

#themeChanger .tc-child:nth-child(1) {
    background-color: #081421;
}

#themeChanger .tc-child:nth-child(2) {
    background-color: #ff8690;
}

#themeChanger .tc-child:nth-child(3) {
    background-color: #e60012;
}

#themeChanger .tc-child:nth-child(4) {
    background-color: #0168b7;
}

.tc-info {
    width: 70px;
    background: white;
    font-size: 12px;
    border: 1px solid goldenrod;
    padding: .2em;
    line-height: 1.2;
    border-radius: 3px;
}
