.wrapper2-body{
    position: relative;
    left: 5%;
}
.wrapper2 {
    text-align: center;
    color: #ededed;
}
.wrapper2-label {
    border-radius: 0.65em;
    display: block;
    left: 0px;
    top: 0;
    position: relative;
    width: 93%;
    height: 40px;
    z-index: 10;
    line-height: 40px;
    font-weight: bold;
    background: #b3b1b1;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}
.wrapper2-label:after {
    border-radius: 0.65em;
    content: "Електропостачання";
    width: 50%;
    height: 40px;
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    background: #065081;
    -webkit-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -moz-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -ms-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
}
#checkbox {
    display: none;
}
:checked + .wrapper2-label {
    left: 0px;
}
:checked + .wrapper2-label:after {
    left: 50%;
    background: #0cf;
    content: "Газопостачання";
}