﻿
/*#region general*/
textarea:focus, input:focus, .checkbox input[type="checkbox"]:focus + label::before, .checkbox input[type="radio"]:focus + label::before,
input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
    outline: none;
}
select {
    border: none;
    outline: none;
    scroll-behavior: smooth;
}
.img-responsive {
    margin: 0 auto;
}
.owl-carousel {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.navbar-fixed-top, .navbar-fixed-bottom {
    z-index: 1050;
}
/*#endregion general*/
/*#region admin menu*/
.admn-menu {
    position: fixed;
    top: 20%;
    right: 0;
    width: 36px;
    background: #edf2f9;
    overflow: hidden;
    white-space: nowrap;
    padding: 5px 8px;
    box-shadow: 0px 0px 4px #90a5c3;
    border-radius: 3px 0 0 3px;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    -ms-transition: width .3s;
    -webkit-transition: width .3s;
    transition: width .3s;
    z-index: 9999;
}

    .admn-menu:hover {
        width: 146px;
    }

    .admn-menu a {
        float: left;
        display: flex;
        margin: 4px 0;
        flex-direction: row;
        align-items: center;
    }
        .admn-menu a i {
            font-size: 22px;
        }
        .admn-menu a span {
            padding: 0 0 0 10px;
            position: relative;
            font-size: 13px;
        }


/*#endregion admin menu*/

/*#region cookie alert*/
.cookie-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border: 1px solid #000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: #fff;
    max-width: 440px;
    visibility: hidden;
    opacity: 0;
}

    .cookie-alert > div {
        display: flex;
    }

    .cookie-alert.show {
        opacity: 1;
        visibility: visible;
    }

    .cookie-alert .close-cookie {
        border: none;
        background: none;
        opacity: 1;
        font-weight: 500;
        padding: 0 0 0 20px;
        font-size: 30px;
        line-height: 20px;
        text-align: right;
        display: block;
    }

    .cookie-alert .btn {
        max-width: 140px;
        margin-top: 10px;
    }

    .cookie-alert span {
        line-height: 18px;
        display: block;
    }

        .cookie-alert span a {
            text-decoration: underline;
            font-weight: 600
        }

@media (min-width:768px) {
    .cookie-alert > div {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

@media (max-width:767px) {
    .cookie-alert {
        max-width: 330px;
    }

        .cookie-alert > div {
            flex-direction: column-reverse;
        }

        .cookie-alert .btn {
            margin-top: 20px;
        }
}
/*#endregion cookie alert*/

/*#region Form*/
.form-group label {
    font-weight: 500;
    line-height: 20px;
}

.form-control {
    background: none;
    box-shadow: none;
    border-color: #e5e5e5;
    height: 40px;
}
.form-horizontal .control-label {
    text-align: left;
}
.form-control[disabled], .form-control[readonly],  fieldset[disabled] .form-control {
    background: #efefef;
}

.form-group .birthdate .form-control {
    margin-right: 20px;
}
.form-group .birthdate > .form-control.date-year {
    margin-right: 0;
}
.has-feedback .form-control {
    padding-right: 18px;
}
.form-group .check-allow.danger {
    border: 1px solid #d22b38;
    border-radius: 4px;
    padding: 0 0 0 8px;
}
.form-group .check-allow .checkbox input[type="checkbox"] {
    cursor: pointer;
}
.form-group .check-allow .checkbox label {
    cursor: default;
}
    .form-group .check-allow .checkbox label a {
        text-decoration: underline;
    }
/*#endregion Form*/
/*#region UserInfoPage*/

/*#region common*/
.account-wrap .title, .account-wrap .main-title {
    font-size: 26px;
    line-height: 32px;
    padding-bottom: 25px;
}

    .account-wrap .title a:before, .account-wrap .main-title a:before {
        content: "\f14a";
        font-family: "kmicons";
        font-size: 25px;
        font-weight: bold;
        padding: 0px 10px 0 0px;
    }

.account-wrap .title-md {
    font-size: 24px;
    line-height: 28px;
    padding-top: 30px;
    padding-bottom: 10px;
}

.account-wrap .title-sm {
    font-size: 22px;
    line-height: 26px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.account-wrap .title-xs {
    font-size: 20px;
    line-height: 24px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.account-wrap .title-xxs {
    font-size: 18px;
    line-height: 22px;
    padding-top: 10px;
    padding-bottom: 15px;
}

.account-wrap hr {
    margin-top: 0px;
    margin-bottom: 0px;
    border-color: #e5e5e5;
}
.account-wrap .km-submit {
    margin-top: 20px;
}
.border-box {
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    border: 1px solid #e5e5e5;
}

@media (min-width:992px) {
    .account-offset {
        padding-top: 210px;
    }
    .border-box {
        padding: 24px;
    }
}

@media (max-width:991px) {
    .account-offset {
        padding-top: 60px;
    }

        .account-offset.account-detail {
            padding-top: 75px;
        }


    .account-wrap .account-info {
        margin-bottom: 10px;
    }

    .account-wrap .title-md {
        font-size: 20px;
        line-height: 24px;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .account-wrap .title-xs {
        font-size: 16px;
        line-height: 20px;
    }
    .account-wrap .title {
        display: none;
    }

    .account-wrap .main-title {
        font-size: 20px;
        line-height: 24px;
        padding-bottom: 15px;
        padding-left: 10px;
    }

        .account-wrap .main-title a:before {
            font-size: 20px;
        }
    .border-box {
        padding: 20px;
    }
    .account-wrap .border-box .km-submit {
        margin-top: 10px;
    }
}
/*#endregion common*/

/*#region sidebar*/
.km-sidebar .sidebar-header {
    padding: 22px 0px 22px 22px;
    align-items: center;
}

.km-sidebar .short-title {
    font-size: 24px;
    font-weight: 700;
    background: #efefef;
    border-radius: 50%;
    height: 68px;
    width: 68px;
    text-align: center;
    margin-right: 20px;
    line-height: 68px;
}

.km-sidebar .title span, .km-sidebar .title a {
    display: block;
}

.km-sidebar .title span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.km-sidebar .title a {
    font-size: 14px;
    line-height: 17px;
}

.km-sidebar .sidebar-navigation ul li {
    line-height: 20px;
}

    .km-sidebar .sidebar-navigation ul li a {
        font-size: 16px;
    }


@media (min-width:1200px) {
    .km-sidebar {
        margin-right: 50px;
    }
}

@media (min-width:992px) {
    .km-sidebar {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        height: 100%;
    }

        .km-sidebar .sidebar-navigation ul li {
            border-top: 1px solid #e5e5e5;
            line-height: 18px;
        }

            .km-sidebar .sidebar-navigation ul li a {
                font-size: 14px;
                padding: 16px 0 16px 30px;
                display: block;
            }

            .km-sidebar .sidebar-navigation ul li.active a {
                font-size: 16px;
            }

                .km-sidebar .sidebar-navigation ul li.active a:after {
                    content: "\f14d";
                    font-family: "kmicons";
                    margin-right: 24px;
                    float: right;
                    font-size: 30px;
                }
}

@media (max-width:1200px) and (min-width:992px) {
    .km-sidebar {
        margin-right: 24px;
    }
}

@media (max-width:991px) {
    .km-sidebar {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        -webkit-transform: translate3D(0, 0, 0);
        -ms-transform: translate3D(0, 0, 0);
        transform: translate3D(0, 0, 0);
    }

        .km-sidebar .sidebar-header {
            border-bottom: none;
            margin: 20px -10px;
            background: #efefef;
            padding: 22px 0px 22px;
            justify-content: center;
            flex-direction: column;
        }

        .km-sidebar .short-title {
            background: #a7a7a7;
            margin-right: 0;
            color:#fff;
        }

        .km-sidebar .title span, .km-sidebar .title a {
            display: inline-block;
        }

        .km-sidebar .title a {
            font-size: 13px;
            line-height: 1;
        }

        .km-sidebar .title span {
            margin-right: 0;
            margin-top: 6px;
        }

        .km-sidebar .sidebar-navigation {
            height: 72px;
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }

            .km-sidebar .sidebar-navigation ul {
                display: flex;
                height: 72px;
                justify-content: flex-start;
                align-items: center;
                overflow-x: scroll;
                -ms-overflow-style: none;
                overflow: -moz-scrollbars-none;
                -webkit-overflow-scrolling: touch;
                width: 100%;
                padding-bottom: 30px;
            }

                .km-sidebar .sidebar-navigation ul li {
                    text-align: center;
                    flex: 0 0 auto;
                    -webkit-tap-highlight-color: rgba(0,0,0,0);
                }

                    .km-sidebar .sidebar-navigation ul li a {
                        padding: 18px 0px 4px;
                        display: block;
                        margin: 0 22px;
                    }

                    .km-sidebar .sidebar-navigation ul li.active a {
                        position: relative;
                    }

                        .km-sidebar .sidebar-navigation ul li.active a:before {
                            content: "";
                            height: 5px;
                            top: 0;
                            position: absolute;
                            left: 0;
                            width: 100%;
                        }
}

/*#endregion sidebar*/

/*#region user detail*/

@media (min-width:992px) {
    .account-wrap .account-info .form-group {
        width: 50%;
    }
    .account-wrap .account-info div .form-group:first-child {
        width: calc(50% - 50px);
        margin-right: 50px;
    }
}


@media (max-width:991px) {
    .account-wrap .account-info .form-group {
        margin-bottom: 28px;
    }
}
/*#endregion user detail*/

/*#region adress info*/
.account-wrap .panel.panel-default {
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    border: 1px solid #e5e5e5;
    padding: 14px 20px;
    min-height: 196px;
}

    .account-wrap .panel.panel-default:last-child {
        margin-bottom: 0;
    }

.account-wrap .panel-default > .panel-heading {
    border: none;
    background: none;
    padding: 0 0 10px;
}

    .account-wrap .panel-default > .panel-heading div {
        font-size: 16px;
    }

        .account-wrap .panel-default > .panel-heading div span {
            display: block;
            color: #999999;
            font-size: 14px;
        }

    .account-wrap .panel-default > .panel-heading .account-del, .account-wrap .panel-default > .panel-heading .account-edit {
        text-decoration: underline;
        padding: 0 10px;
    }

    .account-wrap .panel-default > .panel-heading .account-edit {
        text-decoration: underline;
        padding: 0 0 0 10px;
    }

.account-wrap .panel-default .panel-body {
    padding: 0;
}

    .account-wrap .panel-default .panel-body ul li {
        padding-bottom: 8px;
        line-height: 20px;
    }

/*#endregion adress info*/

/*#region adress detail*/
.account-wrap.address-detail .main-title {
    border-bottom: none;
}

/*#endregion adress detail*/

/*#region order list*/
.account-wrap .title-md.date {
    padding: 10px 0 20px;
}
    .account-wrap .title-md.date small {
        font-size: 65%;
        margin-left: 5px;
        color: #999999;
    }
.order-header {
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}
    .order-header .order-search {
        background: #efefef;
        border-radius: 8px;
        margin-right: 20px;
    }

    .order-header .order-input {
        border: none;
        box-shadow: none;
    }

    .order-header .order-input-btn {
        margin-bottom: 0;
        height: 40px;
    }
        .order-header .order-input-btn .order-srcbtn {
            background: none;
            border: none;
            padding: 0px 6px;
            margin-top: 3px;
        }

    .order-header .form-group {
        margin-bottom: 0;
    }

    .order-header .form-control {
        border-color: #efefef;
        box-shadow: none;
        border-radius: 8px;
        height: 40px;
        background: #efefef;
        padding: 6px 20px;
        margin-bottom: 0;
    }

.order-list {
    margin-bottom:20px;
}
    .order-list .order-item-box .order-price, .order-list .order-item-box .order-id {
        display: block;
    }

    .order-list .order-item-box .order-id {
        font-size: 16px;
    }

    .order-list .order-item-box .order-date {
        color: #999999;
        display: block;
        line-height: 14px;
    }

    .order-list .order-item-box .order-price {
        font-size: 16px;
        font-weight: 600;
    }
    .order-list .order-item-box .payment-type {
        color: #999999;
        display: block;
        line-height: 14px;
    }
    .order-list .order-item-box .order-prdimage div {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        display: block;
        font-size: 16px;
        background: #ffffff;
        height: 40px;
        line-height: 36px;
        text-align: center;
        width: 40px;
    }
        .order-list .order-item-box .order-prdimage div:not(:first-child) {
            margin-left: 4px;
        }
        .order-list .order-item-box .order-prdimage div img {
            border-radius: 8px;
            margin: 0 auto;
            vertical-align: middle;
            width: 100%;
            height: 100%;
        }
    .order-list .order-item-box .detail-link {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
    }
        .order-list .order-item-box .detail-link:after {
            content: "\f149";
            font-family: "kmicons";
            font-size: 16px;
            padding-left: 6px;
            vertical-align: middle;
        }

    .order-list .order-item-box .progress-status img {
        display: inline-block;
    }

@media (max-width:991px) {
    .account-wrap .title-xxs.month {
        padding: 20px 0 16px 20px;
    }

    .account-wrap .title.year {
        display: block;
        padding-left: 20px;
        padding-top: 20px;
    }
    .order-header {
        margin: 15px 0px 10px;
    }
    .order-list .order-item-box {
        padding: 0;
    }
    .order-list .order-right-box {
        display: flex;
        flex-direction: column;
        align-content: flex-end;
        flex-wrap: wrap;
    }
    .order-list .order-left-box {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .order-item .order-item-box:nth-child(2), .order-item .order-item-box:nth-child(3) {
        margin-bottom: 10px;
    }
        .order-list .order-item-box .order-prdimage {
            margin: 0px 0 10px;
        }

}
/*#endregion order list*/

/*#region order detail*/
.account-order {
    margin-bottom: 28px;
}

    .order-detail .detail-box span {
        display: inline-block;
        min-width: 300px;
        margin-bottom: 10px;
    }

    .order-detail .detail-box div {
        min-width: 300px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .order-detail .detail-box span span {
        min-width: 140px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 0;
    }

    .order-detail .detail-box div span {
        min-width: 140px;
        display: inline-block;
        font-weight: 600;
        margin-bottom: 0;
    }

.order-link {
    text-decoration: underline;
    display: inline-block;
    margin-right: 20px;
}
.bill-detail {
    margin-bottom: 40px;
}
.bill-detail > span {
    display: block;
    min-width: 300px;
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 19px;
}

.bill-detail span span {
    min-width: 140px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0;
}

.order-btn {
    margin: 0 0 30px;
    background: #fff;
}

    .order-btn img {
        margin-right: 3px;
    }

    .order-btn span {
        font-weight: 500;
    }

.order-products .product-item {
    margin-bottom:20px;
}

.order-products .product-image img {
    max-width: 70px;
}

.order-products .product-desc {
    padding-left: 15px;
}

.order-products .product-name {
    font-weight: 600;
    display: block;
    line-height: 1;
    padding-bottom: 5px;
}
.order-products .brand-piece {
    font-size: 13px;
}
.order-products .product-barcode {
    display: block;
    line-height: 1;
    font-size: 12px;
}

.order-products .product-brand, .order-products .product-quantity {
    display: inline-block;
    line-height: 14px;
    margin-right: 10px;
    font-size: 12px;
}

    .order-products .product-brand span, .order-products .product-quantity span {
        font-weight: 600;
    }

.order-products .order-price {
    margin-top: 6px;
    align-items: center;
}
.order-products .discount {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    padding: 6px 4px;
    margin-right: 6px;
    border-radius: 0;
}

.order-products .price-box {
    min-height: auto;
    line-height: 20px;
}

.order-products .price-standard {
    color: #999999;
    font-size: 13px;
    text-decoration: line-through;
    display: block;
    line-height: 12px;
}

.order-products .price-sales {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
}

.order-alert {
    background: #F6EBEB;
    padding: 9px 20px;
    margin: 30px 0 38px;
    font-size: 16px;
}

    .order-alert img {
        margin-right: 10px;
    }

.order-delivery .delivery-box {
    padding: 0;
    margin-bottom: 40px;
}

    .order-delivery .delivery-box:first-child {
        margin-right: 20px;
    }

.order-summary p {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    padding-bottom: 20px;
}

.order-summary > span {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px;
    display: block;
}

.order-summary .summary-box span {
    font-size: 16px;
    padding-bottom: 20px;
    display: block;
}

.order-summary .summary-box .summary-discount span {
    color: red;
}

.order-summary .summary-box .summary-total {
    border-top: 2px solid #e5e5e5;
    padding-top: 20px;
}

    .order-summary .summary-box .summary-total span:last-child {
        font-weight: 600;
    }

.order-products .reason-box {
    margin-bottom: 30px;
}

    .order-products .reason-box:last-child {
        margin-bottom: 0;
    }

.account-wrap .account-info .reason-box .form-group {
    width: calc(36% - 50px) !important;
}

@media (min-width:992px) {
    .order-detail .detail-box span {
        font-size: 16px;
    }
    .order-contract {
        padding-top: 10px;
    }

        .order-contract a {
            display: inline-block;
            margin-right: 40px;
        }
}

@media (max-width:991px) {
    .order-alert {
        margin: 0px 0px 18px;
        font-size: 14px;
        line-height: 18px;
        padding: 17px 20px;
    }
    .order-delivery .delivery-box:first-child {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .order-delivery .delivery-box:last-child {
        margin-bottom: 58px;
    }

    .order-summary {
        padding-top: 10px;
    }

    .order-contract a {
        display: block;
        margin-top: 30px;
    }
}

.order-progress {
    margin-bottom: 40px;
}

/*#region progress*/
.progress-circle-box {
    overflow: hidden;
}

    .progress-circle-box li {
        width: 25%;
        float: left;
        position: relative;
    }

        .progress-circle-box li:before {
            content: "";
            width: 14px;
            height: 14px;
            display: block;
            background: #e5e5e5;
            position: absolute;
            left: 0px;
            top: 0px;
            border-radius: 50%;
            z-index: 1;
        }
        .progress-circle-box li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: #e5e5e5;
            position: absolute;
            left: 2px;
            top: 6px;
            z-index: 0;
        }

        .progress-circle-box li.active:after, .progress-circle-box li.passed:after {
            background: #FF7B00;
        }

        .progress-circle-box li.active:before, .progress-circle-box li.shippednext:before {
            background: url(/Images/usermenu/prg-circle-act.svg) no-repeat center center;
        }

        .progress-circle-box li.passed:before {
            background: url(/Images/usermenu/prg-circle-pass.svg) no-repeat center center;
        }

        .progress-circle-box li:last-child:after {
            display: none;
        }

.return .progress-circle-box li.active:before, .return .progress-circle-box li.shippednext:before {
    background: url(/Images/usermenu/prg-returncircle-act.svg) no-repeat center center;
}

.return .progress-circle-box li.active:after, .return .progress-circle-box li.passed:after {
    background: red;
}

.return .progress-circle-box li.passed:before {
    background: url(/Images/usermenu/prg-returncircle-pass.svg) no-repeat center center;
}

.progress-circle-box li span {
    display: block;
    margin-top: 20px;
    font-size: 16px;
}

    .progress-circle-box li span span {
        color: #999;
        margin-top: 3px;
    }

@media (min-width:992px) {
    .progress-circle-box {
        width: 66%;
    }
}

@media (max-width:991px) {

    .order-progress {
        margin-top: 20px;
    }

    .progress-circle-box li span {
        font-size: 12px;
        line-height: 14px;
        max-width: 65px;
    }
}
/*#endregion progress*/

/*#endregion order detail*/

/*#region order return*/

.all-account-check {
    padding: 0px 0 36px 10px;
}

    .all-account-check input {
        margin-right: 9px;
    }

.account-check {
    margin: 0 17px 0 9px;
}

.return .order-products .product-item:first-child {
    border-top: none;
    padding-top: 0;
}

.return-result {
    text-align: center;
    max-width: 350px;
    margin: 0 auto 50px;
}

    .return-result img {
        margin: 20px 0;
    }

    .return-result p, .return-result span {
        margin-bottom: 30px;
    }

    .return-result .return-code {
        display: block;
        font-size: 16px;
        line-height: 19px;
    }

        .return-result .return-code span {
            font-weight: 600;
        }

.return-quantity {
    margin-left: 20px;
    max-width: 80px;
}

@media (max-width:991px) {
    .return-result {
        max-width: 386px;
        padding: 0 20px;
    }

        .return-result .title {
            display: block;
        }

    .account-return .order-detail {
        padding-top: 18px;
        padding-bottom: 0;
    }

    .return-result img {
        margin: 80px 0 20px;
    }

    .all-account-check {
        padding: 0px 20px 36px 20px;
    }
}
/*#endregion order return*/

/*#region favorites*/
.favorites-btn .km-submit {
    margin: 0;
    display: block;
}
.favorites-btn .order-link {
    margin: 0;
}
.favorites-bottom .order-link {
    text-decoration: none;
}

    .favorites-bottom .order-link span {
        vertical-align: middle;
    }

    .favorites-btn {
        text-align: right;
    }


@media (max-width:991px) {
    .favorites-btn .btn-primary {
        width: 100%;
    }

    .favorites-btn {
        margin-top: 16px;
    }

}
/*#endregion favorites*/

/*#region inform*/

.inform-list {
    margin-bottom: 20px;
}
.account-info .inform-info > p, .account-info .inform-info > span {
    padding-left: 12px;
}

.account-info .inform-info > p {
    line-height: 17px;
    margin: 0 0 6px;
}

.inform-status {
    margin-bottom: 10px;
}

.inform-info .progress-status img {
    display: inline-block;
}

.inform-info .progress-status span {
    padding-left: 0;
}

.inform-info .inform-date {
    color: #999999;
}

/*#endregion inform*/

/*#region promo*/
.promo-deadline {
    margin-top: 5px;
}

.promo-box .promo-deadline img {
    display: inline-block;
    margin-left: -12px
}

.promo .panel-default > .panel-heading div span {
    display: inline-block;
    line-height: 17px;
}

.promo-box p {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    margin: 0;
}

.promo-deadline span span {
    font-weight: 600;
}

.account-wrap.promo .panel.panel-default {
    min-height: auto;
}

.promo .panel-default .panel-body {
    border-top: 1px solid #e5e5e5;
}

.promo-list .panel-body span {
    display: block;
}

.account-wrap .panel-default .panel-heading .promo-price span {
    color: red;
    display: block;
}

    .account-wrap .panel-default .panel-heading .promo-price span span {
        font-weight: 600;
    }

.promo-list .promo-cllps {
    line-height: 32px;
    display: block;
    padding: 14px 0 10px;
}

.promo .panel-default .panel-body a:after {
    content: "\f147";
    font-family: "kmicons";
    float: right;
    font-size: 16px;
    font-weight: bold;
    padding-right: 5px;
}

.promo .panel-default .panel-body a.collapsed:after {
    content: "\f146";
}

.promo-list .panel-body .code-box {
    margin-top: 12px;
}

    .promo-list .panel-body .code-box > span {
        font-size: 16px;
    }

    .promo-list .panel-body .code-box span span {
        font-size: 12px;
        color: #999999;
    }
.convert-point label {
    font-weight: 400;
    padding-top: 5px;
    display: block;
}
/*#endregion promo*/

/*#region user iys*/
.user-iys .account-info p {
    max-width: 600px;
    margin: 0 0 20px;
}

    .user-iys .account-info p a {
        text-decoration: underline;
        font-weight: 400;
    }

/*#region switch*/
.switch-box {
    padding: 15px 10px;
}

    .switch-box span {
        font-size: 16px;
        line-height: 19px;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 18px;
    margin-right: 20px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #808080;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 14.17px;
        width: 14.84px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #26D682;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(11px);
    -ms-transform: translateX(11px);
    transform: translateX(11px);
}

.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/*#endregion switch*/

/*#endregion user iys*/

/*#region psreset*/
.ps-reset .account-info ul li {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 4px;
}

    .ps-reset .account-info ul li img {
        margin-right: 5px;
    }

/*#endregion psreset*/

/*#endregion*/




/*#region modal review*/
.reviews-prp .form-group {
    margin-bottom: 30px;
}


.form-control.rating-message, .form-control.rating-title {
    border-color: #ddd;
    box-shadow: none;
}

.modal-review .rating label {
    font-size: 16px;
    line-height: 20px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}


.modal-review .rating i, .modal-review .rating .rating-symbol {
    margin-right: 2px;
    font-size: 18px;
}


.review-switch .switch-box {
    padding: 10px 0 0;
}

    .review-switch .switch-box span {
        font-size: 14px;
        line-height: 20px;
    }
.modal-review .alert-result i {
    font-size: 22px;
    background: #26d682;
    padding: 15px;
    border-radius: 50%;
    color: #fff;
}
.modal-review .alert-result i:before {
    font-weight:bold
}
/*#endregion modal review*/
/*#region pd review*/
.section-review {
    padding: 0;
}

.hero-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.review-head {
    display: flex;
    margin-bottom: 10px;
}

.review-footer .review-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0 30px 0;
}

    .review-footer .review-item:last-child {
        border-bottom: none;
    }

    .review-footer .review-item .rating {
        margin: 10px 0 16px;
    }

    .review-footer .review-item p {
        font-weight: 400;
        margin: 0;
    }

    .review-footer .review-item .review-username {
        font-size: 16px;
        font-weight: 500;
    }

    .review-footer .review-item .rating-info {
        font-size: 16px;
        font-weight: 500;
        text-transform: none;
        margin: 0 20px;
    }

.review-bar {
    border: none;
    padding: 0px;
    margin: 0;
}

.add-review span {
    display: block;
    margin-bottom: 21px;
}

    .add-review span i {
        margin-right: 5px;
    }

.review-none .title {
    font-size: 24px;
    line-height: 24px;
    margin: 60px 0 20px;
}

.review-head .rating {
    margin: 0;
    text-align: center;
}

.review-head .rating-number {
    margin: 0 0 10px 0;
    font-size: 52px;
    line-height: 42px;
    padding: 0;
    vertical-align: middle;
}

.review-head .a-review {
    display: block;
}

.review-progress .rating-info {
    font-size: 14px;
    margin: 0 0 3px 0;
    line-height: 20px;
    text-transform: none;
    vertical-align: top;
}

.review-bar .progress {
    height: 2px;
    background-color: #eee;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.progress-bar {
    background-color: #000000;
}
.review-rating {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.review-prop {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 30px;
    border-radius: 8px;
}

    .review-prop > span {
        padding-bottom: 20px;
        display: block;
        font-size: 16px;
        font-weight: 600;
    }

    .review-prop ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
        .review-prop ul li {
            width: 25%;
            margin-bottom: 20px;
        }
        .review-prop ul li .prop-title {
            display: block;
            padding-bottom: 10px;
            font-size: 15px;
        }
            .review-prop ul li div span {
                font-size: 16px;
                font-weight: 600;
                margin-left: 5px;
            }

.review-footer {
    border-top: 1px solid #e5e5e5;
    margin-top: 20px;
}

@media (min-width:992px) {
    .review-head {
        flex-direction: row;
    }

    .review-item .title {
        font-size: 24px;
        line-height: 24px;
    }

    .review-item p {
        font-size: 15px;
    }

    .review-rating {
        margin: 0 20px 0 0;
    }

    .review-prop {
        margin: 0 0 0 20px;
    }
}

@media (max-width:991px) {
    .review-head {
        flex-direction: column;
    }

    .review-item .title {
        font-size: 26px;
        line-height: 30px;
    }

    .review-footer .review-item {
        padding: 30px 0 20px 0;
    }

    .review-item p {
        font-size: 15px;
        line-height: 20px;
    }

    .review-head .rating-number {
        margin-left: 10px;
        font-size: 38px;
        line-height: 34px;
    }

    .review-head .rating-info {
        font-size: 14px;
        margin-left: 8px;
    }

    .review-head .rating {
        margin: 30px 20px 30px 0px;
    }
}
@media (max-width:767px) {
    .review-prop ul li {
        width: 50%;
    }
}

/*#endregion pd review*/
/*#region alert-inform review*/
.alert-inform .reviews-product label, .alert-inform .reviews-prp label, .alert-inform .reviews-msj > label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
}

.alert-inform .inform-rating i {
    color: #f69f29;
}

.alert-inform .reviews-product, .alert-inform .reviews-prp {
    margin-bottom: 24px;
}

    .alert-inform .reviews-prp .form-group {
        min-width: calc(50% - 12px);
        margin-bottom: 12px;
        padding: 12px 16px 16px;
        border-radius: 8px;
        -webkit-box-shadow: 0 2px 16px 0 rgb(0 0 0 / 8%);
        box-shadow: 0 2px 16px #00000014;
        text-align: center;
    }

        .alert-inform .reviews-prp .form-group:nth-child(odd) {
            margin-right: 15px;
        }

    .alert-inform .reviews-product .rating-symbol {
        margin-right: 8px;
        font-size: 18px;
    }

    .alert-inform .reviews-prp .form-group label {
        font-weight: 600;
        font-size: 14px;
    }

    .alert-inform .reviews-prp .form-group .rating-symbol {
        font-size: 22px;
        margin-right: 4px;
    }

.alert-inform .reviews-msj p {
    padding-top: 14px;
    font-size: 13px;
}

    .alert-inform .reviews-msj p a {
        font-weight: 600;
        text-decoration: underline;
    }
/*#endregion alert-inform review*/

/*#region ri-installment-options*/
.limit-box {
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    border: 1px solid #e5e5e5;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
    .limit-box .limit-price {
        font-size: 24px;
        display: inline-flex;
        font-weight: 600;
        align-items: center;
    }
        .limit-box .limit-price span {
            padding-left: 30px;
        }
        .limit-box .limit-price::before {
            font-family: "kmicons";
            content: "\f120";
            margin-right: 20px;
            font-size: 42px;
            line-height: 44px;
            font-weight: 100;
            color: red;
        }
    .limit-box .limit-btn {
        border: 1px solid #ccc;
        padding: 10px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }
        .limit-box .limit-btn::before {
            font-family: "kmicons";
            content: "\f138";
            margin-right: 10px;
            font-weight: 100;
            font-size: 22px;
        }

    .ri-installment .block-title-1 {
        border-color: #e5e5e5;
        padding: 0 0 14px;
        margin: 0 0 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
    }

.ri-installment-options {
    display: flex;
    flex-direction: row;
    align-items: flex-start;

}
    .ri-installment-options .form-group .radio {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 20px 0 0;
    }

        .ri-installment-options .form-group .radio label {
            padding-left: 0;
            padding-right: 0;
            width: 17px;
        }

        .ri-installment-options .form-group .radio input[type="radio"] {
            margin-left: 27px;
        }

        .ri-installment-options .form-group .radio label::after {
            margin-left: 0px;
        }

        .ri-installment-options .form-group .radio label::before {
            margin-left: 0px;
        }

.ri-inst-table {
    display: flex;
    flex-direction: column;
    align-content: space-between;
    align-items: center;
    box-shadow: 0px 1px 3px #00000026;
    border-radius: 8px;
    margin-top: 10px;
}
    .ri-inst-table .title {
        font-size: 20px;
        font-weight: 600;
        display: block;
        text-align: center;
        width: 100%;
        padding: 14px 0;
    }

    .ri-inst-table .ri-inst-total {
        display: block;
        text-align: center;
        width: 100%;
        padding: 5px 0;
        background: #efefef;
    }

        .ri-inst-table .ri-inst-total span {
            display: block;
            font-size: 16px;
            font-weight: 600;
        }

    .ri-inst-table.active {
        box-shadow: 0px 1px 5px #00000042;
    }

    .ri-inst-table .table {
        margin-bottom: 0;
    }

    .ri-inst-table .table-striped > tbody > tr:nth-of-type(odd) {
        background: none;
    }

    .ri-inst-table .table-striped > tbody > tr:nth-of-type(even) {
        background: #efefef;
    }

    .ri-inst-table .table th {
        font-weight: 600;
        line-height: 16px;
        border: none;
        padding: 10px 25px;
    }

    .ri-inst-table .table td {
        border: none;
        line-height: 16px;
        padding: 10px 25px;
    }


/*#endregion ri-installment-options*/
/*#region ri-status-page*/
.ristatuspage hr {
    margin:25px 0;
}
.ristatuspage .border-box {
    margin-bottom: 20px;
    width: 49%;
    float: left;
    min-height: 200px;
}
    .ristatuspage .border-box:first-child {
        margin-right: 18px;
    }
.ristatus-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.ristatus-info .ristatus-name {
    font-weight: 600;
    font-size: 22px;
    display: block;
    padding-bottom: 8px;
}
.ristatus-info span {
    display: block;
    font-size: 16px;
}
.ristatus-st {
    font-size: 16px;
}
.ristatus-alimit, .ristatus-limit {
    color: red;
    font-size: 16px;
    font-weight: 600;
}
    .ristatus-alimit span, .ristatus-limit span {
        display: block;
        font-size: 16px;
        padding-bottom: 6px;
    }
.border-box .block-title-4 {
    padding: 0 0 5px;
}
.ristatuspage .table-bordered > thead > tr > th {
    border-bottom-width: 0;
    padding: 14px 8px;
}
/*#endregion ri-status-page*/
.login-container .login-panel {
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    border: 1px solid #e5e5e5;
}
.login-panel .login-header {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}
.login-header h1.section-title-inner {
    padding-bottom: 0;
    font-size: 24px;
}
.upload-file {
    padding: 15px;
}
.upload-file span {
    font-size: 16px;
    color: #999;
    display: block;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 20px;
}


    .upload-file .form-group {
        text-align: center;
        margin-bottom: 0;
    }
        .upload-file .form-group label {
            background: #e94637;
            display: block;
            border-radius: 4px;
            padding: 6px 20px;
            font-size: 14px;
            color: #fff;
            margin-top: 20px;
            cursor: pointer;
        }
    .upload-file .form-group input[type="file"] {
        display: none;
    }
.upload-box {
    width: 50%;
}
/*#region panel default*/
.panel-default {
    border-color: #e5e5e5;
    box-shadow: none;
    border-radius: 8px;
}

    .panel-default > .panel-heading {
        background-color: transparent;
        border-width: 0;
        padding: 15px 15px 0px;
        border-color: #e5e5e5;
    }
        .panel-default > .panel-heading > .panel-title > a:after {
            font-family: "kmicons";
            content: "\f165";
            float: right;
            font-weight: normal;
            font-size: 20px;
        }
        .panel-default > .panel-heading > .panel-title > a.collapsed:after {
            content: "\f166";
        }
/*#endregion panel default*/

/*#region scart list*/
h1.section-title-inner {
    padding-bottom: 30px;
}
.cart-table.border-box {
    padding: 0 24px;
}
.cart-product {
    display: flex;
    align-items: flex-start;
    margin: 20px 0;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding: 30px 0;
}
.cart-table .cart-product:last-child {
    border-bottom: none;
}

    .cart-product .cart-product-thumb div {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 5px;
    }


    .cart-product .cart-description h4 {
        font-size: 15px;
        padding-bottom: 10px;
    }

.cart-product .price-box {
    min-height: inherit
}
.cart-product .cart-description .price {
    font-size: 18px;
    font-weight: 600;
}
.cart-product .product-discount {
    margin-right: 10px;
}
.cart-product .discount {
    font-weight: 600;
    padding: 4px 4px;
}
    .cart-product .campaign-prbox .camp-price span {
        display: block;
    }
.cart-product .cart-description .campaign-name {
    margin-top: 10px;
    font-weight: 600;
}

.cart-footer {
    margin-top: 20px;
}

    .desc-box {
        display: flex;
        align-items: center;
    }
    .cart-product .campaign-prbox {
        border-left: 1px solid #e5e5e5;
        margin: 0 0 0 8px;
        padding: 0 0 0 8px;
    }


@media (max-width:767px) {
    h1.section-title-inner {
        padding-bottom: 20px;
        font-size: 26px;
    }
    .cart-product {
        margin: 10px 0;
        padding: 10px 0;
    }
    .cart-table.border-box {
        padding: 0 10px;
    }
    .cart-product .product-discount {
        float: left;
    }
    .cart-product-thumb {
        padding: 0;
    }
    .cart-product .cart-description {
        padding: 0;
    }
    .cart-product .cart-description h4 {
        font-size: 14px;
        padding-bottom: 6px;
        line-height: 18px;
    }
    .cart-product .price-box .list-price {
        line-height: 14px;
        font-size: 12px;
    }
    .cart-product .cart-description .price {
        font-size: 15px;
        line-height: 16px;
    }
    .campaign-prbox .camp-label {
        font-size: 12px;
    }
}
/*#endregion scart list*/
/*#region cart summary*/

.cart-summary {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    box-shadow: 0 1px 2px 0 rgb(72 72 72 / 8%);
    border: 1px solid #e5e5e5;
}
div#cart-summary-main {
    padding: 20px 20px 0;
}
    .cart-summary #cart-summary-main .ctsum-title {
        font-size: 18px;
        font-weight: 600;
        padding-bottom: 18px;
    }
    .cart-summary #cart-summary-main > div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 10px 0;
    }

.cart-summary .price {
    font-weight: 600;
}
.cart-summary .total-price span {
    font-weight: 400;
    font-size: 14px;
}
.cart-summary .total-price {
    font-weight: 600;
    font-size: 18px;
}
    .cart-summary .ctsum-discount, .cart-summary .ctsum-discount .price, .cart-summary .ctsum-campdiscount, .cart-summary .ctsum-campdiscount .price {
        color: red;
    }

    .cart-summary .input-group {
        border-bottom: 1px solid #e5e5e5;
    }

    .cart-summary input.form-control.input-sm.coupon-code {
        background: none;
        border: none;
        padding: 0;
        font-size: 12px;
    }


.input-group-btn .btn-coupon {
    font-size: 14px;
    text-transform: none;
    width: 66px;
    background: #fff;
    border: none;
    padding: 11px 10px 11px 0;
    color: #000;
    border-radius: 0 8px 8px 0;
}
    .input-group-btn .btn-coupon:after {
        font-family: "kmicons";
        content: "\f149";
        font-weight: 600;
        font-size: 14px;
        vertical-align: middle;
    }

.panel-group.usecoupon {
    margin: 20px 0 0;
    clear: both;
}
    .panel-group.usecoupon .panel.panel-default {
        border: 1px solid #efefef;
        border-radius: 8px;
    }

    .panel-group.usecoupon .panel-heading {
        padding: 10px 20px;
    }

    .panel-group.usecoupon .panel-heading .panel-title {
        font-size: 14px;
        line-height: 26px;
    }

    .panel-group.usecoupon .panel-heading + .panel-collapse > .panel-body {
        border-color: #efefef;
        padding: 20px;
        border-radius: 0;
    }
.panel-group.usecoupon .panel-body {
    border: none;
}

    .panel-group.usecoupon .panel-body .input-group {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
    }

        .panel-group.usecoupon .panel-body .input-group input.form-control {
            border-width: 0;
            border-radius: 8px;
            height: 44px;
            box-shadow: none;
        }

@media (min-width:992px) {
    .sld-box {
        display: flex;
        clear: both;
        margin-bottom: 60px;
    }

        .sld-box .contentBox {
            position: sticky;
            top: 79px;
            display: flex;
        }
    .cart-summary .total-price {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .cart-summary .ctsum-total {
        border-top: 1px solid #e5e5e5;
        padding: 14px 20px 20px;
    }
        .cart-summary .ctsum-total .btn-next-step {
            width: 100%;
        }
}
@media (max-width:991px) {
    .sld-box {
        display: flex;
        flex-direction: column;
    }
    .cart-summary {
        border-radius: 0px;
    }
    .cart-summary-container {
        position: fixed;
        bottom: 0;
        z-index: 11;
        left: 0;
        background: #fff;
    }

    #cart-summary-main {
        display: none;
        border-bottom: 1px solid #ccc;
    }

    .ctsum-total {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }
    .cart-summary .ctsum-total .total-price {
        cursor: pointer;
    }
    .cart-summary .total-price span {
        display: block;
        line-height: 16px;
    }
    .ctsum-total .total-price:after {
        font-family: "kmicons";
        content: "\f147";
        margin-left: 10px;
        font-size: 16px;
    }
    .ctsum-total .total-price.show:after {
        content: "\f146";
    }
    .ctsum-contract {
        display: flex;
        margin-top: 20px;
    }
}
/*#endregion cart summary*/
/*#region empty cart*/



.empty-cart {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.empty-msk {
    background: url(/Images/empty.png) no-repeat center center;
    width: 432px;
    height: 249px;
}
.empty-cart h2 {
    font-size: 34px;
    line-height: 28px;
    margin: 36px 0 60px;
}
    .empty-cart .btn {
        min-width: 270px;
    }

@media (min-width:768px) {
    .empty-cart {
        margin-bottom: 60px;
    }
}

@media (max-width:767px) {
    .empty-cart {
        margin-bottom: 30px;
    }
}
/*#endregion empty cart*/
/*#endregion cart quanity*/
.cart-quanity {
    max-width: 38px;
    padding: 0;
}
.quanity-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0px;
    border-radius: 8px;
}
    .quanity-box.focused {
        background: #efefef;
    }
    .quanity-box input {
        width: 30px;
        height: 24px;
        font-size: 16px;
        text-align: center;
        border: none;
        font-weight: 600;
        margin: 4px 0;
        line-height: 1.5;
        outline: none;
        background: transparent;
    }
.cart-quanity .touchspin {
    font-size: 18px;
    height: 30px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 6px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quanity-box input[type=number] {
    -moz-appearance: textfield;
}
.quanity-box input::-webkit-outer-spin-button,
.quanity-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*#endregion cart quanity*/

/*#region cart advice product*/
.campaign-advice {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    -webkit-box-shadow: 0 1px 2px 0 rgb(0 0 0 / 8%);
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    margin-bottom: 20px;
}

        .campaign-advice .panel-title div:not(:first-child) {
            margin-left: -10px;
        }

        .campaign-advice .panel-title div {
            border: 1px solid #e5e5e5;
            border-radius: 8px;
            display: inline-flex;
            font-size: 16px;
            background: #ffffff;
            height: 40px;
            line-height: 36px;
            text-align: center;
            width: 40px;
            align-items: center;
            flex-direction: row;
        }
        .campaign-advice .panel-title img {
            border-radius: 8px;
            margin: 0 auto;
            vertical-align: middle;
            width: 100%;
            height: 100%;
        }
    .campaign-advice .panel-default {
        border: none;
        border-radius: 8px;
    }
        .campaign-advice .panel-default .panel-heading {
            padding: 20px;
            border-radius: 8px;
        }
        .campaign-advice .panel-default > .panel-heading > .panel-title:after {
            font-family: "kmicons";
            content: "\f165";
            float: right;
            font-weight: normal;
            font-size: 20px;
        }

        .campaign-advice .panel-default > .panel-heading > .panel-title.collapsed:after {
            content: "\f166";
        }
    .campaign-advice .item {
        height: auto;
        width: 100%;
        margin-bottom: 0px;
        display: block;
        border-bottom: 1px solid #e5e5e5;
    }
        .campaign-advice .item:last-child {
            margin-bottom: 0px;
            border-bottom: none;
        }
        .campaign-advice .item .product {
            display: flex;
            flex-direction: row;
            align-items: center;
            border: none;
            border-radius: 8px;
            padding: 20px;
            text-align: left;
        }
.campaign-name, .item .price-campaign .cmp-price {
    color: red;
}
    .campaign-advice .advice-image img {
        max-width: 60px;
    }
    .campaign-advice .advice-desc a {
        display: block;
        font-size: 13px;
    }
    .campaign-advice .item .addtocart {
        opacity: 0;
    }
    .campaign-advice .item:hover .addtocart {
        opacity: 1;
    }
    .campaign-advice .item .btn-buy {
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        padding: 6px 14px;
    }
/*#endregion cart advice product*/

/*#region shopping cart list*/

.item.cartlist .description {
    min-height: 42px;
    padding: 5px 5px 0px 5px;
}
.item.cartlist .product-name a {
    font-size: 13px;
    line-height: 16px;
}
.item.cartlist .product .product-discount {
    margin-right: 10px;
    position: absolute;
    top: 6px;
    left: 5px;
}
.item.cartlist .image-hover {
    padding: 20px;
}
/*#endregion shopping cart list*/

/*#region product tab mobile*/
@media screen and (max-width: 991px) {
    .product-tab .panel-group {
        border-top: 1px solid #e5e5e5;
    }
    .product-tab .panel-default {
        border: none;
    }

    .product-tab .panel-group .panel-heading {
        padding: 15px 15px 15px;
        border-bottom: 1px solid #e5e5e5;
    }

    .panel-default > .panel-heading + .panel-collapse > .panel-body {
        border: none;
    }
}

/*#endregion product tab mobile*/
/*#region prd properties*/
.prd-properties > .table {
    margin-bottom: 0px;
}
.prd-properties > table > thead > tr > th {
    background-color: #fff;
    text-transform: none;
    border: none;
    padding: 0;
    line-height: 24px;
}

.prd-properties > table:first-child > thead > tr > th {
    padding-bottom: 20px;
}

.prd-properties > .table > tbody > tr > td {
    border: none;
    font-size: 14px;
}

    .prd-properties > .table > tbody > tr > td a {
        text-decoration: underline;
    }
/*#endregion prd properties*/

/*#region checkout-pages step4*/
.checkout-pages.step4 .layout {
    margin: 60px auto;
    text-align: center;
}

.checkout-pages.step4 h1 {
    font-size: 26px;
    padding: 20px 0;
    line-height: 32px;
}

.checkout-pages.step4 .layout p {
    margin-bottom: 20px;
}
.checkout-pages.step4 .layout i {
    font-size: 30px;
    background: #26D682;
    padding: 16px;
    border-radius: 50%;
    color: #fff;
}
    .checkout-pages.step4 .layout i::before {
        font-weight: bold;
    }
.checkout-pages.step4 .layout div {
    margin: 20px 0;
}
.checkout-pages.step4 .layout .orderid-btn {
    border: 1px solid #e5e5e5;
    border-radius: 80px;
    color: #328eca;
    font-size: 18px;
    padding: 14px 30px;
    margin-top: 0;
    font-weight: 600;
    display: inline-block;
}
.step4-button {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}
    .step4-button .btn {
        margin: 0 10px;
    }
/*#endregion checkout-pages step4*/
/*#region order tracking*/
.order-tracking {
    margin: 50px auto;
    max-width: 400px;
}
    .order-tracking .order-tracking-desc {
        margin-bottom: 30px;
    }
.tracking-sep {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.order-tracking .km-submit {
    margin-top: 15px;
}
/*#endregion order tracking*/
/*#region qpreview*/
.qpreview {
    width: 700px;
    height: 300px;
}
    .qpreview .product-image-list a {
        display: block;
        margin-bottom: 6px;
    }
    .qpreview .product-title {
        font-size: 18px;
    }
    .qpreview .product-price {
        margin-top: 5px;
    }
    .qpreview .product-price-rate {
        font-size: 15px;
        height: 32px;
        width: 42px;
    }
    .qpreview .product-price .price-sales {
        font-size: 18px;
        line-height: 18px;
    }
    .qpreview .product-price .price-standard {
        font-size: 14px;
    }
    .qpreview .product-variants a {
        font-size: 14px;
        padding: 3px;
        margin-right: 8px;
        min-width: 32px;
    }
    .qpreview .cnt-quantity .bootstrap-touchspin .btn {
        padding: 5px 12px;
        height: 34px;
    }
    .qpreview .cnt-quantity .input-group input.form-control {
        height: 34px;
    }

/*#endregion qpreview*/

/*#region qpreviewmin*/
.qpreviewmin {
    max-width:500px;
}
.qpreviewmin .product-title {
    font-size: 16px;
}
.qpreviewmin .product-variants a {
    font-size: 14px;
    padding: 3px;
    margin-right: 8px;
    min-width: 32px;
}
.qpreviewmin-btm {
    display: flex;
    align-items: center;
    flex-direction: row;
}
    .qpreviewmin-btm .product-price {
        margin: 0 20px 0 0;
    }
    .qpreviewmin-btm .product-price-rate {
        font-size: 15px;
        height: 32px;
        width: 42px;
    }
    .qpreviewmin-btm .product-price .price-sales {
        font-size: 18px;
        line-height: 18px;
    }
    .qpreviewmin-btm .product-price .price-standard {
        font-size: 14px;
    }
    .qpreviewmin-btm .cart-actions {
        display: flex;
    }


/*#endregion qpreviewmin*/


/*#region horizontal filter*/

.horizontal-filter .filter-content {
    display: flex;
}
.horizontal-filter .category-panel .panel-heading .panel-title {
    cursor: pointer;
}
@media (min-width:992px) {
    .horizontal-filter {
        background: #efefef;
        transition: all 0.1s ease-in-out 0.2s;
        -webkit-transition: all 0.1s ease-in-out 0.2s;
        -moz-transition: all 0.1s ease-in-out 0.2s;
        -ms-transition: all 0.1s ease-in-out 0.2s;
        -o-transition: all 0.1s ease-in-out 0.2s;
        border-radius: 8px;
        height: 55px;
        margin-bottom: 20px;
    }
        .horizontal-filter .filter-content {
            flex-direction: row;
            padding: 9px;
        }
        .horizontal-filter .category-panel .panel-heading {
            border-bottom: none;
            margin-right: 12px;
            padding:0;
        }
            .horizontal-filter .category-panel .panel-heading .panel-title {
                padding: 8px 16px;
                background: #fff;
                border-radius: 4px;
            }
        .horizontal-filter .category-panel.open .panel-heading .panel-title {
            border-radius: 6px 6px 0 0;
        }

            .horizontal-filter .category-panel.open .panel-heading .panel-title:after {
                content: "";
                background: #fff;
                height: 14px;
                display: block;
            }
        .horizontal-filter .category-panel .panel-body {
            padding: 15px 15px 5px;
            min-width: 290px;
            border: none;
            -webkit-box-shadow: 0 5px 8px rgb(0 0 0 / 8%);
            box-shadow: 0 5px 8px rgb(0 0 0 / 8%);
            margin: 0;
        }
}

@media (max-width:991px) {
    .horizontal-filter .filter-content {
        flex-direction: column;
    }
    .horizontal-filter .category-panel .panel-heading .panel-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 44px;
    }
        .horizontal-filter .category-panel .panel-heading .panel-title:after {
            content: "\f166";
            font-weight: normal;
            font-size: 20px;
            font-family: "kmicons";
            float: right;
            padding-right: 5px;
        }
    .horizontal-filter .category-panel.open .panel-heading .panel-title:after {
        content: "\f165";
    }

    .horizontal-filter .dropdown-backdrop {
        display: none;
    }
    .horizontal-filter .category-panel .panel-body.dropdown-menu {
        position: static;
        float: none;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        border: none !important;
        margin: 0;
        padding: 10px 0 0;
    }
        .horizontal-filter .category-panel .panel-body.dropdown-menu .filter-item a {
            margin-top: 6px;
            margin-bottom: 3px;
        }
}
/*#endregion horizontal filter*/

/*#region product bundle*/

.product-bundle {
    padding: 10px 0 0;
}

    .product-bundle .prd-bundle-title {
        margin-bottom: 4px;
        display: block;
        font-weight: 600;
    }
    .product-bundle div > span {
        padding: 0 2px;
    }
/*#endregion product bundle*/
/*#region cart promo*/
.cart-promo-title {
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 5px;
}
.cart-promo {
    padding-bottom: 10px;
    line-height: 1.3;
    display: flex;
    flex-direction: row;
    align-items: center;
}
    .cart-promo img {
        width: 40px;
        margin: 0 12px 0 0;
    }
    .cart-promo .item-name {
        font-weight: 500;
        font-size: 12px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-letter-spacing: normal;
        -moz-letter-spacing: normal;
        -ms-letter-spacing: normal;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .cart-promo .item-quantity {
        font-size: 11px;
        display: block;
    }
    .cart-promo .price-standard {
        font-size: 13px;
        text-decoration: line-through;
        display: inline-block;
        color: #7c7c7c;
        margin-right: 5px;
    }
.cart-product .cart-description .cart-promo .price {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
}
.cart-promo .btn.btn-sm.btn-remove-child {
    font-size: 18px;
    height: 26px;
    border: 1px solid #e5e5e5;
    background: #fff;
    border-radius: 6px;
    width: 26px;
    display: flex;
    margin-left: 20px;
    padding: 0;
    align-items: center;
    justify-content: center;
}
/*#endregion cart promo*/

/*#region gift wrap*/
.btn-gift-wrap {
    display: inline-flex;
    font-size: 14px;
    border-radius: 4px;
    background-color: #efefef;
    line-height: 1;
    border: 1px solid #e5e5e5;
    width: auto;
    padding: 4px 12px;
    text-align: center;
    margin-top: 10px;
    align-items: center;
}
    .btn-gift-wrap i {
        font-size: 17px;
        margin-right: 3px;
    }

.gift-wrap-body .product-list {
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
    .gift-wrap-body .product-list .price-box {
        min-height: auto;
    }
    .gift-wrap-body .product-list .btn-selectgw-item {
        border: 1px solid #000;
        border-radius: 2px;
        padding: 0 5px;
        font-weight: 600;
        display: block;
        font-size: 13px;
        line-height: 1.4;
        text-align: center;
    }
    .gift-wrap-body .product-list .btn-selectgw-item:hover {
        border: 1px solid #000;
        background:#000;
        color:#fff;
    }
/*#endregion gift wrap*/
@media (min-width:992px) {
    .horizontal-filter .dropdown-content {
        display: none;
        position: absolute;
        background: #fff;
        z-index: 999;
        left: 0;
        top: auto;
    }

    .horizontal-filter .dropdown:hover .dropdown-content, .horizontal-filter .dropdown.open .dropdown-content {
        display: block;
    }
}

@media (max-width:991px) {
    .horizontal-filter .dropdown-content {
        display: none;
        background: #fff;
    }

    .horizontal-filter .dropdown.open .dropdown-content {
        display: block;
    }

}