:root {
    --filter-color-black: #1c1a17;
    --filter-color-light-gray: #f2efeb;
    --filter-color-light-gray-background: #faf8f5;
    --filter-color-gray: #8c8984;

    --filte-color-focus: #DA5947FF;
}
.store-filter {
    position: fixed;
    left: -100%;
    top: 0px;
    height: 100vh;
    width: 448px;

    display: flex;
    flex-direction: column;

    z-index: 5001;

    background-color: white;

    transition: 0.3s left;
}
.store-filter > .head,
.store-filter > .body {
    padding: 24px !important;
}

.store-filter.open {
    left: 0px;
}

@media screen and (max-width: 449px) {
    .store-filter {
        width: 100%;
    }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Block */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter.filter-block {
    position: fixed;
    width: 100%;
    height: 100%;

    z-index: 5000;

    pointer-events: none;
    background-color: #00000000;

    transition: 0.3s background-color;
}
.store-filter.filter-block.open {

    pointer-events: auto;
    background-color: #00000080;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Head */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter > .head {
    position: relative;
    border-bottom: 1px solid var(--filter-color-light-gray) !important;
}
.store-filter > .head > .title {
    margin: 0px;
    font-weight: 800;
    font-size: 1.1em;
    color: var(--filter-color-black);
}
.store-filter > .head .close {
    position: absolute;
    top: 22px;
    right: 22px;
    color: var(--filter-color-black);
    cursor: pointer;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Active filters */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter > .filters {
    display: block;

    background-color: var(--filter-color-light-gray-background);
    border-bottom: 1px solid var(--filter-color-light-gray) !important;

    padding-bottom: 16px;
}
.store-filter > .filters.hide { display: none; }

.store-filter > .filters > .head {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
}
.store-filter > .filters > .head > .filter-count {
    color: var(--filter-color-gray);
    cursor: default;
}
.store-filter > .filters > .head > .clear-all {
    cursor: pointer;
    font-weight: 500;

    transition: 0.2s color;
}
.store-filter > .filters > .head > .clear-all:hover {
    color: var(--filte-color-focus);
}

.store-filter > .filters > .body {
    padding: 0px 24px;
    display: flex;
    flex-wrap: wrap;
}

/* ~~~ Active Filter ~~~ */

.store-filter > .filters > .body > .active-filter {
    display: flex;
    align-items: center;
    background-color: var(--filter-color-light-gray);
    padding: 2px 0px;
    padding-left: 8px;
    margin-bottom: 14px;
    margin-right: 14px;
}
.store-filter > .filters > .body > .active-filter p {
    margin: 0px;
    padding-right: 5px;
    font-size: 0.85em;
    line-height: 0px;
    transform: translateY(1px);
}
.store-filter > .filters > .body > .active-filter .close {
    transform: scale(0.8);
    cursor: pointer;
    transition: 0.2s color;
}




/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Body */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter > .body {
    overflow-y: scroll;
}

/* ~~~ Filter Frame ~~~ */

.store-filter > .body > .filter-frame {
    margin-bottom: 24px;
}
.store-filter > .body > .filter-frame .title {
    font-weight: 600;
    color: var(--filter-color-gray);
    font-size: 0.85em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Body Filter Options */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~ Check ~~~ */

.store-filter > .body .filter-component.check-filter {}
.store-filter > .body .filter-component.check-filter .check-option {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
    cursor: pointer;
}
.store-filter > .body .filter-component.check-filter .check-option .check-frame {
    width: 21px; height: 21px;
    border: 1px solid var(--filter-color-gray);
    border-radius: 3px;
    margin-right: 6px;

    display: flex;
    justify-content: center;
    align-items: center;

    transition:
            0.2s background-color,
            0.2s border;
}

.store-filter > .body .filter-component.check-filter .check-option.selected .check-frame {
    background-color: var(--filter-color-black);
    border: 1px solid var(--filter-color-black);
}

.store-filter > .body .filter-component.check-filter .check-option .check-frame > i {
    color: white;
    transform: scale(0.7);
}
.store-filter > .body .filter-component.check-filter .check-option .name {
    margin: 0px;
    font-size: 0.85em;
    transform: translateY(2px);
}

/* ~~~ Check ~~~ */

.store-filter > .body .filter-component.range-filter {}
.store-filter > .body .filter-component.range-filter > input {
    width: 100%;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Category NAV */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter > .body .category-map {
    display: flex;
    flex-wrap: wrap;
}
.store-filter > .body .category-map a {
    width: auto;

}
.store-filter > .body .category-map a:hover {
    color: #424242 !important;
    color: #fdfdfd !important;
    background-color: #1c1a17;
    text-decoration: none !important;
}

.store-filter > .body .category-map .upper i {
    transform: scaleX(-1);
    width: 20px;
    margin-right: 10px;
}
.store-filter > .body .category-map .lower {
    padding: 5px 10px;
    border: 1px solid #1c1a17;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.8em;
    font-weight: 400;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* Apply */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

.store-filter > .apply {
    padding: 24px 24px;
}
.store-filter > .apply button {
    padding: 16px 16px;
    background-color: var(--filter-color-black);
    color: white;
    border-radius: 5px;
    width: 100%;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85em;
}
.store-filter > .apply button:hover {
    background-color: #000000;
}