@keyframes scroll-down {
    0% {
        transform: translate(-50%)
    }

    70%,
    90% {
        transform: translate(-50%, 100%)
    }

    to {
        transform: translate(-50%)
    }
}

@keyframes link-line {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes animation-stars {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-2000px)
    }
}

@keyframes shake {
    0% {
        transform: translate(3px)
    }

    50% {
        transform: translate(-3px)
    }

    to {
        transform: translate(0)
    }
}

@keyframes size-1 {
    0% {
        font-size: 14px
    }

    to {
        font-size: 12px
    }
}

body {
    font-size: 15px;
    margin: 0;
    padding: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0 0 15px;
    padding: 0
}

h1 {
    font-size: 25px
}

h2 {
    font-size: 23px
}

h3 {
    font-size: 19px
}

h4,
h5,
h6 {
    font-size: 16px
}

b,
strong {
    font-weight: 700
}

.em-line {
    color: var(--site-color);
    font-size: 21px;
    margin: 0 0 25px;
    position: relative;
    text-align: center
}

.em-line:before {
    background-color: var(--site-color);
    bottom: -10px;
    content: "";
    height: 3px;
    left: calc(50% - 17.5px);
    position: absolute;
    width: 35px
}

.em-line-rgb {
    color: #fff;
    margin: 0 0 25px;
    position: relative;
    text-align: center
}

.em-line-rgb:before {
    background-color: #fff;
    bottom: -10px;
    content: "";
    height: 3px;
    left: calc(50% - 17.5px);
    position: absolute;
    width: 35px
}

.em-line-left {
    color: var(--site-color);
    margin: 0 0 25px;
    position: relative
}

.em-line-left:before {
    background-color: var(--site-color);
    bottom: -11px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 35px
}

@media screen and (max-width:1024px) {
    .em-line-left {
        text-align: center
    }

    .em-line-left:before {
        left: calc(50% - 17.5px)
    }
}

.em-line-right {
    color: var(--site-color);
    font-size: 21px;
    margin: 0 0 25px;
    position: relative;
    text-align: right
}

.em-line-right:before {
    background-color: var(--site-color);
    bottom: -10px;
    content: "";
    height: 3px;
    position: absolute;
    right: 0;
    width: 35px
}

@media screen and (max-width:1024px) {
    .em-line-right {
        text-align: center
    }

    .em-line-right:before {
        right: calc(50% - 17.5px)
    }
}

.em-bottom-line {
    margin: 0 0 30px;
    position: relative;
    text-align: center
}

.em-bottom-line:before {
    background-color: var(--site-color);
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line p {
    color: var(--site-color);
    font-size: 23px !important;
    margin: 0;
    position: relative;
    z-index: 2 !important
}

.em-bottom-line:after {
    background-color: #fff;
    bottom: -23px;
    color: var(--site-color);
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line+p {
    position: relative;
    z-index: 15
}

.em-bottom-line-rgb {
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    z-index: 10
}

.em-bottom-line-rgb:before {
    background-color: #fff;
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line-rgb:after {
    background-color: var(--site-color);
    bottom: -23px;
    color: #fff;
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line-rgb+p {
    position: relative;
    z-index: 15
}

.em-bottom-line-grey {
    margin: 0 0 30px;
    position: relative;
    text-align: center
}

.em-bottom-line-grey:before {
    background-color: var(--site-color);
    bottom: -15px;
    content: "";
    height: 3px;
    left: calc(50% - 65px);
    position: absolute;
    width: 130px;
    z-index: -2
}

.em-bottom-line-grey:after {
    background: #f5f5f5;
    bottom: -22px;
    color: var(--site-color);
    content: "\f078";
    font-family: Font Awesome\ 5 Pro;
    font-size: 17px;
    font-weight: 900;
    left: calc(50% - 15.35px);
    padding: 0 7.5px;
    position: absolute;
    z-index: -1
}

.em-bottom-line-grey+p {
    position: relative;
    z-index: 15
}

.em-default-button-area {
    align-items: center;
    border: 3px solid rgba(0, 0, 0, .07);
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
    overflow: hidden;
    position: relative
}

@media screen and (max-width:786px) {
    .em-default-button-area {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        flex-direction: column;
        margin-top: 30px;
        width: 100%
    }
}

.em-default-button-area .em-double-buttons {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 14px !important;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    line-height: normal;
    outline: none !important;
    padding: 18px 21px;
    text-align: center;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    width: 100%
}

@media screen and (max-width:768px) {
    .em-default-button-area .em-double-buttons {
        height: auto
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) and (display:flow-root) {
        .em-default-button-area .em-double-buttons {
            height: auto
        }
    }
}

@media not all and (min-resolution:0.001dpcm) {
    @supports (-webkit-appearance:none) {
        .em-default-button-area .em-double-buttons {
            height: auto
        }
    }
}

.em-default-button-area .em-double-buttons i {
    margin-right: 7px
}

.em-default-button-area .em-default-b-left {
    background: #f5f5f5;
    border-right: 2px solid rgba(0, 0, 0, .07);
    color: var(--site-color)
}

.em-default-button-area .em-default-b-left i {
    font-size: 25px
}

.em-default-button-area .em-default-b-left:hover {
    background-color: var(--site-color) !important;
    color: #fff !important
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-b-left {
        border-bottom: 2px solid rgba(0, 0, 0, .07);
        border-right: none;
        width: 100%
    }
}

.em-default-button-area .em-default-b-right {
    background: #f5f5f5;
    border-left: 2px solid rgba(0, 0, 0, .07);
    color: #e4405f
}

.em-default-button-area .em-default-b-right i {
    font-size: 25px
}

.em-default-button-area .em-default-b-right:hover {
    background-color: #e4405f !important;
    color: #fff !important
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-b-right {
        border-left: none;
        width: 100%
    }
}

.em-default-button-area .em-default-circle {
    align-items: center;
    background: #d9d7dc;
    border: 2px solid #d9d7dc;
    border-radius: 50%;
    display: flex;
    font-size: 14px;
    height: 29px;
    justify-content: center;
    left: calc(50% - 15px);
    margin: 0;
    padding: 0 8px;
    position: absolute;
    width: 29px;
    z-index: 2
}

@media screen and (max-width:786px) {
    .em-default-button-area .em-default-circle {
        display: none
    }
}

.grey .em-bottom-line:before {
    z-index: 0
}

.grey .em-bottom-line:after {
    background-color: #f5f5f5;
    z-index: 1
}

a {
    color: var(--site-color);
    text-decoration: none;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out
}

a:active,
a:focus,
a:hover {
    color: #000;
    text-decoration: none
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(../images/sort-down-duotone.svg);
    background-position: calc(100% - 15px) 54%;
    background-repeat: no-repeat;
    background-size: 13px;
    height: auto !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important
}

.gray-transparent {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    opacity: .5
}

.transparent {
    opacity: .5
}

span.notification {
    background-color: #dc3545;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    color: #fff;
    font-size: 9px;
    height: 16px;
    line-height: 16px;
    position: absolute;
    right: 7px;
    text-align: center;
    top: 15px;
    width: 16px
}

span.answer,
span.blog,
span.deleted,
span.drafted,
span.new,
span.page,
span.planned,
span.product,
span.published,
span.question,
span.stars,
span.status,
span.warning {
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    color: #fff;
    font-size: 11px;
    margin: 0 0 0 5px;
    padding: 4px 8px
}

span.warning {
    background-color: var(--error)
}

span.new {
    background-color: var(--eceo-color-1)
}

span.published {
    background-color: var(--success)
}

span.deleted {
    background-color: var(--error)
}

span.planned {
    background-color: var(--info)
}

span.drafted,
span.page {
    background-color: var(--warning)
}

span.blog {
    background-color: var(--site-color)
}

span.stars {
    background-color: var(--dark)
}

span.product {
    background-color: var(--warning)
}

span.answer,
span.question {
    background-color: #58a9fb
}

.button {
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    outline: none !important;
    padding: 9px 17px 8px 19px;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out
}

.button,
.button:hover {
    background-color: var(--site-color);
    color: #fff !important
}

.button:hover {
    box-shadow: 0 0 0 .2rem var(--site-color-transparent-25)
}

.button:active,
.button:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--site-color-transparent-25)
}

.passive-button {
    opacity: .5;
    pointer-events: none
}

.b-error,
.b-error:hover {
    background-color: var(--error) !important
}

.b-error:hover {
    box-shadow: 0 0 0 .2rem var(--error-shadow) !important
}

.b-error:active,
.b-error:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--error-shadow) !important
}

.b-warning,
.b-warning:hover {
    background-color: var(--warning) !important
}

.b-warning:hover {
    box-shadow: 0 0 0 .2rem var(--warning-shadow) !important
}

.b-warning:active,
.b-warning:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--warning-shadow) !important
}

.b-info,
.b-info:hover {
    background-color: var(--info) !important
}

.b-info:hover {
    box-shadow: 0 0 0 .2rem var(--info-shadow) !important
}

.b-info:active,
.b-info:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--info-shadow) !important
}

.b-success,
.b-success:hover {
    background-color: var(--success) !important
}

.b-success:hover {
    box-shadow: 0 0 0 .2rem var(--success-shadow) !important
}

.b-success:active,
.b-success:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--success-shadow) !important
}

.b-dark,
.b-dark:hover {
    background-color: var(--dark) !important
}

.b-dark:hover {
    box-shadow: 0 0 0 .2rem var(--dark-shadow) !important
}

.b-dark:active,
.b-dark:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--dark-shadow) !important
}

.b-green,
.b-green:hover {
    background-color: var(--success) !important
}

.b-green:hover {
    box-shadow: 0 0 0 .2rem var(--success-shadow) !important
}

.b-green:active,
.b-green:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--success-shadow) !important
}

.b-grey,
.b-grey:hover {
    background-color: #aaa !important
}

.b-grey:hover {
    box-shadow: 0 0 0 .2rem #ddd !important
}

.b-grey:active,
.b-grey:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem #ddd !important
}

.b-blue,
.b-blue:hover {
    background-color: #0071e3 !important
}

.b-blue:hover {
    box-shadow: 0 0 0 .2rem rgba(0, 113, 227, .3) !important
}

.b-blue:active,
.b-blue:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem rgba(0, 113, 227, .3) !important
}

.b-white {
    color: var(--site-color) !important
}

.b-white,
.b-white:hover {
    background-color: var(--white) !important
}

.b-white:hover {
    box-shadow: 0 0 0 .2rem var(--white-shadow) !important;
    color: #000 !important
}

.b-white:active,
.b-white:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--white-shadow) !important
}

.b-solid {
    background-color: transparent !important;
    border: 2px solid var(--site-color) !important;
    color: var(--site-color) !important
}

.b-solid:hover {
    background-color: var(--site-color) !important;
    color: #fff !important
}

.b-solid-white {
    background-color: transparent !important;
    border: 2px solid #fff !important;
    color: #fff !important
}

.b-solid-white:hover {
    background-color: #fff !important;
    color: var(--site-color) !important
}

.b-panel,
.b-panel:hover {
    background-color: var(--eceo-color-1)
}

.b-panel:hover {
    box-shadow: 0 0 0 .2rem var(--eceo-color-1-active-shadow)
}

.b-panel:active,
.b-panel:focus {
    box-shadow: inset 0 0 1000px rgba(0, 0, 0, .15), 0 0 0 .2rem var(--eceo-color-1-active-shadow)
}

.round-0 {
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important
}

.round-5 {
    border-radius: 5px !important;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    -ms-border-radius: 5px !important
}

.round-10 {
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important
}

.round-15 {
    border-radius: 15px !important;
    -webkit-border-radius: 15px !important;
    -moz-border-radius: 15px !important;
    -ms-border-radius: 15px !important
}

.round-20 {
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important
}

.rounded {
    border-radius: 40px !important;
    -webkit-border-radius: 40px !important;
    -moz-border-radius: 40px !important;
    -ms-border-radius: 40px !important
}

.b-xxs {
    font-size: 11px !important;
    padding: 6px 13px !important
}

.b-xs {
    font-size: 12px !important;
    min-height: 35px;
    padding: 7px 14px !important
}

.b-sm {
    font-size: 13px !important;
    padding: 8px 16px 8px 17px !important
}

.b-lg {
    font-size: 15px !important;
    padding: 10px 19px !important
}

.b-xl {
    font-size: 16px !important;
    padding: 11px 22px !important
}

.b-xxl {
    font-size: 17px !important;
    padding: 12px 23px !important
}

.e-loading {
    background: url(../images/loading.svg) no-repeat 50% hsla(0, 0%, 100%, .75);
    background-size: 75px;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999
}

.e-no-page {
    background-color: #fff;
    height: 100vh;
    position: fixed;
    width: 100vw;
    z-index: 9998
}

.sy-popup {
    align-items: center;
    display: none;
    justify-content: center;
    z-index: 999
}

.sy-popup,
.sy-popup .syp-background {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw
}

.sy-popup .syp-background {
    background-color: rgba(0, 0, 0, .75)
}

.sy-popup .syp-content {
    height: 64%;
    position: relative;
    width: 55%;
    z-index: 6
}

.sy-popup .syp-content .sypc-close {
    align-items: center;
    background-color: #000;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    height: 25px;
    justify-content: center;
    padding: 0 0 1px 1px;
    position: absolute;
    right: -12.5px;
    top: -12.5px;
    width: 25px
}

.sy-popup .syp-content.youtube iframe {
    height: 100% !important;
    width: 100% !important
}

@media screen and (max-width:768px) {
    .sy-popup .syp-content {
        height: 29%;
        width: 90%
    }
}

#archive #child-categories {
    margin-bottom: -60px;
    margin-top: 75px
}

@media screen and (max-width:1024px) {
    #archive #child-categories {
        margin-bottom: -15px;
        margin-top: 30px
    }
}

#archive #child-categories .category a {
    align-items: center;
    background-position: 50% !important;
    background-size: cover !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    color: #fff;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    height: calc(100% - 15px);
    margin: 0 0 30px;
    min-height: 125px;
    padding: 20px 60px 20px 20px;
    position: relative;
    z-index: 899
}

#archive #child-categories .category a span.count {
    align-items: center;
    background-color: var(--site-color);
    border: 3px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    color: #fff;
    display: flex;
    font-size: 11px;
    height: 30px;
    justify-content: center;
    padding: 1px 0 0 1px;
    position: absolute;
    right: -15px;
    width: 60px;
    z-index: 902
}

#archive #child-categories .category a p {
    margin: 0;
    z-index: 901
}

#archive #child-categories .category a:before {
    background-image: linear-gradient(270deg, transparent 0, #000);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .3s ease-in-out;
    -webkit-transition: width .3s ease-in-out;
    -moz-transition: width .3s ease-in-out;
    width: 100%;
    z-index: 900
}

#archive #child-categories .category a:hover:before {
    width: 70%
}

#archive #child-categories .category.folder a:before {
    background-image: linear-gradient(270deg, transparent 0, #000)
}

#archive #child-categories .category.folder a:hover:before {
    width: 70%
}

#archive #child-categories .category.folder span.count {
    text-align: center;
    width: 87px
}

#archive #product-category {
    padding-bottom: 30px;
    padding-top: 30px
}

#archive #product-category .pc-breadcumb {
    align-items: center;
    display: flex;
    font-size: 13px;
    margin-bottom: 20px
}

#archive #product-category .pc-breadcumb span {
    color: #aaa;
    font-size: 9px;
    margin: 0 10px
}

#archive #product-category .pc-breadcumb p {
    color: #aaa;
    margin: 0
}

#archive #product-category .pc-filters {
    display: none
}

@media screen and (max-width:992px) {
    #archive #product-category .pc-filters {
        align-items: center;
        background: var(--site-color);
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        display: flex;
        font-weight: 600;
        gap: 6px;
        justify-content: center;
        margin: 0 0 15px;
        padding: 10px 15px
    }
}

#archive #product-category .pc-sidebar {
    border: 1px solid #eee;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px
}

@media screen and (max-width:1024px) {
    #archive #product-category .pc-sidebar {
        margin-bottom: 15px
    }
}

@media screen and (max-width:992px) {
    #archive #product-category .pc-sidebar {
        display: none
    }
}

#archive #product-category .pc-sidebar .pcs {
    border-bottom: 1px solid #eee;
    padding: 15px;
    position: relative;
    width: 100%
}

#archive #product-category .pc-sidebar .pcs h3 {
    font-size: 17px
}

#archive #product-category .pc-sidebar .pcs .pcsp-content {
    max-height: 250px;
    overflow: auto
}

#archive #product-category .pc-sidebar .pcs:last-child {
    border-bottom: none
}

#archive #product-category .pc-sidebar .pcs-categories ul {
    display: none;
    margin: 0;
    padding-left: 18px
}

#archive #product-category .pc-sidebar .pcs-categories ul.active {
    display: block
}

#archive #product-category .pc-sidebar .pcs-categories ul span {
    display: flex;
    flex: 1;
    justify-content: space-between
}

#archive #product-category .pc-sidebar .pcs-categories ul span i {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    font-size: 11px;
    height: 17px;
    justify-content: center;
    width: 17px
}

#archive #product-category .pc-sidebar .pcs-categories ul li {
    list-style: square;
    padding-left: 0
}

#archive #product-category .pc-sidebar .pcs-categories ul li a {
    color: #000
}

#archive #product-category .pc-sidebar .pcs-categories ul li a.active,
#archive #product-category .pc-sidebar .pcs-categories ul li a:hover {
    color: var(--site-color)
}

#archive #product-category .pc-sidebar .pcs-price h3 {
    align-items: center;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    margin: 0
}

#archive #product-category .pc-sidebar .pcs-price h3 p {
    margin: 0
}

#archive #product-category .pc-sidebar .pcs-price h3 i {
    font-size: 14px
}

#archive #product-category .pc-sidebar .pcs-price .pcsp-content {
    margin-top: 15px
}

#archive #product-category .pc-sidebar .pcs-price .multi-range,
#archive #product-category .pc-sidebar .pcs-price .multi-range * {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

#archive #product-category .pc-sidebar .pcs-price .multi-range {
    height: 30px;
    margin: 0 0 25px;
    position: relative;
    width: 100%
}

#archive #product-category .pc-sidebar .pcs-price .multi-range:after {
    content: "Fiyat: " attr(data-minprice) " " attr(data-priceunit) " - " attr(data-maxprice) " " attr(data-priceunit);
    display: block;
    font-size: 13px;
    left: 0;
    line-height: 26px;
    margin: -1px 2px;
    position: absolute;
    top: 100%;
    white-space: nowrap;
    width: auto
}

#archive #product-category .pc-sidebar .pcs-price .multi-range hr {
    border: 3px solid #eee;
    border-radius: 50px;
    position: absolute;
    top: calc(50% - 4px);
    width: 100%
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range] {
    bottom: 6px;
    left: 0;
    position: absolute;
    width: calc(100% - 16px)
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]:last-of-type {
    margin-left: 16px
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-webkit-slider-thumb {
    transform: translateY(-18px)
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 0
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-moz-range-thumb {
    transform: translateY(-18px)
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    height: 0
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-ms-thumb {
    transform: translateY(-18px)
}

#archive #product-category .pc-sidebar .pcs-price .multi-range>input[type=range]::-ms-track {
    -webkit-appearance: none;
    height: 0
}

#archive #product-category .pc-products .pcp-search {
    margin-bottom: 30px
}

#archive #product-category .pc-products .pcp-filters {
    display: flex;
    margin-bottom: 30px
}

#archive #product-category .pc-products .pcp-filters .pcpf-content {
    border-radius: 10px;
    display: flex;
    flex: 1;
    justify-content: space-between;
    overflow: hidden
}

#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter {
    align-items: center;
    background-color: #eee;
    display: flex;
    flex: 1;
    font-size: 12px;
    justify-content: center;
    padding: 10px 0;
    text-align: center
}

#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter i {
    margin-right: 7px
}

#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter span.first {
    display: inline-block
}

#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter span.last {
    display: none
}

@media screen and (max-width:992px) {
    #archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter span.first {
        display: none
    }

    #archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter span.last {
        display: inline-block
    }
}

#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter.active,
#archive #product-category .pc-products .pcp-filters .pcpf-content a.pcpfc-filter:hover {
    background-color: var(--site-color);
    color: #fff
}

#archive #product-category .pc-products .pcp-banner {
    margin-bottom: 30px
}

#archive #product-category .pc-products .pcp-banner a {
    display: flex
}

#archive #product-category .pc-products .pcp-banner img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%
}

#archive #product-category .pc-products .pcp-product {
    margin-bottom: 30px
}

@media screen and (max-width:1024px) {
    #archive #product-category .pc-products .pcp-product {
        margin-bottom: 15px
    }
}

#archive #product-category .pc-products .pcp-product .pcpp-image {
    border: 1px solid #eee;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    display: flex;
    margin-bottom: 7px;
    overflow: hidden;
    position: relative
}

#archive #product-category .pc-products .pcp-product .pcpp-image a {
    display: flex;
    flex: 1;
    position: relative
}

#archive #product-category .pc-products .pcp-product .pcpp-image a:after {
    background-color: rgba(0, 0, 0, .075);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .3s ease-in-out;
    -webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    width: 100%;
    z-index: 15
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 11px;
    left: 15px;
    position: absolute;
    top: 15px;
    z-index: 16
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not .pcppin-discount,
#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not .pcppin-filter,
#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not .pcppin-new {
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    display: inline-flex;
    flex: none;
    margin-bottom: 5px;
    max-width: -moz-max-content;
    max-width: max-content;
    padding: 4px 8px 3px;
    width: auto
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not .pcppin-discount {
    background: #e27c7c
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-not .pcppin-new {
    background: #62b959
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-go {
    align-items: center;
    background-color: #fff;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    color: #000;
    display: flex;
    height: 32px;
    justify-content: center;
    opacity: 0;
    position: absolute;
    right: 15px;
    top: 15px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    width: 32px;
    z-index: 16
}

#archive #product-category .pc-products .pcp-product .pcpp-image a .pcppi-go:hover {
    background-color: var(--site-color);
    color: #fff
}

#archive #product-category .pc-products .pcp-product .pcpp-image a img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    height: 181px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    padding: 2px;
    width: 100%
}

@media screen and (max-width:992px) {
    #archive #product-category .pc-products .pcp-product .pcpp-image a img {
        height: 225px
    }
}

@media screen and (max-width:768px) {
    #archive #product-category .pc-products .pcp-product .pcpp-image a img {
        height: 250px
    }
}

@media screen and (max-width:575px) {
    #archive #product-category .pc-products .pcp-product .pcpp-image a img {
        height: 275px
    }
}

#archive #product-category .pc-products .pcp-product .pcpp-image .pcppi-view {
    align-items: center;
    background-color: var(--site-color-transparent-80);
    border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -moz-border-radius: 0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    bottom: 0;
    color: #fff;
    display: flex;
    font-size: 13px;
    font-weight: 600;
    height: 0;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    width: 100%
}

#archive #product-category .pc-products .pcp-product .pcpp-categories {
    color: #aaa;
    font-size: 11px
}

#archive #product-category .pc-products .pcp-product .pcpp-categories a {
    color: #aaa
}

#archive #product-category .pc-products .pcp-product .pcpp-categories a:hover {
    color: #555
}

#archive #product-category .pc-products .pcp-product .pcpp-title {
    line-height: 19px
}

#archive #product-category .pc-products .pcp-product .pcpp-title a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 2px
}

#archive #product-category .pc-products .pcp-product .pcpp-stars {
    color: #f5b802;
    font-size: 12px;
    margin: 2px 0 -2px
}

#archive #product-category .pc-products .pcp-product .pcpp-price {
    display: flex;
    flex-direction: column;
    justify-content: center
}

#archive #product-category .pc-products .pcp-product .pcpp-price .pcpp-no-discount {
    color: #aaa;
    font-size: 13px;
    margin-bottom: -2px;
    text-decoration: line-through
}

#archive #product-category .pc-products .pcp-product .pcpp-price .pcpp-price {
    font-size: 18px;
    font-weight: 700
}

#archive #product-category .pc-products .pcp-product:hover .pcpp-image {
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, .1);
    -webkit-box-shadow: 0 25px 35px -5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 25px 35px -5px rgba(0, 0, 0, .1)
}

#archive #product-category .pc-products .pcp-product:hover .pcpp-image a .pcppi-go,
#archive #product-category .pc-products .pcp-product:hover .pcpp-image a:after {
    opacity: 1
}

#archive #product-category .pc-products .pcp-product:hover .pcpp-image .pcppi-view {
    height: 37px;
    opacity: 1
}

#archive #product-category .pc-products .pcp-product:hover .pcpp-title a {
    color: var(--site-color)
}

#archive #product-category .pc-text {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
    z-index: 15
}

#archive #product-category .pc-read-more {
    align-items: center;
    display: none;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 16
}

#archive #product-category .pc-read-more .pcrm-shadow {
    background: #fff;
    background: linear-gradient(0deg, #fff, hsla(0, 0%, 100%, 0));
    display: flex;
    height: 100px;
    position: absolute;
    top: -140px;
    width: 100%;
    z-index: 17
}

#archive #product-category .pc-read-more .pcrm-line {
    background-color: #eee;
    height: 2px;
    width: 100%;
    z-index: 18
}

#archive #product-category .pc-read-more .pcrm-button {
    border-left: 15px solid #fff;
    border-right: 15px solid #fff;
    display: inline-flex;
    position: absolute;
    z-index: 19
}

#archive #sidebar {
    margin: 75px 0
}

@media screen and (max-width:1024px) {
    #archive #sidebar {
        margin: 0 0 30px
    }
}