


.innerOrderBySelector>span:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    width: fit-content;
}
.pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin: 0 auto;
	width:100%;
}

span.page-numbers.dots {
    background-color: unset;
    color: #1a1a1a;
    padding-bottom: 0;
    cursor:default;
}

.pagination>* {
    padding: 0.9% 1%;
    margin: 0 0.4em;

    font-family: 'Campton', 'sans-serif';
    background-color: #CDCDCD;
    color: white;
    border-radius: 7px;
    white-space: nowrap;
    cursor: pointer;
}

.pagination>* {
    margin: 0 0.4em;
    font-family: 'Campton', 'sans-serif';
    background-color: #292246;
    color: white;
    border-radius: 1px;
    white-space: nowrap;
    cursor: pointer;
    padding: 0.4% 0.7%;
    text-decoration: unset;
    transition: all 0.25s ease-in-out;
    margin-bottom: 1.5em;
}


.pagination>*:hover {
    background-color: #CDCDCD;
    color:#292246;
}

span.page-numbers.current {
    background-color: #CDCDCD;
    color: #292246;
    cursor: no-drop;
}


.orderByButton {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.orderBySelector svg {
    width: 13px;
    height: 13px;
    transform: translateY(2px);
}

.orderBySelector:hover svg {
    transform: translateY(2px) rotate(90deg);
}

.orderBySelector svg {
    width: 13px;
    height: 13px;
    transform: translateY(2px);
    transition: transform 0.35s cubic-bezier(.34,.94,0.37,0.99);
}

.orderBySelector {
    width: fit-content;
    margin-bottom: 2em;
    margin-top: 2em;
}

.innerOrderBySelector {
    display: flex;
    flex-direction: column;
    width: fit-content;
    position: absolute;
    z-index: 99;
    background-color: white;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.8));
    padding: 0.5em 1.3em;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10%);
    transition: all 0.25s cubic-bezier(.93,.19,.31,0.92);
}

.orderBySelector:hover .innerOrderBySelector {
    pointer-events: all;
    transform: unset;
    opacity: 1;
}
.innerOrderBySelector span:hover {
    color: #4D4D4D;
}


.allProducts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 6.2%;
}

.categoryProduct a {
    display: block;
    text-decoration: none;
}

.categoryProductTitle h2 {
    font-family: 'General sans';
    color: #1A1A1A;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 0.5em;
    font-size: 1.1em;
    padding: 0 10%;
    -webkit-line-clamp: 2;
    -webkit-line-break: loose;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.categoryProductTitle p {
    font-family: 'General sans';
    color: #1A1A1A;
    font-weight: 700;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.2em;
    margin-top: auto;
}


.categoryProductImage img {
    width: 100%;
    height: 100%!important;
    display: block;
    object-fit: contain;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    z-index: -1;
    transition: all 0.25s ease-in-out;
}


.categoryProduct:hover img {
    transform: scale(1.1);
}

.categoryProductImage {
    border: 2px solid #DCDCDC;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 25vh;
    overflow: clip;
}

.categoryProductTitle {
    background-color: #dcdcdc;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 5% 0;
    height: 12vh;
    display: flex;
    flex-direction: column;
}
.categoryProduct {
    width: 15.8%;
    margin: 0px 0.4%;
    margin-bottom: 1.5%;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0));
}


.archiveTopBar {
    display: flex;
    flex-direction: row;
    padding-left: 7.6%;
}

.subCats {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-left: 5%;
    width: 76.5vw;
    overflow-x: auto;
    margin-top: 2em;
    height: fit-content;
    padding-bottom: 0.5%;
}

.orderByButton p {
    color: #292246;
    font-size: 1.1em;
    margin: 0;
    cursor: pointer;
    font-family: 'General Sans';
    font-weight: 500;
}

.innerOrderBySelector span {
    font-family: 'General Sans';
    font-weight: 500;
    color: #292246;
    margin: 0.2em 0;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.subcategory {
    margin: 0em 0.7em;
}

p.selectedPID {
    color: #aeaeae;
    cursor: default;
}

.subcategory p {
    font-family: 'General Sans';
    font-weight: 600;
    color: #1A1A1A;
    cursor: pointer;
    white-space: nowrap;
    margin: 0;
    text-transform: uppercase;
}



@media only screen and (max-width:1600px){
    .categoryProduct {
        width: 19.2%;
    }
    .categoryProductTitle h2 {
        font-size: 1em;
    }
    .categoryProductTitle p {
        font-size: 1.1em;
    }
    .allProducts {
        padding: 0 3%;
    }

}

@media only screen and (max-width:1100px){
    .categoryProduct {
        width: 24.2%;
    }
}

@media only screen and (max-width:900px){
    .categoryProduct {
        width: 32.5%;
    }

}

@media only screen and (max-width:640px){
    .categoryProduct {
        width: 49.2%;
    }
    .archiveTopBar {
        flex-direction: column;
    }
}

@media only screen and (max-width:500px){
    .categoryProduct {
        width: 87%;
        margin: 0.6em auto;
    }
    
}