[_dev-template] .container h3 {
    margin: 50px 0 40px 0;
    font-size: 25px;
    color: #000;
    text-align: center;
    font-weight: normal;
    line-height: 1;
}
[_dev-template] #listResult {
    display: flex;
    align-items: center;
    max-width: 1320px;
    margin: 10px auto;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
    background: var(--color-back);
}
[_dev-template] #listResult span {
    margin-left: 5px;
    color: var(--color-sub);
}
[_dev-template] .filterTab {
    position: sticky;
    top: 56px;
    z-index: 5;
    padding: 12px 7.5px;
    background: #fff;
}
@media (min-width:1060px) {
    [_dev-template] .filterTab {
        top: 80px;
    }
}
[_dev-template] .filterTab-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 10px;
}
[_dev-template] .filterTab-item {
    position: relative;
}
[_dev-template] .filterTab-item .filterTab-selectBtn {
    height: 40px;
    padding: 0 15px 0 16px;
    border-radius: 20px;
    border: 1px solid #ddd;
    padding-right: 30px;
    background: url(/pages/header/images/icon--arrow-down.svg) no-repeat center right 10px / 15px;
}
[_dev-template] .filterTab-item .filterTab-selectBtn.-active {
    border: 1px solid var(--color-main);
    background: url(/pages/header/images/icon--arrow-up.svg) no-repeat center right 10px / 15px;
}
[_dev-template] .filterTab-item .filterTab-selectBox {
    display: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    width: 300px;
    height: 350px;
    padding: 20px 0;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .08);
}
[_dev-template] .filterTab-item .-active ~ .filterTab-selectBox {
    display: block;
}
@media (max-width:1060px) {
    [_dev-template] .filterTab-item .-active ~ .filterTab-selectBox {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        top: auto;
        width: 100%;
        min-height: 500px;
        max-height: 500px;
        border-radius: 12px 12px 0px 0px;
        padding: 50px 20px 20px;
    }
}
[_dev-template] .filterTab-selectBoxClose {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background: url(/pages/header/images/icon--close.svg) no-repeat center / 100%;
}
[_dev-template] .filterTab-selectBoxInner {
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0 20px;
}
[_dev-template] .filterTab-selectBoxInner::-webkit-scrollbar {
    width: 5px;
    height: 3px;
}

[_dev-template] .filterTab-selectBoxInner::-webkit-scrollbar-thumb {
    background: #eee; /* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
}
[_dev-template] .filterTab-selectBoxInner::-webkit-scrollbar-track {
    /*background: #eeeeee2b;*/  /*스크롤바 뒷 배경 색상*/
}

[_dev-template] .filterTab-selectBoxInner dl + dl {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgb(238, 238, 238);
}
[_dev-template] .filterTab-selectBoxInner dl dt {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}
[_dev-template] .filterTab-selectBoxInner dl dd {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}
[_dev-template] .filterTab-selectBoxInner dl dd input[type="checkbox"] {
    position: absolute;
    width: 0px;
    height: 0px;
    visibility: hidden;
}
[_dev-template] .filterTab-selectBoxInner dl dd label {
    display: block;
    width: 50%;
    font-size: 13px;
    font-weight: 500;
    color: rgb(85, 85, 85);
}
[_dev-template] .filterTab-selectBoxInner dl dd label::before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 8px;
    text-align: center;
    line-height: 16px;
    border-radius: 4px;
    border: 1px solid #eee;
}
[_dev-template] .filterTab-selectBoxInner dl dd input:checked + label::before {
    content: url(/pages/header/images/ico-checkbox.svg);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border: 1px solid #eee;
    background: var(--color-main);
}
[_dev-template] .filterTab-selectedOption {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 15px;
    padding: 10px 120px 10px 10px;
    border-radius: 10px;
    background: var(--color-back);
}
[_dev-template] .filterTab-selectedOption.-active {
    display: block;
}
[_dev-template] .filterTab-selectedOption .option_area {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1060px) {
    [_dev-template] .filterTab-selectedOption .option_area {
        overflow-x: scroll;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
}
[_dev-template] .filterTab-selectedOption .option_area span {
    min-width: fit-content;
    font-size: 10px;
    font-weight: 600;
    color: rgb(102, 102, 102);
    margin: 6px 10px;
    text-decoration: underline;
    cursor: pointer;
    background: url(/pages/header/images/icon--close.svg) no-repeat center right 3px / 10px;
    padding-right: 15px;
}
[_dev-template] .filterTab-selectedOption .reset {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(17, 17, 17);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1060px) {
    [_dev-template] .filterTab-selectedOption .reset {
        top: 50%;
        transform: translateY(-50%);
    }
}
[_dev-template] .filterTab-selectedOption .reset svg {
    width: 12px;
    height: 12px;
}




[_dev-template] .filterTab-searching {
    display: none;
    width: 100%;
    padding: 100px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #333;
}
[_dev-template] .filterTab-searching.-active {
    display: block;
}
[_dev-template] .filterTab-loader {
    position: relative;
    margin: 0px auto 20px;
    width: 65px;
    height: 65px;
}
[_dev-template] .filterTab-loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}
@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}
[_dev-template] .filterTab-circularloader {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
[_dev-template] .filterTab-loader-path {
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}


[_dev-template] .design-list {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 0;
    gap: 20px;
}
[_dev-template] .design-item {
    overflow: hidden;
    isolation: isolate /* ios */;
    position: relative;
    width: calc((100% / 2) - 10px);
    border-radius: 12px;
    border: 1px solid #e1e1e1;
}
@media (min-width:1060px) {
    [_dev-template] .design-item {
        width: calc((100% / 4) - 15px);
    }
}



[_dev-template] .design-area {

}
[_dev-template] .design-item:hover {
    box-shadow: 0 0 10px #0000001a;
}
[_dev-template] .design-item .img {
    overflow: hidden;
    display: block;
    position: relative;
    height: 160px;
}
@media (min-width:1060px) {
    [_dev-template] .design-item .img {
        height: 230px;
    }
}
[_dev-template] .design-item a {
    font-size: 14px;
    font-weight: 500;
    color: #999;
}
[_dev-template] .design-item .img .mask {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    transition: all .25s;
}
[_dev-template] .design-item:hover .img .mask {
    opacity: 1;
}
[_dev-template] .design-item .img svg {
    width: 15px;
    height: 15px;
    color: #fff;
    transition: all .15s;
}
[_dev-template] .design-item:hover .img svg {
    width: 30px;
    height: 30px;
}
[_dev-template] .design-item .img span {
    display: block;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    height: 16px;
    padding: 0 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    line-height: 16px;
    background: var(--color-sub);
}
[_dev-template] .design-item .img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: object-position 1s cubic-bezier(0.5, 1, 0.89, 1);
}
[_dev-template] .design-item:hover .img img {
    object-position: bottom;
}
[_dev-template] .design-item .btns {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 5px;
}
[_dev-template] .design-item .btns a, [_dev-template] .design-item .btns button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 25px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}
@media (min-width:1060px) {
    [_dev-template] .design-item .btns a, [_dev-template] .design-item .btns button {
        font-size: 13px;
        height: 35px;
    }
}
[_dev-template] .design-item .btns a.dft_btn {
    margin-left: 4px;
    color: #fff;
    background: #aaa;
    border: none;
}
[_dev-template] .design-item .info {
    display: block;
    padding: 0 15px 20px;
    line-height: 1.6;
}
[_dev-template] .design-item .info .code {
    font-size: 12px;
    font-weight: 700;
    color: #111;
}
@media (min-width:1060px) {
    [_dev-template] .design-item .info .code {
        font-size: 13px;
    }
}
[_dev-template] .design-item .info .desc {
    font-size: 10px;
    font-weight: 500;
    color: #aaa;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
}
@media (min-width:1060px) {
    [_dev-template] .design-item .info .desc {
        font-size: 12px;
    }
}
[_dev-template] .design-item .info .price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
}
[_dev-template] .design-item .info .price p {
    font-size: 12px;
    font-weight: 700;
    color: #111;
}
@media (min-width:1060px) {
    [_dev-template] .design-item .info .price p {
        font-size: 15px;
    }
}
[_dev-template] .design-item .info .hit {
    font-size: 12px;
    font-weight: 500;
    color: #aaa;
    text-align: right;
}