.tags-site-container{
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr 3fr;
    row-gap: 50px;
    column-gap: 30px;
    margin: 72px 0;
}
.tags-products{
    grid-column-start: 2;
    grid-row: 2/3;
    --products-on-desktop: 3;
    --products-on-mobile: 2;
    --breakpoint: 768px;
    display: grid;
    column-gap: 30px;
    grid-template-columns: repeat(var(--products-on-desktop), 1fr);
}
@media screen and (max-width:768px){
    .tags-products{
        grid-template-columns: repeat(var(--products-on-mobile), 1fr);
    }
}
.tags-sort-page{
    grid-column: 2/3;
    display: flex;
    justify-content: space-between;
}
.tags-sort-page.bottom{
    grid-row: 3/4;
}
.tag-subtitle{
    grid-row: 1/2;
    grid-column: 1/2;
    color: #ff931e;
    font-size: 21px;
    display: grid;
    place-items: center;
    font-weight: bold;
    font-family: "Montserrat";
}
.tags-choice{
    grid-row-start: 2;
    grid-column: 1/2;
    display: flex;
    flex-flow: row wrap;
    border: 1px solid #ebebeb;
    border-top: 2px solid #ff931e;
    padding: 0 24px 24px 24px;
    row-gap: 8px;
    justify-content: space-around;
    height: min-content;
}
.content-wrapper > .tags-choice{
    margin: 48px 0;
}
.tags-choice .choice-title {
    width: 100%;
    height: 48px;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #ebebeb;
    font: normal normal bold 16px Roboto;
    color: #000;
}
.tags-choice .tag-option{
    height: 48px;
    padding: 0 24px;
    cursor: pointer;
    background: #ff931e;
    border-radius: 100px;
    border: 2px solid #ff931e;
    color: #fff;
    transition: .3s ease-in-out;
    display: grid;
    place-items: center;
}
.tags-choice .tag-option:nth-child(21) ~ *{
    display: none;
}
.tags-choice .tag-option:hover{
    background: #fff;
    color: #ff931e;
}
.sort-product-number{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    row-gap: 60px;
    min-width: 540px;
}
.sort-choice .choices,
.product-number-choice .choices{
    box-shadow: 1px 5px 5px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
    position: relative;
    top: -1px;
    border-top: 1px solid #ebebeb;
    flex-shrink: 0;
    width: calc(100% + 2px);
    left: -1px;
}
.sort-choice,
.product-number-choice{
    display: flex;
    flex-flow: column;
    min-width: 240px;
    height: 48px;
    border: 1px solid #ebebeb;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.sort-choice.open,
.product-number-choice.open{
    overflow: visible;
}
.sort-choice .choice,
.sort-choice .sort-order,
.product-number-choice .number-choice,
.product-number-choice .product-number{
    padding-left: 1rem;
    height: 48px;
    display: flex;
    align-items: center;
    color: #414141;
    font-size: .875rem;
    cursor: pointer;
    flex-shrink: 0;
}
.sort-choice .sort-order,
.product-number-choice .product-number{
    background: #fff;
}
.sort-choice .choice,
.product-number-choice .number-choice{
    background: #f6f6f6;
}
.sort-choice .choice:hover,
.product-number-choice .number-choice:hover{
    background: #313537;
    color: #fff;
}
.pagination-tab{
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-evenly;
}
.pagination-tab .tag-page{
    width: 48px;
    height: 48px;
    color: #585858;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 0.75em;
    font-weight: 400;
}
.pagination-tab .tag-page.disabled-page{
    color: #ccc;
    cursor: default;
}
.pagination-tab .tag-page.current-page{
    border: 2px solid #ff931e;
    background: #fff;
    color: #707070;
}
.pagination-tab .tag-page svg{
    width: 8px;
    height: 8px;
}

/* displayFooterProduct */

.bottom_tags{
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    column-gap: 2ch;
    font-size: 12px;
    color: #888;
    width: max-content;
    margin-top: 32px;
}
.bottom_tags > a{
    color: #000;
    position: relative;
    transition: .5s ease-in-out;
}
.bottom_tags > a:hover{
    color: #ff931e;
}
.bottom_tags > a::before{
    display: block;
    content: "";
    height: 1px;
    width: 0%;
    background: #ff931e;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s ease-in-out;
}
.bottom_tags > a:hover::before{
    width: 100%;
}

/*  */