

.kt-hero {
    max-width: 1920px;
    margin: 0 auto;
    height: 100%;
}

.kt-hero-item {
    position: relative;
}

.kt-hero-item-image {
    height: 200px;
    width: 100%;
    background-color: rgb(243, 243, 243);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
/*    background-image: url(/img/kt-media/slider/business-card-main.jpg);*/
    position: absolute;
}

.kt-hero-title-container {
    height: 200px;
    position: relative;
    max-width: 1680px;
    padding-left: 36px;
    padding-right: 36px;
    margin: 24px auto;
    overflow: visible;
    margin-bottom: 0;
}

.kt-hero-title {
    width: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    .kt-hero-title h1 {
        color: rgb(255, 255, 255);
        text-align: left;
        font-size: 36px;
        font-family: 'CepteFont', 'Volte', Arial, sans-serif;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .kt-hero-title p {
        color: rgb(255, 255, 255);
        text-align: left;
        font-size: 18px;
    }

.kt-content-container {
    max-width: 1680px;
    position: relative;
    margin: 24px auto;
    margin-top:0;
    overflow: visible;
    padding-left: 36px;
    padding-right: 36px;
}

.kt-content-item {
    display: flex;
    flex-direction: row;
}

.kt-content-left {
    margin-top: 58px;
    font-size: 16px;
    flex: 1;
    margin-right: 10px;
}

.kt-filter-title {
    font-size: 18px;
    font-weight: 500;
}

.kt-filter-seperator {
    border-top: 1px dotted #bbbcbc;
    margin-top: 8px;
    margin-bottom: 18px;
}

.kt-filter-option-container {
    padding-bottom: 25px;
}




.kt-filter-option-line {
    position: relative;
    padding-bottom: 12px;
    font-size: 15px;
    display: block;
}

.kt-filter-input {
    z-index: 1;
    width: 100%;
    height: 24px;
    opacity: 0;
    clip: auto;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    box-sizing: border-box;
    padding: 0;
}

.kt-filter-option-line label {
    padding-left: 26px;
    padding-right: 24px;
    margin-bottom: 0;
    transition: color .3s;
    position: relative;
    display: flex;
    align-content:center;
}

    .kt-filter-option-line label:before, .kt-filter-option-line label:after {
        content: "";
        display: block;
        position: absolute;
        transition: background-color .2s, border-color .2s, border-width .2s, opacity .2s;
    }

    .kt-filter-option-line label:before {
        top: 1px;
        width: 18px;
        height: 18px;
        background: #fff;
        outline: none;
        border: 1px solid #dfe2e5;
        box-shadow: inset 0 1px 4px 0 rgba(30,35,43,.15);
        border-radius: 3px;
        left: 0;
    }

    .kt-filter-option-line label:after {
        top: 4px;
        width: 12px;
        height: 7px;
        border-width: 3px;
        left: 4px;
        transform: rotate(-45deg) translatex(-1px);
        background: transparent;
        border: 3px solid #fff;
        border-top: none;
        border-right: none;
        border-radius: 1px;
        box-shadow: -1px 1px 1px rgba(30,35,43,.15);
        opacity: 0;
    }

.kt-filter-input:focus + label:before, .kt-filter-input:hover + label:before {
    border-color: #00a0e0;
}

.is-active + label:before {
    background: #00a0e0;
    border-color: #00a0e0;
    border-width: 0;
    transition: background-color .2s, border-color .2s .2s, border-width .2s .2s;
}


.is-active + label:after {
    opacity: 1;
}

.kt-filter-option-line label span {
    position: absolute;
    right: 0;
}

.kt-right-item {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.kt-content-right {
    flex: 4.5;
}

.kt-design-box {
    width: 25%;
    margin-bottom: 30px;
    padding-left: 30px;
}

.kt-design-box-image img {
    width: 100%;
}

.kt-design-box-footer {
    display: flex;
    min-height: 55px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 0 13px;
    width: 100%;
    height: fit-content;
}

.kt-design-name {
    font-weight: 500;
    font-size: 16px;
}

.kt-design-box-container {
    outline: 1px solid #eee;
    border-radius: 3px;
    transition: box-shadow .2s linear,opacity .2s, outline-color .2s linear,opacity .2s;
    cursor: pointer
}

    .kt-design-box-container:hover {
        box-shadow: 0 3px 10px 0 rgba(75,79,84,.3);
        outline-color: transparent;
    }

.kt-design-fav-input {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    opacity: .01;
    overflow: hidden;
}

.kt-design-fav label {
    border-radius: 50%;
    height: 22px;
    width: 22px;
    vertical-align: middle;
    background: #fff no-repeat;
    border: 1px solid #c8cbcc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .kt-design-fav label:hover {
        border-color: #fcb600;
    }

        .kt-design-fav label:hover svg {
            fill: #fcb600;
        }

    .kt-design-fav label svg {
        fill: #cdd0d1;
        width: 12px;
        height: 12px;
    }

.kt-design-fav.is-active label {
    border: none;
    background: #e81d75;
}

    .kt-design-fav.is-active label svg {
        fill: #fff;
    }

.kt-right-body {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
}

.kt-mobile-filter-panel {
    display: none;
}


.kt-right-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.kt-pagination-title {
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
}

.kt-pagination-title {
    margin-bottom: 18px;
}

    .kt-pagination-title span {
        font-size: 16px;
    }

.kt-pagination-button {
    border: 1px solid rgba(63,74,89,.5);
    border-radius: 3px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    cursor: pointer;
    transition: color .2s,background-color .2s,border-color .2s;
}

    .kt-pagination-button:active {
        background-color: rgba(30,35,43,.05);
        border-color: rgba(63,74,89,.15);
        color: #3f4a59;
    }

    .kt-pagination-button:focus, .kt-pagination-button:hover {
        background-color: rgba(57, 67, 81, 0.8);
        border-color: transparent;
        color: #fff;
    }

    .kt-pagination-button span {
        font-weight: 500;
    }

.kt-design-fav {
    margin-left: 5px;
}

.kt-search {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0px;
    padding-right: 4px;
    height: 100%;
    width: 100%;
}

    .kt-search form {
        position: relative;
        display: flex;
        align-items: flex-end;
        padding-bottom: 8px;
        width: 90%;
        max-width: 250px;
    }

.kt-search-container {
    display: flex;
    width: 100%;
}

.kt-search-input {
    -webkit-tap-highlight-color: transparent;
    border: 0;
    font-size: 15px;
    -webkit-appearance: textfield;
    box-sizing: content-box;
    width: 100%;
    padding-left: 3px;
}

    .kt-search-input:focus, .kt-search-input:hover, .kt-search-input:active {
        outline: none;
    }

.kt-search-container button {
    font-size: 17px;
    stroke: currentColor;
    fill: currentColor;
    transition: opacity 200ms;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding-right: 3px;
}

.kt-search-container:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 1px;
    left: -3px;
    right: -3px;
    height: 1px;
    transition: opacity 500ms, background-color 500ms;
    opacity: 1;
    background-color: #dfe3e7;
}

.kt-search-container button svg {
    height: 18px;
    width: 18px;
}


.kt-search-container button[disabled] {
    cursor: default !important;
}

.kt-search.is-active .kt-search-container:after {
    background-color: #00a0e0;
}

.kt-search-message {
    width: 100%;
    outline: 1px solid #e6e6e6;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    margin-left: 30px;
    margin-bottom: 30px;
}

.kt-search-message-container {
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kt-search-message-title {
    font-size: 16px;
    font-weight: 500;
    display: flex;
    display: inline-block;
}

    .kt-search-message-title span {
        margin-left: 10px;
        color: #ff0000;
        font-weight: 600;
        font-family: 'Volte', Arial, sans-serif;
        font-size: 15px;
    }



.kt-search-message-tricks {
    font-size: 16px;
}

    .kt-search-message-tricks div {
        font-weight: 500
    }

    .kt-search-message-tricks ul {
        margin-left: 18px;
        padding: 0;
        font-size: 15.4px;
        margin-bottom: 0;
    }

.kt-right-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
}

.kt-filter-favorites label span {
    border-radius: 50%;
    height: 19px;
    width: 19px;
    justify-content: center;
    border: none;
    background: #fcb600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

#filter-modal .filter-modal-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    overflow-y: auto;
    height: 550px;
}

#filter-modal .filter-modal-content {
    width: 46%;
    margin: 13px 13px;
}

.cepmodal {
    position: absolute
}

#filter-modal .modal-filter, .cepmodal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#filter-modal .modal-filter {
    -ms-flex-line-pack: center;
    -webkit-align-content: center;
    align-content: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: rgba(0,0,0,0.65);
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
}

#filter-modal .modal-head {
    min-height: 72px;
    padding-left: 18px;
    padding-right: 15px;
    border-bottom: 1px solid #e8e8e8
}

#filter-modal .modal-htitle {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 72px;
    color: #4b4b57
}

.modal-head + .modal__close-button {
    margin-top: 15px
}


#filter-modal .modal-lbody {
    max-width: 767px
}

#filter-modal .modal__body--padding {
    padding-left: 24px;
    padding-right: 24px
}

#filter-modal .modal-body-cb {
    background-color: rgba(0,0,0,0);
    border: none;
    cursor: pointer;
    margin-right: -32px;
    padding: 0;
    position: absolute;
    right: 0;
    text-align: center;
    width: 17px;
    top: 12px;
    height: 17px;
}

#filter-modal .modal-body-cb svg path {
    color: #fff;
    fill: currentColor
}

.filter-modal-item {
    background-color: #f9f9f9;
}

.accordion-menu .filter-modal-item ul {
    padding: 0;
    margin: 0;
    flex-direction: column;
    width: 100%
}

.accordion-menu .filter-modal-link {
    flex-direction: column;
    display: flex;
    justify-content: flex-end;
    margin-right: 2px;
}

.accordion-menu .filter-modal-title {
    display: block;
    padding: 16px 36px 16px 18px;
    outline: none;
    margin-left: -16px;
    width: calc(100% + 34px);
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
    font-size: 17px;
    font-weight: 500;
    font-family: 'CepteFont', 'Volte', Arial, sans-serif;
}

.accordion-menu .filter-modal-title:hover, .accordion-menu .filter-modal-title:focus {
    color: #4b4b57;
}

.accordion-menu .this-selected .filter-modal-title {
    box-shadow: inset 4px 0 0 #3cbaf5;
}

.accordion-menu .filter-modal-option {
    padding: 0;
    margin: 0;
    font-family: 'CepteFont', 'Volte', Arial, sans-serif;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

    .accordion-menu .filter-modal-option:before {
        content: "";
        display: block;
        position: relative;
        height: 18px;
    }

    .accordion-menu .filter-modal-option:after {
        content: "";
        display: block;
        position: relative;
        height: 18px;
    }

.accordion-menu .this-selected .filter-modal-option {
    max-height: 2000px;
}

.accordion-menu .filter-modal-option .filter-modal-item-container {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.accordion-menu .kt-filter-option-line label {
    font-size:16px;
}

.accordion-menu .kt-filter-option-line:last-child {
    padding-bottom: 0;
}

.accordion-menu .kt-filter-option-line label:before {
    top: 2px;
    width: 19px;
    height: 19px;
}

.accordion-menu .kt-filter-option-line label:after {
    top: 6px;
}


.filter-modal-item-container {
    padding-right: 16px;
    padding-left: 16px;
}

.filter-modal-footer {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #e5e5e5;
    padding: 20px 24px;
    width: 100%;
}

    .filter-modal-footer button {
        font-size: 16px;
        width: 1000%;
        height: 40px;
        font-weight: 500;
        font-family: 'CepteFont', 'Volte', Arial, sans-serif;
        border-radius: 3px;
    }

.modal-favorites-arrow {
    top: 20px;
    right: 21px;
    border-radius: 50%;
    height: 19px;
    width: 19px;
    justify-content: center;
    border: none;
    background: #fcb600;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-size: 15px;
    position: absolute;
    display: block;
}

.filter-modal-item-container .kt-filter-option-line label span {
    right: 5px;
}

.kt-icon-filter {
    display: flex;
    flex-direction: row;
    border-radius: 2px;
    border: 1px solid #dcdad9;
    margin-right: 24px;
}

    .kt-icon-filter:last-child {
        margin-right:0
    }

    .size-icon-box {
        flex: 0.7;
        margin-right:0!important;
    }

.folded-icon-box {
    flex: 0.6;
}

.side-icon-box {
    flex: 0.35; 
}


.kt-icon-filter-item {
    margin: 0;
    padding: 0;
    height: 55px;
    cursor: pointer;
    background-color: #fff;
    border-right: 1px solid #dcdcdc;
    position: relative;
    flex:1;
}

    .kt-icon-filter-item.is-active {
        background-color: #edf6fe;
    }

.kt-icon-filter-item:last-child {
    border: none;
}

    .kt-icon-filter-item:after {
        content: "";
        background-color: #3cbaf5;
        border-radius: 2px;
        position: absolute;
        display: block;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin-left: auto;
        margin-right: auto;
        width: 0;
        height: 2px;
        transition: width .2s;
    }

    .kt-icon-filter-item:hover:after, .kt-icon-filter-item.is-active:after {
        width:100%
    }

    .kt-icon-filter-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .kt-icon-filter-container img {
        width: 40px;
        height: 22px;
    }

    .kt-icon-filter-container div {
        font-size: 13px;
        margin-top: 3px;
    }

.kt-header-icon-box {
    flex: 1;
    display: flex;
    flex-direction: row;
}

.kt-header-filter {
    flex: 0.4;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

@media only screen and (max-width: 1440px) {
    .kt-design-box {
        padding-left: 24px;
        margin-bottom: 24px;
    }

    .kt-right-header {
        padding-left: 24px;
    }

    .kt-search-message {
        margin-left: 24px;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 992px) {

    .kt-content-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kt-hero-title-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kt-design-box {
        width: 50%;
        padding-left: 18px;
        margin-bottom: 18px;
    }

    .kt-content-left {
        flex: 1.8;
    }

    .kt-hero-title h1 {
        font-size: 30px
    }

    .kt-pagination-title span {
        font-size: 16px;
    }

    .kt-search-message {
        margin-left: 18px;
        margin-bottom: 18px;
    }

    .kt-header-filter {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #filter-modal .modal-body-cb svg path {
        color: #919191
    }

    .modal-arrow {
        position: absolute;
        top: 28px;
        right: 20px;
        width: 20px;
        display: block
    }

        .modal-arrow b {
            display: block;
            position: relative;
            width: 1em;
            height: 1em;
            transition: all 300ms;
            left: 0.25rem;
            margin: 0;
            border: none;
            font-size: 0.75rem;
            transform: translateY(-50%);
        }

            .modal-arrow b:before, .modal-arrow b:after {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 1em;
                height: 1em;
                transition: all 300ms;
                background-color: currentColor;
                border: 0 solid currentColor;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                background-color: #888888;
                transform: translate(-0.2em, 0) rotate(-135deg) scale(0.66, 0.1);
            }

            .modal-arrow b:after {
                transform: translate(0.2em, 0) rotate(135deg) scale(0.66, 0.1);
            }

    .this-selected .modal-arrow b:before {
        transform: rotate(45deg) scale(0.66, 0.1) translate(0.215em, -1.4em)
    }

    .this-selected .modal-arrow b:after {
        transform: rotate(-45deg) scale(0.66, 0.1) translate(-0.215em, -1.4em)
    }

    #filter-modal .filter-modal-container {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    #filter-modal .filter-modal-content {
        width: 100%;
        margin: 0;
    }

    #filter-modal .modal-filter {
        background-color: #fff;
        -ms-flex-line-pack: start;
        -webkit-align-content: flex-start;
        align-content: flex-start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
        overflow-y: scroll;
        -webkit-overflow-scrolling: scroll;
        padding-top: 30px
    }

    #filter-modal .modal-body {
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0;
        height: 100%;
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        top: 0;
        -webkit-overflow-scrolling: touch;
        overflow-y: scroll;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fff;
        min-height: 420px;
        width: 100%;
    }

    #filter-modal .modal-body-cb {
        background-color: rgba(0,0,0,0);
        margin-top: 1rem;
        margin-right: 24px
    }

        #filter-modal .modal-body-cb svg {
            width: 15px;
            height: 15px
        }

    .kt-hero-item-image {
        display: none;
    }

    .kt-hero-title-container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        margin: 0;
    }

    .kt-hero-title {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        top: unset;
        transform: none;
    }

        .kt-hero-title h1, .kt-hero-title p {
            color: inherit;
            text-align: center;
        }

    .kt-content-left {
        display: none;
    }

    .kt-content-container {
        margin: 5px auto;
        padding-left: 0
    }

    .kt-right-item {
        margin-top: 0;
    }

    .kt-design-box-container {
        outline: none;
        box-shadow: 0 2px 4px 0 rgba(75,79,84,.25);
    }

    .kt-mobile-filter-panel {
        display: block;
        flex: 1;
        margin-right: 15px;
    }

    .kt-mobile-filter-panel-item {
        width: 100%;
        display: flex;
        position: relative;
    }

    .kt-mobile-filter-button {
        width: 100%;
        background-color: hsla(0,0%,100%,.15);
        color: #3f4a59;
        margin: 0;
        cursor: pointer;
        white-space: nowrap;
        height: 40px;
        font-size: 16px;
        line-height: 38px;
        outline: none;
        border: 1px solid #dfe3e7;
        border-radius: 3px;
        transition: color .2s,background-color .2s,border-color .2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        box-sizing: border-box;
    }

        .kt-mobile-filter-button svg {
            display: inline-block;
            vertical-align: middle;
            stroke-width: 0;
            stroke: currentColor;
            fill: currentColor;
            transition: opacity .2s;
            width: 22px;
            height: 22px;
            margin-left: -.3em;
            opacity: .8;
        }

        .kt-mobile-filter-button span {
            margin-left: 6px;
            font-family: 'CepteFont', 'Volte', Arial, sans-serif;
            font-weight: 500;
        }

    .kt-right-footer {
        padding-left: 18px;
    }

    .kt-design-box-footer {
        padding: 0 10px 0 8px;
    }

    .kt-design-name {
        font-size: 14px;
    }

    .kt-right-header {
        padding-left: 18px;
        flex-direction: column;
    }

    .kt-header-icon-box {
        flex-direction: column;
        width: 100%;
        min-height: 129px;
        justify-content: space-between;
    }

    .kt-icon-filter {
        margin-right: 0;
    }

    .folded-icon-box, .side-icon-box, .size-icon-box {
        flex: 0
    }

    .kt-search {
        margin-bottom: 0;
        padding-right: 0;
        flex: 1;
        border: 1px solid #dfe3e7;
    }

        .kt-search form {
            width: 100%;
            padding-bottom: 0;
            max-width: 100%;
            align-items:center;
        }

    .kt-search-container button {
        padding-right: 17px;
    }

    .kt-search-container:after {
       display:none;
    }

    .kt-search-input {
        text-align: center;
        font-size: 14px;
    }

    .kt-header-filter {
        display: flex !important;
        width: 100%;
        margin-top: 15px;
    }
}