*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: sans-serif;
    font-size: 2rem;
    background: #eee;
    mix-blend-mode: darken;
}

body::before,
body::after {
    content: "";
    height: 200%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation-name: away;
    animation-duration: 1.2s;
    transform-origin: right;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}


main {
    width: 100%;
    opacity: 0;
    animation-fill-mode: forwards;
    animation-name: popup;
    animation-duration: .8s;
    animation-delay: 1s
}

.inputs {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    width: 100%;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    flex-direction: column;
}

.inputs>div {
    width: 40rem;
    display: flex;
    align-items: center;
}


.filter {
    width: 5rem;
    height: 5rem;
    margin-right: 2rem;
    background: #eee;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 5px;
    box-shadow: inset 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
}

.label:hover {
    cursor: pointer;
}

.filter:hover {
    cursor: pointer;
}

.filter:checked {
    background: pink;
}

.filter:checked~.label {
    text-decoration: underline;
}

.drop {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}
.pricefilter{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 10rem;
    width: 100%;

}
.shoes {
    justify-content: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.shoe {
    list-style: none;
    width: 25rem;
    height: 30rem;
    transition: .2s;
    flex-grow: 1;
}

.shoe:hover {
    transform: scale(1.02) translateY(-0.7rem);
    cursor: pointer;
}

.shoe>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes away {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

@keyframes popup {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}