section h2 {
    background-color: var(--light);
    background-image: url(../graphics/sprites-neutral-prices.png);
    background-repeat: no-repeat;
    color: var(--neutral);
    padding-left: 77px;
    transition: .9s;
}
.additional {
     background-position: -40px -176px;
}
.blog {
     background-position: -40px -39px;
}
.shop {
     background-position: -40px -316px;
}
.website {
     background-position: -40px -456px;
}
.collapse {
    width: 100%;
    padding: 0;
    height: 0;
    overflow: hidden;
}
label {
    display: block;
}
label h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.2rem;
    cursor: pointer;
}
label h2::after {
    content: " ...click to read more";
    font-size: .9rem;
    font-weight: normal;
}
input:checked + label h2::after {
    content: " ...click to hide details";
}
input:checked + label h2 {
    background-image: url(../graphics/sprites-white-prices.png);
    background-color: var(--neutral);
    color: var(--light);
}
input[type="checkbox"] {
    margin-left: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
}
input:checked + label + .collapse {
    height: auto;
    overflow: initial;
}
@media only screen and (max-width: 425px) {
    table {
        width: 100%;
        border: none;
    }
    th {
        display: none;
    }
    tr,
    td {
        display: block;
        text-align: left!important;
        padding: 0;
    }
    tr {
        border-bottom: 1px solid var(--comp);
    }
}