
/* .icon-basket:before {
    content: '\e800';
}

.icon-heart:before {
    content: '\e801';
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    list-style: none;
}


.wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.allbtn{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.row1 {
    width: 100%;
    display: flex;
    /* clear: both; */
    /* float: left; */
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.co1l-4 {
    width: auto;
    padding: 40px 20px;
    display: none;
    animation: fadeIn 1s forwards linear;
    display: inline-block;
}

.co1l-4>.row1 {
    width: 340px;
    height: 350px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    cursor: pointer;
    border: 1px solid #c2c2c2;
    transition: box-shadow 1s;
}

.co1l-4>.row1:hover {
    border: none;
    box-shadow: 0 6px 2px 0 #c2c2c2;
}

/* .co1l-4>.row1::before,
.co1l-4>.row1::after {
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    position: absolute;
    transition: 1s;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    font-family: impact;
    color: white;
    background: #d81b60;
    background: -moz-linear-gradient(left,  #3656a6 11%, #ee4823 47%, #3a59a8 88%);
    background: -webkit-linear-gradient(left,  #3656a6 11%, #ee4823 47%, #3a59a8 88%);
    background: linear-gradient(to right, #3656a6 11%, #ee4823 47%, #3a59a8 88%)
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#d81b60', endColorstr='#f57c00', GradientType=1);
} */

.co1l-4>.row1::before {
    content: attr(data-price);
    top: 0;
    transform: translateY(-100%)
}

.co1l-4>.row1::after {
    content: attr(data-brand);
    bottom: 0;
    transform: translateY(100%);
}

.co1l-4>.row1:hover::before,
.co1l-4>.row1:hover::after {
    transform: none;
}

/* .iconContainer {
    position: absolute;
    width: 30px;
    height: 69px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 10;
}

.iconContainer>div {
    width: 100%;
    height: 30px;
    margin-bottom: 3px;
    background-color: #f57c00;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    transition: 500ms ease-in-out;
    transform: translateX(-100%);
} */

    /* div.icon-heart:before {
        color: #d81b60;
    }

    div.icon-basket {
        transition-delay: 300ms;
    }

    div.icon-basket:before {
        color: #9c27b0;
    } */

/* .co1l-4>.row1:hover .iconContainer>div {
    transform: none;
} */

.wrapper {
    text-align: center;
}

.wrapper input[type="radio"] {
    display: none;
}
@keyframes fadeIn{
    from{
        opacity:0;
        
    }
    to{
        opacity: 1;
    }
}
label {
    display: inline-block;
    padding: 10px 30px;
    margin: 50px 10px;
    background-color: #1a76d1;
    /* font-family: impact; */
    font-weight: 600;
    color: white;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 10px 0 0 #185694;
    transition: 200ms ease-in-out;
}

#btn-2:checked~.row1>.co1l-4,
#btn-3:checked~.row1>.co1l-4,
#btn-4:checked~.row1>.co1l-4,
#btn-5:checked~.row1>.co1l-4 {
    display: none;
}

#btn-1:checked~.row1>.co1l-4,
#btn-2:checked~.row1>.co1l-4[data-brand="logo"], 
#btn-3:checked~.row1>.co1l-4[data-brand="nike"],
#btn-4:checked~.row1>.co1l-4[data-brand="addidas"],
#btn-5:checked~.row1>.co1l-4[data-brand="361"]{
    display: inline-block;
}
input[id*=btn]:checked+label{
    font-weight: 700;
    box-shadow: 0 2px 0 0 #616161;
    transform: translateY(8px);
}
@media(max-width: 350px){
    .co1l-4>.row1 {
        width: 300px;
        height: 320px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center center;
        cursor: pointer;
        border: 1px solid #c2c2c2;
        transition: box-shadow 1s;
    }
}
@media(max-width: 320px){
    .co1l-4>.row1 {
        width: 280px;
        height: 300px;
        background-color: #fff;
        position: relative;
        overflow: hidden;
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: center center;
        cursor: pointer;
        border: 1px solid #c2c2c2;
        transition: box-shadow 1s;
    }
}