.tabs {
    position: relative;   
    min-height: 200px; /* This part sucks */
    clear: both;
    margin: 25px 0;
}
.tab, .tabhead {
    float: left;
}
.tab label, .tabhead label {
    background: #eee; 
    padding: 10px; 
    margin-left: -1px; 
    position: relative;
    left: 1px; 
}
.tab label {
    cursor: pointer;
}

.tab [type=radio],
.tabhead [type=radio] {
    display: none;   
}
.content {
    position: absolute;
    top: 28px;
    left: 0;
    background: white;
    right: 0;
    bottom: 0;
    padding: 20px;
    overflow: hidden;
}
.tab [type=radio]:checked ~ label {
    background: white;
    z-index: 1;
}
.tab [type=radio]:checked ~ label ~ .content {
    z-index: 2;
}
.tab .content p.product__categories,
.tab .content .shoptimizer-sorting.sorting-end,
.tab .content .woocommerce-notices-wrapper,
.tab .content form.woocommerce-ordering,
.tab .content p.woocommerce-result-count,
.tab .content h2.woocommerce-loop-product__title,
.tab .content .woocommerce a.mobile-filter
{
    display: none;
}

.tab .content .page-numbers {
    cursor: pointer;
}

/*
Animation loading
*/
.loading.damminga {
    margin:1em auto;
}
.loading.damminga span {
    font-size:3em;
    color:#192c4d;
    display:table-cell;
    line-height: 100px;
    animation:jumb 2s infinite;
    font-weight: 600;
}
@keyframes jumb {
    0% {
        transform:translateY(0px)
    }
    50% {
        transform:translateY(-30px);
    }
    100% {
        transform:translateY(0px)	
    }
}
.loading.damminga span:nth-child(1) {
    animation-delay:0s;
}
.loading.damminga span:nth-child(2) {
    animation-delay:.1s;	
}
.loading.damminga span:nth-child(3) {
    animation-delay:.2s;
}
.loading.damminga span:nth-child(4) {
    animation-delay:.3s;	
}
.loading.damminga span:nth-child(5) {
    animation-delay:.4s;
}
.loading.damminga span:nth-child(6) {
    animation-delay:.5s;	
}
.loading.damminga span:nth-child(7) {
    animation-delay:.6s;
}
.loading.damminga span:nth-child(8) {
    animation-delay:.7s;
}

.tab .content .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #33333366;
    align-items: center;
    display: flex;
    z-index: 10;
}