/* tabs */
.tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 45px;
}
.tabs a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid transparent;
    text-decoration: none;
    color: #333333;
}
.tabs a.active{
    background: #EEEFF3;
    border: 1px solid #004989;
}
/* filter btn*/

.filters-sort__btn {
    display: none;
}

.filters-sort {
    display: flex;
    align-items: center;
    margin-bottom: 1.875rem;
}

.filters-sort .filters-sort__count--select {
    display: none;
}

.filters-sort__count {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    color: #333333;
    margin-top: 34px;
}

.filters-sort__count ul {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.filters-sort__count li {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-left: 0.5rem;
    color: #004989;
    text-decoration: underline;
    cursor: pointer;
}

.filters-sort__count li:hover {
    text-decoration: none;
}

.filters-sort__count li.active {
    color: #333333;
    cursor: default;
    text-decoration: none;
}

.filters-sort__count li:last-child {
   /*margin-left: 1rem;*/
}

.filters-sort .checkbox {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin-right: 1.5rem;
}

.filters-sort .checkbox input {
    border-color: #808d9a;
    transform: translateY(-0.15rem);
    margin-right: 0.3125rem;
}

@media (max-width: 991px) {
    .filters-sort {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .filters-sort .checkbox {
    }

    .filters-sort .filters-sort__count {
        display: none;
    }

    .filters-sort .filters-sort__count--select {
        margin-left: 0;
        margin-top: 0;
        display: none;
    }

    .filters-sort .filters-sort__count--select .select--small .select__main {
        font-size: 16px;
        padding: 8px 7px;
        padding-right: 7px;
        min-width: 2rem;
        background-color: #fff;
        color: #004989;
        text-decoration: underline;
    }

    .filters-sort .filters-sort__count--select .select--small .select__main:after {
        content: none;
    }

    .filters-sort .filters-sort__count--select .select__options {
        width: 400%;
        color: #333333;
    }

    .filters-sort .select--small .select__main {
        font-size: 16px;
        padding: 8px 20px;
        padding-right: 30px;
    }

    .filters-sort .filters-sort__btn {
        display: block;
        padding: 12px;
        border: 0;
        outline: 0;
        border-radius: 4px;
        background-color: #fff;
    }
}

@media (max-width: 767px) {
    .filters-sort .select--small .select__main {
        font-size: 12px;
        padding: 6px 15px;
        padding-right: 25px;
    }

    .filters-sort .filters-sort__btn {
        padding: 4px;
        width: 30px;
        height: 30px;
    }

    .filters-sort .filters-sort__btn svg {
        width: 14px;
        height: 12px;
    }
}

/* category */
.category .category__filter-wrap {
    position: sticky;
    top: 1rem;
    width: 230px;
    margin: 0 0.75rem;
    padding: 0.3125rem 0;
    background-color: #fff;
    border-radius: 0.875rem;
    max-height: 95vh;
    overflow: none;
}

.category .category__filter-wrap .filters {
    position: static;
    top: 0;
    width: auto;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background-color: #fff;
    max-height: 95vh;
    overflow-y: auto;
}

.category .category__filter-wrap .filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category .category__filter-wrap .filters__header h6{
    margin: 0;
}

.category .category__filter-wrap .filters__clear {
    cursor: pointer;
    transition: color 0.3s;
}

.category .category__filter-wrap .filters__clear:hover {
    color: #004989;
}

.category .category__filter-wrap .filters section {
    padding: 1.4375rem 1.25rem;
}

.category .category__filter-wrap .filters section:not(:last-child) {
    border-bottom: 1px solid;
    border-color: #eeeff3;
}

@media (max-width: 991.98px) {
    .category .category__filter-wrap .filters__wr {
        display: block;
        padding-bottom: 75px;
        padding-top: 66px;
    }
}

.category .category__filter-wrap .filters .filters-section {
    padding: 1.4375rem 1.25rem;
    overflow: hidden;
}


.category .category__filter-wrap .filters .filters-section:not(:last-child) {
    border-bottom: 1px solid;
    border-color: #eeeff3;
}

.category .category__filter-wrap .filters .filters-section > .filters-section__header {
    position: relative;
    cursor: pointer;
    padding-right: 10px;
}

.category .category__filter-wrap .filters .filters-section > .filters-section__header > h6 a,
.category .category__filter-wrap .filters .filters-section > .filters-section__header > h6 {
    margin-bottom: 0;
    display: inline-block;
    text-decoration: none;
    color: #333333;
}

.category .category__filter-wrap .filters .filters-section:not(.single-section) > .filters-section__header::after {
    content: "";
    display: block;
    position: absolute;
    top: 0.3rem;
    right: 0;
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.76117 0L5 3.61719L1.23883 0L0 1.19141L5 6L10 1.19141L8.76117 0Z' fill='%23808D9A'/%3E%3C/svg%3E%0A");
    transition: transform 0.25s;
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body {
    display: block;
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body .filters-item {
    position: relative;
    padding-left: 20px;
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body .filters-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.25rem;
    left: 0;
    width: 8px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' width='2' height='8' fill='%23808D9A'/%3E%3Crect x='8' y='3' width='2' height='8' transform='rotate(90 8 3)' fill='%23808D9A'/%3E%3C/svg%3E%0A");
    transition: transform 0.25s;
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body .filters-item a {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    color: #333333;
    text-decoration: none;
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body .filters-item.active::before {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' stroke='rgb(0, 73, 137)' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' width='2' height='8' fill='%23808D9A'/%3E%3Crect x='8' y='3' width='2' height='8' transform='rotate(90 8 3)' fill='%23808D9A'/%3E%3C/svg%3E%0A");
}

.category .category__filter-wrap .filters .filters-section--expanded > .filters-section__body .filters-item.active a {
    color: #004989;
}
.category .category__filter-wrap .filters .filters-section.filters-section--expanded > .filters-section__header h6{
    color: #004989;
}

.category .category__filter-wrap .filters .filters-section.filters-section--expanded > .filters-section__header::after {
    transform: rotateZ(-180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' stroke='rgb(0, 73, 137)' fill='' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.76117 0L5 3.61719L1.23883 0L0 1.19141L5 6L10 1.19141L8.76117 0Z' fill='%23808D9A'/%3E%3C/svg%3E%0A");
}

.category .category__filter-wrap .filters .filters-section.filters-section--expanded > .filters-section__header::before {
    content: "";
    display: block;
    position: absolute;
    top: -0.25rem;
    left: -20px;
    width: 2px;
    height: 24px;
    background-color: #004989;
}

.category .category__filter-wrap .filters .filters-section.filters-section--expanded > .filters-section__header {
    color: #004989;
}

.category .category__filter-wrap .filters .filters-section--expanded.filters-section--compact > .filters-section__header::after {
    transform: rotateZ(0deg);
}

.category .category__filter-wrap .filters .filters-section__body {
    display: none;
    padding-top: 1.25rem;
}

.category .category__filter-wrap .filters .filters-section h6 {
    position: relative;
    display: inline-block;
}

.category .category__filter-wrap .filters .filters-section__header-badge {
    position: absolute;
    top: calc(0.5em - 2.5px);
    left: -11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #eb5806;
}

.category .category__filter-wrap .filters .filters__accept-wrap {
    display: none;
}

@media (max-width: 991px) {
    .category .category__filter-wrap {
        display: none;
        position: fixed;
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        z-index: 99999;
        top: 0;
        background-color: rgba(0, 0, 0, 0.2);
        left: 0;
        margin: 0;
        border-radius: 0;
    }

    .category .category__filter-wrap--show {
        display: block;
    }

    .category .category__filter-wrap .filters {
        position: fixed;
        left: 0;
        width: 100vw;
        margin: 0;
        padding: 0;
        background-color: #fff;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }

    .category .category__filter-wrap .filters .filters__header {
        position: fixed;
        width: 100vw;
        background-color: #fff;
        z-index: 1;
    }

    .category .category__filter-wrap .filters .filters-section__body {
        padding-top: 1.25rem;
        max-height: 100vh;
        overflow-y: scroll;
    }

    .category .category__filter-wrap .filters .filters__accept-wrap {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100vw;
        left: 0;
        padding: 10px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    }

    .category .category__filter-wrap .filters .filters__close-btn {
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 10px;
        outline: none;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        background-color: #004989;
        color: #fff;
    }
}


/* not found */
.not-found-wrapper {
    display: flex;
    background: #fff;
    border-radius: 10px;
    padding: 48px !important;
}

.not-found-wrapper_text {
    display: flex;
    flex-direction: column;
}
.not-found-wrapper_text p {
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 140%;
    color: #333333;
}

.not-found-wrapper_text ul {
    padding-top: 40px;
}
.not-found-wrapper_text ul li {
}

.not-found-wrapper_image {
    background-image: url("notfound.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    width: 100%;
    max-width: 350px;
    height: 276px;
    align-self: center;
    margin-left: auto;
}

@media (max-width: 991px) {
    .not-found-wrapper {
        flex-direction: column;
        padding: 24px !important;
    }
    .not-found-wrapper_image {
        margin: 0;
    }
}

