.pl-title-border {
    text-align: center;
    color: #79d1cc;
    font-weight: bold;
    font-size: 25px;
    border-bottom: 1px solid;
    padding-bottom: 15px;
}

.pl-title {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 20px;
}


.pl-border {
    display: flex;
    flex-wrap: wrap;
}

#pl .product {
    width: 25%;
}

#pl .product-border {
    margin: 15px;
    cursor: pointer;
    -webkit-user-select: none;
}

#pl .product-img {
    box-shadow: inset 0px 0px 0px 1px #b7aeae;
}

#pl .product-img img {
    max-width: 100%;
    position: relative;
    z-index: -1;
    vertical-align: top;
    pointer-events: none;
}

#pl .product-text {
    text-align: center;
    margin-top: 15px;
    color: #7a7a7a;
    font-size: 17px;
}

@media screen and (max-width: 1024px) {
    #pl .product {
        width: 33.33%;
    }
}

@media screen and (max-width: 768px) {
    #pl .product-border {
        cursor: default;
    }
}

@media screen and (max-width: 650px) {
    #pl .product {
        width: 50%;
    }
}

@media screen and (max-width: 400px) {
    #pl .product {
        width: 100%;
    }
}


#pn {
    display: flex;
    justify-content: center;
    margin: 50px 5px;
}

.pn-border {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#pn .page {
    margin-top: 10px;
    padding: 5px 10px;
    cursor: pointer;
    -webkit-user-select: none;
    border-style: solid;
    border-width: 1px;
    border-color: #b7aeae;
}

#pn .page.active {
    border-color: #79d1cc;
    background-color: #7a7a7a;
    color: #000;
}

#pn .page-text {
    line-height: 1;
}

@media screen and (max-width: 768px) {
    #pn .page {
        cursor: default;
    }
}