﻿@font-face {
    font-family: "Material Icons";
    font-style: normal;
    font-weight: 400;
}

.material-icons {
    font-family: "Material Icons";
    font-weight: 400;
    font-style: normal;
    font-size: inherit;
    letter-spacing: normal;
    line-height: inherit;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.dropdown-content {
    max-height: 150px;
}

* {
    -webkit-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
}

body {
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
    color: #292929;
    background-color: #fff;
    /*background-color: #f1f1f1;*/
    font-size: normal;
    font-weight: 400;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -ms-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
}

a {
    outline: 0;
    color: #555;
    line-height: normal;
}

    a:active,
    a:hover,
    a:link,
    a:visited {
        text-decoration: none;
    }

button {
    outline: 0;
}

#toast-container {
    padding: 8px;
    top: 0;
    bottom: auto;
}

    #toast-container .toast {
        border-radius: 3px;
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 14px;
        min-height: 45px;
        font-weight: 600;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    }

.flex-wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex {
    -ms-flex: 1 1 0.000000001px;
    -webkit-flex: 1;
    flex: 1;
    -webkit-flex-basis: 0.000000001px;
    flex-basis: 0.000000001px;
}

    .flex.two {
        -ms-flex: 2;
        -webkit-flex: 2;
        flex: 2;
    }

    .flex.three {
        -ms-flex: 3;
        -webkit-flex: 3;
        flex: 3;
    }

    .flex.six {
        -ms-flex: 6;
        -webkit-flex: 6;
        flex: 6;
    }

.justify-start {
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.justify-end {
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.justify-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.justify-around {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.justify-between {
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.align-start {
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.align-end {
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.align-center {
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.align-between {
    -ms-flex-align: space-between;
    -webkit-align-items: space-between;
    align-items: space-between;
}

.display-flex {
    display: inline-flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    width: 100%;
}

.display-block {
    display: block;
    position: relative;
}

.inline-block {
    display: inline-block;
    position: relative;
    width: 100%;
}

.display-none {
    display: none;
}

.color-white {
    background-color: #fff;
    color: #212121;
}

.color-green {
    background-color: Navy;
    color: #fff;
}

.color-gray {
    background-color: #333;
    color: #fff;
}

.color-blue-gray {
    background-color: #607d8b;
    color: #fff;
}

.color-cyan {
    background-color: #00bcd4;
    color: #fff;
}

.color-pink {
    background-color: #ce373e;
    color: #fff !important;
}

.color-facebook {
    background-color: #3b579d;
    color: #fff;
}

.color-twitter {
    background-color: #00aced;
    color: #fff;
}

.color-google-plus {
    background-color: #e46044;
    color: #fff;
}

.color-youtube {
    background-color: #cb2026;
    color: #fff;
}

.color-instagram {
    background-color: #517fa4;
    color: #fff;
}

.color-pinterest {
    background-color: #cc2127;
    color: #fff;
}

.color-whatsapp {
    background-color: #34bf49;
    color: #fff;
}

.error {
    font-size: 12px;
    color: #f44336;
}

.txt-white {
    color: #fff !important;
}

.txt-orange {
    color: #ff9800 !important;
}

.txt-green {
    color: #4caf50 !important;
}

.m-loader {
    background-image: url(../images/loader.gif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 120px;
}

.section .title {
    font-size: 18px;
    position: relative;
    display: block;
    margin-bottom: 4px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    width: 100%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
    z-index: 15;
}

    .header .icon {
        width: 45px;
        height: 50px;
        line-height: 50px;
        font-size: 24px;
        text-align: center;
    }

        .header .icon i {
            line-height: inherit;
        }

            .header .icon i.menu {
                line-height: 18px;
            }

        .header .icon .notification {
            font-size: 11px;
            font-weight: 600;
            position: absolute;
            top: 6px;
            right: 2px;
            line-height: 17px;
            height: 18px;
            width: 18px;
            border: 1px solid #555;
            text-align: center;
            border-radius: 50%;
            background-color: #fff;
            overflow: hidden;
        }

        .header .icon .m-txt {
            position: absolute;
            font-size: 9px;
            left: -1px;
            right: 0;
            bottom: 8px;
            height: auto;
            width: auto;
            line-height: normal;
            font-weight: 600;
        }

    .header .logo {
        position: relative;
        margin-left: 5px;
        display: block;
        width: 84px;
    }

        .header .logo img {
            height: 25px;
            width: 75px;
        }

    .header .more-vert-option {
        width: 190px !important;
        top: 2px !important;
        border-radius: 2px;
        z-index: 16 !important;
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2);
    }

        .header .more-vert-option li {
            line-height: 45px;
            min-height: 45px;
        }

            .header .more-vert-option li a {
                display: block;
                padding: 0 15px;
                line-height: 45px;
                height: 45px;
                font-size: 15px;
                color: #555;
            }

                .header .more-vert-option li a i {
                    margin-right: 8px;
                    font-size: 15px;
                }

    .header .tap-call {
        font-size: 13px;
        color: #222;
        margin-right: 15px;
        line-height: 50px;
        height: 50px;
    }

        .header .tap-call i {
            vertical-align: middle;
        }

    .header .order-text {
        font-size: 16px;
        margin-left: 15px;
        font-weight: 600;
    }

.search-bar {
    max-height: 100%;
    height: 100%;
    min-height: 100%;
}

    .search-bar .search-form {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
        height: 50px;
        line-height: 50px;
    }

    .search-bar .input-field {
        margin-top: 0;
        font-size: 15px;
        border-radius: 2px;
        height: 50px;
        line-height: 50px;
    }

        .search-bar .input-field input.input {
            margin-bottom: 0;
            height: 50px;
            border: none;
            padding: 0 8px;
            font-size: 16px;
            font-weight: 400;
        }

        .search-bar .input-field input::-webkit-input-placeholder {
            color: #555 !important;
        }

        .search-bar .input-field input:-moz-placeholder {
            color: #555 !important;
        }

        .search-bar .input-field input::-moz-placeholder {
            color: #555 !important;
        }

        .search-bar .input-field input:-ms-input-placeholder {
            color: #555 !important;
        }

        .search-bar .input-field input.input:active,
        .search-bar .input-field input.input:focus,
        .search-bar .input-field input.input:visited {
            border-bottom: none;
            box-shadow: none;
        }

        .search-bar .input-field .s-btn {
            background: 0 0;
            border: none;
            height: 50px;
            width: 50px;
            text-align: center;
            line-height: 50px;
            font-size: 24px;
            color: #555;
            font-weight: 600;
        }

.search-suggestions {
    display: block;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12);
    background-color: #fff;
    margin-top: 50px;
}

    .search-suggestions .suggestions .link-suggestion {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
        display: block;
        color: #888;
    }

        .search-suggestions .suggestions .link-suggestion span {
            overflow: hidden;
            padding: 0 8px;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .search-suggestions .suggestions .link-suggestion .material-icons {
            width: 50px;
            font-size: 20px;
            text-align: center;
        }

.footer .get-in-touch a {
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

    .footer .get-in-touch a i {
        height: 20px;
        width: 20px;
        font-size: 16px;
        line-height: 20px;
        position: relative;
        top: 2px;
        display: inline-block;
    }

        .footer .get-in-touch a i.whatsapp {
            top: 4px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: 14px;
            background-image: url(../images/whatsapp.png);
        }

.footer .f-links a.fl {
    float: left;
    font-size: 12px;
    color: #fff;
    width: 33.3333333333%;
    margin: 8px 0;
    padding: 0 5px;
}

.footer .payment-options {
    background-image: url(../images/payment-options.png);
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    height: 70px;
}

.footer .copy-right {
    font-size: 12px;
    text-align: center;
    display: block;
    margin-bottom: 0;
}

.user-profile {
    position: relative;
    background-image: url(../images/cover-image-1.png);
    background-size: cover;
    background-position: 0 -80px;
    background-repeat: no-repeat;
    height: 70px;
    display: inline-block;
    width: 100%;
}

    .user-profile .profile-menu {
        padding-left: 10px;
        padding-bottom: 10px;
        padding-right: 10px;
        width: 100%;
        display: inline-block;
        margin-top: 5px;
        height: 70px;
    }

    .user-profile .pic {
        height: 60px;
        width: 60px;
        background-image: url(../images/dp.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 50px;
        display: inline-block;
        float: left;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.4);
    }

    .user-profile .details {
        color: #fff;
        position: relative;
        display: inline-block;
        margin-top: 10px;
        margin-left: 8px;
    }

        .user-profile .details a.sidebar_signin {
            margin-top: 7px;
            margin-right: 8px;
            height: 30px;
            line-height: 28px;
            color: #fff;
            font-size: 14px;
            border: 1px solid #fff;
            display: inline-block;
            padding: 0 10px;
            border-radius: 2px;
        }

        .user-profile .details .user-name {
            font-size: 16px;
            font-weight: 600;
            text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
            display: block;
        }

        .user-profile .details .location {
            font-size: 12px;
            display: block;
            font-weight: 600;
            text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
        }

            .user-profile .details .location i {
                position: relative;
                top: 1px;
                font-size: inherit;
            }

    .user-profile .down-arrow {
        line-height: 40px;
        padding: 0;
        height: 40px;
        width: 40px;
        color: #fff;
        text-align: center;
        font-size: 22px;
        margin-top: 15px;
        border-radius: 2px;
    }

        .user-profile .down-arrow i.open {
            transform: rotate(180deg);
        }

.main-menu {
    margin: 0;
    position: relative;
    display: block;
}

    .main-menu li {
        line-height: normal;
    }

        .main-menu li a.m-item {
            line-height: 35px;
            height: 35px;
            display: block;
            font-size: 15px;
        }

        .main-menu li div.title {
            padding: 0 15px;
            line-height: 40px;
            font-size: 15px;
            position: relative;
            font-weight: 600;
        }

        .main-menu li a {
            padding: 0 15px 0 0;
            line-height: 45px;
            height: 45px;
            font-size: 16px;
            color: #333;
        }

            .main-menu li a.home {
                border-bottom: 1px solid #ccc;
            }

            .main-menu li a i.icon {
                height: 30px;
                width: 30px;
                float: left;
                margin: 2px 0;
                margin-right: 10px;
                background-position: center;
                background-repeat: no-repeat;
                background-size: 25px;
            }

            .main-menu li a i.material-icons {
                float: right;
                line-height: 35px;
                font-size: 1.3em;
                color: #848484;
            }

    .main-menu .s-catetory li a.sc {
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        font-weight: 600;
        color: #666;
    }

        .main-menu .s-catetory li a.sc span.c-name {
            margin-left: 40px;
        }

.sidebar_menu.bn {
    border-top: none;
}

.sidebar_menu {
    margin: 0;
    position: relative;
    display: block;
    border-top: 1px solid #ccc;
}

    .sidebar_menu li div.title {
        padding: 0 15px;
        line-height: 40px;
        font-size: 15px;
        position: relative;
        font-weight: 600;
    }

    .sidebar_menu li {
        line-height: normal;
    }

        .sidebar_menu li a {
            padding: 0 20px;
            line-height: 40px;
            height: 40px;
            font-size: 14px;
            display: block;
        }

            .sidebar_menu li a i {
                vertical-align: bottom;
                font-size: 18px;
                margin-right: 8px;
            }

.body-section {
    margin-top: 50px;
}

    .body-section.mb60 {
        margin-bottom: 60px;
    }

.c-container {
    width: 100%;
    padding: 0 7px;
    margin: 0 auto;
    max-width: 1280px;
    display: block;
    position: relative;
    box-sizing: border-box;
}

.list-slider-section {
    display: block;
    position: relative;
}

    .list-slider-section .title {
        font-size: 16px;
        position: relative;
        display: block;
        margin-bottom: 8px;
    }

    .list-slider-section .list-slider {
        position: relative;
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        white-space: nowrap;
        padding: 0 3%;
        box-sizing: border-box;
    }

.list-section .title {
    font-size: 18px;
    position: relative;
    display: block;
    margin-bottom: 4px;
    margin-top: 0;
    width: 70%;
    font-weight: 600;
}

.list-box {
    position: relative;
    width: 50%;
    padding: 1px;
    display: inline-block;
}

    .list-box a.wishlist {
        position: absolute;
        right: 8px;
        top: 8px;
        font-size: 15px;
        height: 28px;
        width: 28px;
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.6);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.12);
        text-align: center;
        line-height: 30px;
        z-index: 11;
        border-radius: 50px;
        color: #fff;
    }

        .list-box a.wishlist i {
            font-size: 17px;
            vertical-align: top;
        }

        .list-box a.wishlist.active {
            background-color: #ff5a5f;
            color: #fff;
        }

    .list-box .add-bag {
        position: absolute;
        z-index: 11;
        right: 10px;
        bottom: 10px;
        font-size: 12px;
        border-radius: 2px;
        height: 24px;
        line-height: 24px;
        min-width: 80px;
        text-align: center;
        font-weight: 600;
    }

    .list-box a.box,
    .list-box div.box {
        display: block;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12);
        background-color: #fff;
    }

    .list-box figure.figure {
        margin: 0;
        position: relative;
    }

        .list-box figure.figure .tags {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 0;
        }

            .list-box figure.figure .tags .stag {
                display: inline-block;
                font-size: 11px;
                padding: 2px 5px;
                margin-bottom: 4px;
                background-color: rgba(0, 0, 0, 0.6);
                color: #fff;
                box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
                border-top-right-radius: 3px;
                border-bottom-right-radius: 3px;
                font-weight: 600;
                font-style: italic;
            }

        .list-box figure.figure img {
            width: 100%;
            height: 100%;
            display: inherit;
            outline: 0;
            border: none;
            text-indent: -999px;
            min-height: 192px;
        }

    .list-box .catalouge-image {
        margin: 5px 0 0;
        display: inline-block;
        position: relative;
        width: 100%;
        float: left;
    }

        .list-box .catalouge-image li {
            float: left;
            display: inline-block;
            position: relative;
            padding: 0 2px;
            width: 33.3333333%;
        }

            .list-box .catalouge-image li img {
                height: 100%;
                width: 100%;
                display: inherit;
                cursor: pointer;
            }

    .list-box .details {
        display: inline-block;
        position: relative;
        padding: 5px 5px;
        width: 100%;
    }

        .list-box .details .name {
            font-size: 14px;
            width: 100%;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            color: #000;
        }

        .list-box .details .price-section {
            display: block;
            width: 100%;
            margin-top: 0;
            padding: 0;
        }

            .list-box .details .price-section .price {
                color: #555;
                float: left;
                display:flex;
            }

        .list-box .details .price .del-price {
            line-height: normal;
            display: block;
            font-size: 12px;
            color: #000;
            margin-top: 8px;
            margin-right: 5px;
            margin-left: 10px;
        }

        .list-box .details .price .ap {
            font-size: 22px;
            display: block;
            margin-bottom: 0;
            color: #000;
            float: left;
        }

            .list-box .details .price .ap span.currencycode {
                font-size: 12px;
                font-weight: 600;
                color: #444;
            }

            .list-box .details .price .ap .offer {
                font-size: 14px;
                font-style: italic;
                color: #ff5a5f;
                font-weight: 600;
                margin-left: 4px;
            }

        .list-box .details .new {
            float: right;
            font-size: 12px;
            margin-top: 15px;
            font-weight: 600;
        }

        .list-box .details .box {
            width: 70%;
            float: left;
            display: inline-block;
            box-shadow: none;
        }

            .list-box .details .box.b2 {
                width: 30%;
                text-align: right;
            }

            .list-box .details .box .label {
                font-size: 10px;
                text-transform: uppercase;
                display: block;
                color: grey;
            }

            .list-box .details .box .ctg-price {
                font-size: 13px;
                display: block;
            }

.input-field {
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #555;
}

    .input-field.m {
        margin-bottom: 15px;
    }

    .input-field label.label {
        left: 0;
        color: inherit;
        font-weight: 600;
    }

    .input-field label.country {
        font-size: 0.8rem;
        -webkit-transform: translateY(-140%);
        transform: translateY(-140%);
    }

    .input-field input.input {
        margin-bottom: 0;
        color: inherit;
    }

    .input-field textarea.textarea {
        margin-bottom: 0;
        color: inherit;
        padding: 8px 0;
        max-height: 60px;
    }

    .input-field span.error {
        font-size: 12px;
        font-weight: 600;
    }

    .input-field input.select-dropdown {
        margin: 0;
        width: 100%;
    }

    .input-field .dropdown-content {
        top: 15px !important;
        z-index: 13;
        max-height: 280px;
    }

        .input-field .dropdown-content li {
            line-height: normal;
            height: auto;
            min-height: 0;
        }

        .input-field .dropdown-content a,
        .input-field .dropdown-content span {
            font-size: 13px;
            padding: 4px 10px;
            font-weight: 400;
            color: #555;
        }

    .input-field .select-wrapper span.caret {
        line-height: 43px;
        top: 0;
        right: 8px;
        color: #555;
    }

.input-button {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
}

    .input-button.mn,
    .input-field.mn {
        margin-bottom: 0;
    }

    .input-button button.s-btn {
        display: block;
        position: relative;
        border: none;
        font-size: 16px;
        padding: 0;
        width: 100%;
        text-align: center;
        font-weight: 600;
        height: 40px;
        line-height: 40px;
    }

.radio-field label.label {
    padding-left: 30px;
    font-size: 14px;
    color: #444;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

    .radio-field label.label:before {
        left: 2px;
        border: 1px solid #ababab !important;
        top: 5px;
        width: 16px;
        height: 16px;
        margin: 0;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
    }

    .radio-field label.label:after {
        width: 10px;
        height: 10px;
        background-color: #555;
        border: none;
        border-radius: 50%;
        top: 8px;
        left: 5px;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        margin: 0;
    }

.radio-field input.radio:checked + label.label:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.checkbox-field label.label b,
.radio-field label.label b {
    position: absolute;
    top: 0;
    right: 0;
}

.checkbox-field input.checkbox {
    position: absolute;
    left: -9999px;
}

.checkbox-field label.label {
    padding-left: 30px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
}

    .checkbox-field label.label:after,
    .checkbox-field label.label:before {
        content: "";
        position: absolute;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-backface-visibility: hidden;
    }

    .checkbox-field label.label:before {
        left: 2px;
        top: 3px;
        height: 15px;
        width: 15px;
        border: 1px solid #ababab;
    }

.checkbox-field input.checkbox:checked + label.label:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.checkbox-field label.label:after {
    left: 2px;
    top: 4px;
    opacity: 0;
    -webkit-transform: scale(0) rotate(80deg);
    -ms-transform: scale(0) rotate(80deg);
    -o-transform: scale(0) rotate(80deg);
    transform: scale(0) rotate(80deg);
    width: 18px;
    height: 7px;
    border-bottom: 2px solid #555;
    border-left: 2px solid #555;
    border-bottom-left-radius: 2px;
}

.checkbox-field input.checkbox:checked + label.label:after {
    -webkit-transform: scale(1) rotate(-50deg);
    -ms-transform: scale(1) rotate(-50deg);
    -o-transform: scale(1) rotate(-50deg);
    transform: scale(1) rotate(-50deg);
    opacity: 1;
}

.pre-loader {
    margin-top: 8px;
    background-color: rgba(255, 90, 95, 0.3);
    margin-bottom: 0;
    height: 3px;
}

    .pre-loader .indeterminate {
        background-color: #ff5a5f;
    }

.empty-section {
    display: block;
    position: relative;
    text-align: center;
    padding: 5em 0;
}

    .empty-section .e-img {
        height: 120px;
        width: 120px;
    }

    .empty-section .e-title {
        font-size: 22px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .empty-section .s-btn {
        padding: 8px 0;
        height: 35px;
        width: 200px;
        border-radius: 3px;
        background-color: #f1f1f1;
        color: #333;
    }

.modal.bottom-sheet.size-chart-modal {
    max-height: 100%;
}

.size-chart-modal .size-chart-close-btn {
    height: 35px;
    width: 35px;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
}

.size-chart-modal .title {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 16px;
}

.standard-size-guide {
    font-size: 11px;
    color: #555;
    position: relative;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.15);
}

    .standard-size-guide thead {
        border-bottom: 1px solid #ccc;
        border-top: 1px solid #ccc;
    }

    .standard-size-guide td,
    .standard-size-guide th {
        text-align: center;
        border-right: 1px solid #ccc;
        padding: 8px 15px;
    }

    .standard-size-guide .botder-bottom {
        border-bottom: 1px solid #ccc;
    }

    .standard-size-guide td:nth-child(1),
    .standard-size-guide td:nth-child(2),
    .standard-size-guide td:nth-child(3),
    .standard-size-guide td:nth-child(4),
    .standard-size-guide td:nth-child(5),
    .standard-size-guide td:nth-child(8),
    .standard-size-guide td:nth-child(9),
    .standard-size-guide th:nth-child(1),
    .standard-size-guide th:nth-child(3) {
        background-color: #fbfbfb;
    }

.chat-fab-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff5a5f;
    height: 50px;
    width: 50px;
    font-size: 26px;
    z-index: 99;
    border-radius: 50%;
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.12), 0 0 8px 0 rgba(0, 0, 0, 0.14);
    line-height: 50px;
    text-align: center;
    color: #fff;
}

    .chat-fab-button a {
        height: inherit;
        line-height: inherit;
        width: inherit;
        color: inherit;
        display: inherit;
        border-radius: 50%;
    }

    .chat-fab-button i {
        line-height: inherit;
        vertical-align: top;
    }

.offer-back {
    background-color: #20ae64;
}

    .offer-back span {
        color: #fff;
    }

.notification {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 15px;
    color: #000 !important;
    font-size: 10px;
    margin-left: 7px;
    padding: 0 7px;
}

.offer-view {
    color: #008e44;
}

    .offer-view .item {
        font-size: 11px;
        margin-left: 2px;
        vertical-align: text-top;
    }

.color-b1g1 {
    color: #ff5649;
}

.view-offer-cashback {
    color: #008e44;
    font-size: 13px;
    margin-top: 6px;
}

.dispatch-mob {
    background-color: #fff;
    font-size: 13px;
    margin-top: 7px;
    padding: 5px 10px;
}

.list-box figure.figure .tags .color-navyblue {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #3278a7;
    color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.list-box figure.figure .tags .color-magenta {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #f1425a;
    color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.list-box figure.figure .tags .color-beige {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #f4e1c3;
    color: #000;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.list-box figure.figure .tags .color-mahendi {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #276964;
    color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.list-box figure.figure .tags .color-teal {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #1a656c;
    color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.list-box figure.figure .tags .color-nevy-blue {
    display: inline-block;
    font-size: 11px;
    padding: 2px 5px;
    margin-bottom: 4px;
    background-color: #4760a7;
    color: #fff;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.16);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    font-weight: 600;
    font-style: italic;
}

.side-nav a:hover,
.side-nav li.active {
    background-color: initial;
}

.main-menu.sub-main-menu {
    position: relative;
    top: 0;
    width: 280px;
    left: 0;
    bottom: 0;
    z-index: 12;
    background-color: #fff;
}

.sub-main-menu.sub-menu-is-open {
    left: 0;
    overflow-x: auto;
    height: 100%;
}

.second-menu {
    background-color: #ececec !important;
}

.third-menu {
    background-color: #f7f7f7 !important;
}

.main-menu.inner-subMenu {
    display: none;
    box-shadow: 0 1px 7px 0 #d5d5d5;
}

.backMainMenu {
    border-bottom: 1px solid #cacaca;
}

    .backMainMenu i {
        float: left !important;
    }

    .backMainMenu span {
        margin-left: 10px;
    }

.back-cat-title {
    font-weight: bolder;
}

.sub-main-menu li .m-item {
    min-height: 0;
    line-height: normal;
    padding: 10px 15px;
    font-size: 15px;
    text-transform: capitalize;
    position: relative;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.sub-main-menu li a span small {
    margin-left: 4px;
}

.sub-main-menu li a i.material-icons {
    line-height: 24px;
    color: #848484;
}

.sub-main-menu li a i.material-icons-1 {
    line-height: 15px;
}

.sub-main-menu li a span.back-cat-title {
    top: 0;
    position: absolute;
    color: #787878;
}

.sub-main-menu li a span.c-name {
    top: 0;
    position: absolute;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    width: 215px;
    white-space: nowrap;
}

.sub-main-menu li a {
    padding: 0;
}

.third-level-open li a {
    padding: 0 17px !important;
    font-size: 13px !important;
    color: #646569;
}

.count {
    float: right;
    font-size: 11px;
    height: 22px;
}

.menucount {
    float: right;
    font-size: 11px;
    line-height: 22px;
    height: 22px;
    color: #585858;
}

.sub-main-menu > li > a {
    color: #000;
}

.breadcrumb-section {
    position: relative;
    margin-bottom: 10px;
}

    .breadcrumb-section .breadcrumb {
        position: relative;
        padding: 0;
        width: 100%;
        display: inline-block;
        margin: 0;
        list-style: none;
        display: -webkit-box;
        overflow: hidden;
        height: 30px;
    }

        .breadcrumb-section .breadcrumb li {
            position: relative;
            margin: 0 8px;
            line-height: 1.5;
            float: left;
        }

            .breadcrumb-section .breadcrumb li:after {
                content: ">";
                font-size: 14px;
                position: relative;
                color: #666;
                right: -8px;
                vertical-align: middle;
            }

            .breadcrumb-section .breadcrumb li:last-child:after {
                content: "";
                font-size: 0;
                position: relative;
            }

        .breadcrumb-section .breadcrumb .b-items {
            font-size: 13px;
            color: #666;
            vertical-align: middle;
            line-height: inherit;
        }

            .breadcrumb-section .breadcrumb .b-items:hover {
                color: #212121;
            }

.shop-more {
    padding-bottom: 10px;
    margin: 10px;
}

    .shop-more .shop-title {
        color: #000;
        font-size: 13px;
    }

    .shop-more span a {
        font-size: 12px;
        padding: 0 0 0 8px;
        line-height: 24px;
        height: 24px;
        position: relative;
    }

        .shop-more span a:after {
            content: "";
            position: absolute;
            left: 1px;
            top: 6px;
            width: 4px;
            height: 4px;
            background-color: #888;
            border-radius: 50px;
        }

        .shop-more span a:first-child:after {
            height: 0;
            width: 0;
        }

.signup-main {
    padding: 15px 0;
    border-bottom: 1px solid #c5c5c5;
}

.category-colleps {
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

    .category-colleps .signup-title {
        font-size: 14px;
        text-align: center;
        position: relative;
        display: block;
        text-transform: uppercase;
        margin-bottom: 2px;
    }

    .category-colleps .title-deal {
        font-size: 12px;
        text-align: center;
        margin-bottom: 15px;
    }

.newsletter-main {
    text-align: center;
}

.newslater-textbox {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
    padding: 0 11px !important;
    width: 190px !important;
    height: 35px !important;
    line-height: 35px !important;
    margin: 0 !important;
}

@media screen and (max-width: 320px) {
    .newslater-textbox {
        width: 170px !important;
    }
}

.newslater-textbox:focus {
    border-bottom: 1px solid #ddd !important;
    box-shadow: none !important;
}

.signup-main .subscribe {
    background-color: #ff5a5f;
    padding: 9px 10px;
    color: #fff;
    margin-left: -4px;
}

.social-link {
    text-align: center;
    margin-top: 18px;
}

    .social-link ul {
        margin: 0;
    }

        .social-link ul li {
            display: inline-block;
        }

.social-link-list .joinus-social-icons a,
.social-link-list .joinus-social-icons span {
    background-image: url(../images/social-icons-grey.png);
    display: inline-block;
    height: 17px;
    width: 15px;
    transition: all 0.1s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.social-link-list.footer-certified-ul li,
.social-link-list.footer-certified-ul li:first-child {
    margin-right: 25px;
}

.social-link-list .joinus-social-icons-fb a {
    background-position: 0 0;
}

    .social-link-list .joinus-social-icons-fb a:hover {
        background-position: 0 -25px;
    }

.social-link-list .joinus-social-icons-tw a {
    background-position: -167px 0;
}

    .social-link-list .joinus-social-icons-tw a:hover {
        background-position: -167px -25px;
    }

.social-link-list .joinus-social-icons-pi a {
    background-position: -81px 0;
}

    .social-link-list .joinus-social-icons-pi a:hover {
        background-position: -81px -25px;
    }

.social-link-list .joinus-social-icons-in a {
    background-position: -40px 0;
}

    .social-link-list .joinus-social-icons-in a:hover {
        background-position: -40px -25px;
    }

.social-link-list .joinus-social-icons-gp a {
    background-position: -126px 0;
}

    .social-link-list .joinus-social-icons-gp a:hover {
        background-position: -126px -25px;
    }

.social-link-list .joinus-social-icons-yt a {
    background-position: -204px 0;
    width: 17px;
}

    .social-link-list .joinus-social-icons-yt a:hover {
        background-position: -204px -25px;
        width: 17px;
    }

.footer-link .category-colleps .c-title-1 {
    display: block;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #f2f2f2;
}

.footer-link .category-colleps > a {
    padding: 0 15px;
}

.category-colleps .c-title-1 i.material-icons {
    float: right;
    width: 25px;
    text-align: center;
    font-size: 24px;
    line-height: 46px;
    height: 45px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.category-colleps .c-title-1.active i.material-icons {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

.ftr-sub-1 {
    margin: 0 25px;
}

    .ftr-sub-1 .fname-1 {
        line-height: 35px;
        height: 32px;
        font-size: 13px;
    }

.payment-box-title {
    font-size: 14px;
    text-align: center;
    position: relative;
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    padding-top: 15px;
    color: #000;
}

.payment-box {
    border-bottom: 1px solid #c5c5c5;
    padding-bottom: 5px;
}

.payment-img {
    text-align: center;
}

.copy-right,
.copy-right-title {
    font-size: 12px;
    text-align: center;
    padding: 5px 0;
}

.circleLoader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    z-index: 114;
    background-color: rgba(255, 255, 255, 0.5);
}

    .circleLoader .preloader-wrapper.active {
        top: 200px;
    }

    .circleLoader .border-red {
        border-color: #ff5a5f;
    }

.all-cat-text {
    font-weight: 600;
}

.g-note {
    color: #000;
    font-size: 12px;
    padding: 0 0;
    background-color: #fff;
    position: relative;
    top: 50px;
    text-align: center;
    height: 24px !important;
    line-height: 25px;
}

    .g-note ul {
        width: 100%;
    }

.color-beige {
    background-color: #f8debd;
    color: #000;
}

.color-mahendi {
    background-color: #276964;
    color: #fff;
}

.readytoship {
    position: absolute;
    bottom: 5px;
    z-index: 11;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    background-color: #4392c9;
    padding: 1px 3px;
    right: 0;
    border-radius: 2px 0 0 2px;
}

.color-maroon-1 {
    background-color: #7d080e;
    color: #efe17f;
}

.color-maroon {
    background-color: #7d080e;
    color: #fff;
}

.color-navy-blue {
    background-color: #262a57;
    color: #fff;
}

.color-sky-blue {
    background-color: #1483a3;
    color: #fff;
}

.color-red {
    background-color: #e30f0f;
    color: #fff;
}

.color-magenta {
    background-color: #b61c85;
    color: #fff;
}

.color-orange {
    background-color: #d8571e;
    color: #fff;
}

.color-green1 {
    background-color: #269633;
    color: #fff;
}

.color-purple {
    background-color: #8829a7;
    color: #fff;
}

.color-purple-1 {
    background-color: #6d4a8c;
    color: #fff;
}

.color-brown {
    background-color: #825a2c;
    color: #fff;
}

.color-mustard {
    background-color: #bc8e03;
    color: #fff;
}

.color-peach {
    background-color: #f9c5af;
    color: #000;
}

.color-teal {
    background-color: #274140;
    color: #fff;
}

.offer-pd {
    padding: 0 4px;
}

.color-yellow {
    background-color: #f0e64c;
    color: #000;
}

.color-pink {
    background-color: #ce373e;
    color: #fff;
}

.color-beige {
    background-color: #f8debd;
    color: #000;
}

.tags span {
    padding: 2px 5px;
    font-size: 11px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    font-weight: 600;
    margin-bottom: 4px;
    display: inline-block;
}

.sup-new {
    top: -0.5em;
    color: red;
}

.tag-eid {
    position: absolute;
    top: 0;
    left: 0;
}

    .tag-eid .offer-tag-eid {
        position: relative;
        z-index: 11;
        width: 50px !important;
    }

.tag-eid-1 {
    position: absolute;
    top: 35px;
    left: 3px;
}

    .tag-eid-1 .offer-tag-eid {
        position: relative;
        width: 60px;
        z-index: 11;
    }

.third-menu li a.m-item {
    padding: 10px 15px 10px 25px;
}

ul.menuslideContent {
    display: none;
}

.main-menu li a.menu-slide:after,
.main-menu li a.menu-slide:before {
    background: #737373;
    content: "";
    position: absolute;
    transition: transform 0.5s ease;
}

.main-menu li a.menu-slide:before {
    width: 10px;
    top: 17px;
    height: 2px;
    right: 16px;
}

.main-menu li a.menu-slide:after {
    height: 10px;
    top: 13px;
    width: 2px;
    right: 20px;
    transform-origin: center;
}

.main-menu li a.menu-slide.active:after {
    transform: rotate(90deg);
}

.breadcrumb-section .breadcrumb li:first-child {
    margin-left: 0;
}

.list-title {
    margin-bottom: 5px;
}

.mb0 {
    margin-bottom: 0;
}

img.offer-tag-eid {
    min-height: auto !important;
}
.modal_small {
    width: 300px !important;
    padding: 20px;
    text-align: center;
    top: 120px !important;
}

.modal_small i {
    font-size: 30px;
}

.modal_small .addcart_modal_sm {
    font-size: 15px;
    margin: 12px 0;
}

.modal_small .shop-more {
    border: 1px solid #555;
}
.color-btn-gold {
    background-color: #000;
    color: #fff;
}

.special_banner_content {
    background-color: #e54b4d;
    border-color: #b22022;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 14px;
    padding: 5px 10px;
    width: auto !important;
}

.special_banner_content p{
    margin: 0;
}