main {
    padding: 0px 40px 40px 40px;
    margin: -50px auto 0px auto;
    text-align: center;
}

section {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid #fff;
    background-color: white;
}

input {
    display: none;
}

label {
    display: inline-block;
    margin: 0 0 -1px;
    padding: 15px 25px;
    font-weight: 600;
    text-align: center;
    color: white;
    background-color: #E01330;
    font-size: 19px;
}

label:before {
    font-family: fontawesome;
    font-weight: normal;
    margin-right: 1.2rem;
}


/* 
label[for*="1"]:before {
    content: "\f1cb";
}

label[for*="2"]:before {
    content: "\f17d";
}
*/

label:hover {
    color: #789;
    cursor: pointer;
}

input:checked+label {
    color: #000;
    background-color: white;
}

#tab1:checked~#content1,
#tab2:checked~#content2 {
    display: block;
    text-align: left;
}

#content2 .categorias {
    display: inherit;
}

@media screen and (max-width: 800px) {
    label:before {
        margin: 0;
        font-size: 18px;
    }
}

@media screen and (max-width: 500px) {
    label {
        padding: 15px;
    }
}