label.toggle {
    display: inline-block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #993399), to(#662266));
    background: -webkit-linear-gradient(top, #993399 5%, #662266 100%);
    background: -o-linear-gradient(top, #993399 5%, #662266 100%);
    background: linear-gradient(to bottom, #993399 5%, #662266 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #ccd4dd), to(#777e88));
    background: -webkit-linear-gradient(top, #ccd4dd 5%, #777e88 100%);
    background: -o-linear-gradient(top, #ccd4dd 5%, #777e88 100%);
    background: linear-gradient(to bottom, #ccd4dd 5%, #777e88 100%);
    border-radius: 6px;
    border: hidden;
    padding: 5px 20px;
    margin-top: 5px;
    margin-bottom: 2px;
    margin-right: 5px;
    color: white;
    font-weight: bold;
    -webkit-box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

label.toggle:hover {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #aa44aa), to(#772277));
    background: -webkit-linear-gradient(top, #aa44aa 5%, #772277 100%);
    background: -o-linear-gradient(top, #aa44aa 5%, #772277 100%);
    background: linear-gradient(to bottom, #aa44aa 5%, #772277 100%);
}

label.toggle:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(2px);
    -ms-transform: translateY(2px);
    transform: translateY(2px);
}

input[type="checkbox"].toggle {
    display: none;
}

.hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /*transition: all 0.5s ease;*/
}

input[type="checkbox"].toggle:checked+label {
    display: none;
}

input[type="checkbox"].toggle:checked+label+.hidden {
    max-height: 10000px;
    opacity: 1;
}