.body {
    width: 70%;
    padding: 13vh 15% 0vh 15%;
}

.body .top {
    text-align: center;
}

.body .top h1 {
    font-size: 2vh;
    color: var(--main-color);
    margin: 0vh 0% 2vh 0%;
}

.body .top input {
    display: block;
    width: 30%;
    margin: 0 35%;
    background-color: var(--dark-color);
    outline: none;
    border: none;
    padding: 1vh 1%;
    color: #fff;
    border-radius: .5vh;
    font-size: 1.3vh;
}

.body .productContainer {
    display: flex;
    padding: 5vh 0%;
    min-height: 69vh;
}

.body .productContainer .sort {
    width: 20%;
}

.body .productContainer .sort .container {
    margin-bottom: 5vh;
}

.body .productContainer .sort .container h1 {
    font-size: 2vh;
    color: #fff;
    margin: 0vh 0% 2vh 0%;
}

.body .productContainer .sort .container h1 span {
    color: var(--main-color);
    font-weight: 600;
}

.body .productContainer .sort .container .item {
    margin-bottom: 2vh;
}

.body .productContainer .sort .container .item a {
    font-size: 1.4vh;
    color: #fff;
    padding: .75vh 3%;
    border-radius: .7vh;
    cursor: pointer;
}

.body .productContainer .sort .container .item a.active {
    background-color: var(--main-color);
    color: #000;
    font-weight: 600;
}

.body .productContainer .products {
    display: grid;
    flex-grow: 100;
    grid-auto-rows: .5fr;
    grid-column-gap: 2.5%;
    grid-row-gap: 3vh;
    grid-template-columns: repeat(3, 1fr);
}

.body .productContainer .products .product {
    width: 16.3vw;
    padding: 2vh 4%;
    background-color: var(--dark-color);
    border-radius: 1vh;
}

.body .productContainer .products .product.hidden {
    display: none;
}

.body .productContainer .products .product .image {
    width: 16.3vw;
    height: 8.04vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--background-color);
    border-radius: .4vh;
    outline: .2vh solid var(--main-color);
}

.body .productContainer .products .product .information {
    padding: 2vh 3% 0vh 3%;
}

.body .productContainer .products .product .information h1 {
    font-size: 1.8vh;
    color: var(--main-color);
    font-weight: 700;
    margin: 0;
}

.body .productContainer .products .product .information p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 1.3vh;
    color: #fff;
    margin: 1vh 0% 2vh 0%;
    opacity: .5;
}

.body .productContainer .products .product .information a {
    display: flex;
    background-color: var(--main-color);
    color: #000;
    text-align: center;
    font-size: 1.5vh;
    font-weight: 700;
    text-decoration: none;
    padding: 1vh 0%;
    border-radius: .8vh;
    justify-content: center;
    align-items: center;
    margin-top: 1vh;
    cursor: pointer;
}

.body .productContainer .products .product .information a.remove {
    background-color: #700000;
    color: #fff;
}

.body .productContainer .products .product .information a span {
    margin-left: 3%;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .body .top input {
        width: 100%;
        margin: 0vh;
    }

    .body .productContainer {
        display: block;
    }

    .body .productContainer .sort {
        width: 100%;
        text-align: center;
        margin-bottom: 4vh;
    }

    .body .productContainer .products {
        grid-template-columns: repeat(1, 1fr);
    }

    .body .productContainer .products .product {
        width: 64vw;
    }

    .body .productContainer .products .product .image {
        width: 64vw;
        height: 31.57vw;
    }
}