@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');
:root {
    --h1size: 50px;
    --h2size: 40px;
    --h3size: 24px;
    --h4size: 20px;
    --h5size: 18px;
    --h6size: 16px;
    --bodysize: 16px;
    --h1height: 58px;
    --h2height: 48px;
    --h3height: 32px;
    --h4height: 28px;
    --h5height: 26px;
    --h6height: 26px;
    --bodyheight: 26px;
    --pfamily: "Cairo", sans-serif;
    --red: #ff3838;
    --gray: #777777;
    --text: #555555;
    --blue: #1494a9;
    --white: #ffffff;
    --chalk: #f5f5f5;
    --green: #a6be70;
    --purple: #b12fad;
    --orange: #e86121;
    --yellow: #ffab10;
    --body: #f5f6f7;
    --border: #e8e8e8;
    --heading: #39404a;
    --primary: #19101d;
    --sub-heading: #565765;
    --green-chalk: #ddffd5;
    --green-dark: #072f17;
    --gray-chalk: #cccccc;
    --intro-bg: #f8fffa;
    --facebook: #3b5998;
    --twitter: #00acee;
    --google: #e60023;
    --instagram: #f77737;
    --snapchat: #fffc00;;
    --primary-bshadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    --primary-tshadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
* {
    margin: 0;
    padding: 0;
    outline: 0;
}
img {
    vertical-align: middle;
}
a {
    text-decoration: none;
    display: inline-block;
}
a:hover {
    text-decoration: none;
}
ul,
ol {
    padding: 0;
    list-style: none;
}
html,
body {
    scroll-behavior: smooth;
}
body {
    color: var(--text);
    background: var(--white);
    font-size: var(--bodysize);
    font-family: var(--pfamily);
    line-height: var(--bodyheight);
    overflow-x: hidden;
    text-align: right;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    color: var(--heading);
}
h1 {
    font-size: var(--h1size);
    line-height: var(--h1height);
}
h2 {
    font-size: var(--h2size);
    line-height: var(--h2height);
    letter-spacing: -0.3px;
    text-transform: capitalize;
}
h3 {
    font-size: var(--h3size);
    line-height: var(--h3height);
}
h4 {
    font-size: var(--h4size);
    line-height: var(--h4height);
}
h5 {
    font-size: var(--h5size);
    line-height: var(--h5height);
}
h6 {
    font-size: var(--h6size);
    line-height: var(--h6height);
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: var(--gray);
    text-transform: capitalize;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 14px;
    color: var(--gray);
    text-transform: capitalize;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-size: 14px;
    color: var(--gray);
    text-transform: capitalize;
}
input::placeholder,
textarea::placeholder {
    font-size: 14px;
    color: var(--gray);
    text-transform: capitalize;
}
input,
button {
    border: none;
    outline: none;
    background: none;
}
button:focus {
    outline: none;
}
.primary-color {
    color: var(--primary) !important;
}
.section {
    margin-bottom: 115px;
}
.inner-section {
    margin-bottom: 100px;
}
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}
.section-btn-50 {
    text-align: center;
    margin-top: 50px;
}
.section-btn-25 {
    text-align: center;
    margin-top: 25px;
}
.close {
    float: left;
}
.pointer {
    cursor: pointer !important;
}
.ltr {
    direction: ltr;
}
body.overlay::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.8;
    z-index: 999;
}
.alert-info {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 20px;
    border-radius: 3px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.alert-info p {
    font-weight: 500;
    color: var(--primary);
}
.alert-info p a {
    margin-left: 5px;
    text-decoration: underline;
}
.breadcrumb {
    background: none;
    margin: 0;
}
.breadcrumb .active {
    color:#c79251;
}
.active {
    color: #c79251;
}
.breadcrumb-item {
    font-size: 14px;
    padding: 0 !important;
    text-transform: capitalize;
}
.breadcrumb-item a {
    color: var(--primary);
}
.breadcrumb-item:hover a {
    color: #c79251!important;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary);
    padding: 0 8px;
    float: right;
    content:"/";
}

.another-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;
}
.another-breadcrumb .breadcrumb-item.active {
    color: #6c757d;
}
.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: 1000%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}
.backtop {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 2;
    width: 48px;
    height: 48px;
    font-size: 15px;
    color: var(--white);
    line-height: 48px;
    text-align: center;
    display: none;
    border-radius: 50%;
    background: var(--primary);
    -webkit-box-shadow: 0 0 15px 3px rgb(199 146 76);
    box-shadow: 0 0 15px 3px rgb(199 146 76);
    -webkit-animation: mahmud 2s infinite;
    animation: mahmud 2s infinite;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.backtop:hover {
    color: var(--white);
}
@-webkit-keyframes mahmud {
    0% {
        margin-bottom: 0;
    }
    50% {
        margin-bottom: 15px;
    }
}
@keyframes mahmud {
    0% {
        margin-bottom: 0;
    }
    50% {
        margin-bottom: 15px;
    }
}

.btn {
    border: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 6px;
    border: 2px solid var(--primary);
}
.btn:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.btn-inline {
    color: var(--white);
    background: var(--primary);
}
.btn-inline:hover {
    color: var(--primary);
    background: var(--white);
}
.btn-outline {
    color: var(--primary);
    background: var(--white);
}
.btn-outline:hover {
    color: var(--white);
    background: var(--primary);
}
.menu-badge {
    font-size: 10px;
    padding: 0 5px;
    margin-right: 5px;
    line-height: 18px;
    border-radius: 3px;
    letter-spacing: 0.3px;
    display: inline-block;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    text-shadow: var(--primary-tshadow);
}
.dropdown-arrow {
    position: relative;
    padding-left: 18px !important;
}
.dropdown-arrow:hover::before {
    color: var(--primary);
}
.dropdown-arrow::before {
    position: absolute;
    content: "\ea99";
    top: 50%;
    left: 0;
    font-size: 15px;
    line-height: 15px;
    color: var(--text);
    font-family: IcoFont;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-link {
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-link:hover {
    color: var(--primary);
    background: var(--chalk);
}
.dropdown-link:hover::before {
    color: var(--primary);
}
.dropdown-link::before {
    position: absolute;
    top: 50%;
    left: 18px;
    content: "\f053";
    font-size: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-link.active {
    color: var(--primary);
}
.navbar-link.active {
    color: #a6be70;
}
.dropdown-link.active::before {
    color: var(--primary);
    -webkit-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}
.dropdown-list {
    display: none;
    padding: 0 20px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-list li a {
    width: 100%;
    font-size: 15px;
    line-height: 18px;
    border-radius: 8px;
    padding: 10px 35px 10px 15px;
    color: var(--text);
    background: var(--white);
    position: relative;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-list li a:hover {
    color: var(--primary);
    background: var(--chalk);
}
.dropdown-list li a::before {
    position: absolute;
    top: 50%;
    right: 15px;
    content: "\f068";
    font-size: 10px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.dropdown:hover .dropdown-position-list {
    visibility: visible;
    opacity: 1;
    top: 70px;
}
.dropdown-position-list {
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 2;
    min-width: 200px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-position-list::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -7px;
    right: 12px;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.dropdown-position-list li a {
    width: 100%;
    font-size: 15px;
    line-height: 18px;
    border-radius: 8px;
    padding: 8px 15px;
    color: var(--text);
    background: var(--white);
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dropdown-position-list li a:hover {
    color: var(--primary);
    background: var(--chalk);
}
.dropdown-megamenu {
    position: static;
}
.dropdown-megamenu:hover .megamenu {
    visibility: visible;
    opacity: 1;
    top: 199px;
}
.megamenu {
    position: absolute;
    top: 230px;
    left: 50%;
    z-index: 2;
    width: 1180px;
    border-radius: 8px;
    padding: 30px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.megamenu-scroll {
    height: 380px;
    overflow-y: scroll;
}
.megamenu-wrap {
    margin-bottom: 30px;
}
.megamenu-title {
    padding-bottom: 18px;
    margin-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border);
}
.megamenu-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}
.megamenu-list {
    border-right: 1px solid var(--border);
}
.megamenu-list li a {
    width: 100%;
    border-radius: 5px;
    padding: 5px 25px 5px 0;
    color: var(--text);
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.megamenu-list li a:hover {
    color: var(--primary);
    background: var(--chalk);
}
.megamenu-promo a img {
    width: 100%;
    border-radius: 3px;
}

.form-title {
    text-align: center;
    margin-bottom: 20px;
}
.form-title h3 {
    text-transform: capitalize;
}
.form-group {
    margin-bottom: 25px;
}
.form-group small {
    color: var(--gray);
    letter-spacing: 0.3px;
    padding: 0 0 0 20px;
}
.form-group textarea {
    height: 150px;
    padding: 12px 20px;
}
.form-label {
    font-weight: 500;
    margin: 0 0 7px 3px;
    white-space: nowrap;
    text-transform: capitalize;
}
.form-control {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    padding: 0 20px 2px;
    color: var(--text);
    background: var(--chalk);
    border: 1px solid var(--border);
}
.form-control:focus-within {
    background: var(--chalk);
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0;
}
.form-control[type="file"]::-webkit-file-upload-button,
.form-control[type="file"]::file-selector-button {
    border: none;
    background: none;
    height: 45px;
    line-height: 45px;
    padding: 5px 15px 0;
    color: var(--gray);
}
.form-control[type="file"]::-webkit-file-upload-button:hover,
.form-control[type="file"]::file-selector-button:hover {
    background-color: transparent;
}
.form-control[type="file"]::-webkit-file-upload-button:focus,
.form-control[type="file"]::file-selector-button:focus {
    border: none;
    outline: none;
}
.form-select {
    height: 45px;
    font-size: 15px;
    padding: 0 16px;
    letter-spacing: 0.3px;
    background-size: 12px 10px;
    text-transform: capitalize;
    background-position: left 0.75rem center;
    color: var(--text);
    cursor: pointer;
}
.form-select:focus-within {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary);
}
.form-check .form-check-input {
    margin-left: 5px;
    position: static;
}
.form-check-input:focus {
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
.form-btn {
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.form-input-group {
    position: relative;
}
.form-input-group:focus-within i {
    color: var(--primary);
}


.form-input-group i {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    border-radius: 50%;
    text-align: center;
}
.form-btn-group {
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.form-btn-group i {
    font-size: 15px;
    margin-left: 5px;
    display: inline-block;
}
.nav-tabs {
    border: none;
    padding: 25px 0;
    border-radius: 8px;
    background: var(--white);
}
.nav-tabs li {
    padding: 0 30px;
    border-left: 1px solid var(--border);
}
.nav-tabs li:last-child {
    border: none;
}
.tab-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--heading);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.tab-link:hover {
    color: var(--primary);
}
.tab-link i {
    font-size: 18px;
    margin-left: 5px;
}
.tab-link.active {
    color: var(--primary);
}
.tab-pane {
    display: none;
    padding: 0;
}
.tab-pane.active {
    display: block;
}
.pagination {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.page-item {
    margin-left: 10px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 50%;
}
.page-item .active,
.page-item.active .page-link {
    color: var(--white);
    background: #c79251;
    border-color: #c79251;
}
.page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-weight: 400;
    border: none;
    padding: 0;
    color: var(--text);
    background: var(--white);
}
.page-link:hover {
    color: var(--white);
    background: var(--primary);
}
.page-link:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.star-rating {
    direction: rtl;
    text-align: center;
    margin: 25px 0;
}
.star-rating input {
    display: none;
}
.star-rating input:checked ~ label::after {
    opacity: 1;
}
.star-rating label {
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin: 0 8px;
}
.star-rating label:hover::after {
    opacity: 1;
}
.star-rating label:hover:hover ~ label::after {
    opacity: 1;
}
.star-rating label::before {
    content: "\ec7c";
    font-family: "Icofont";
    font-weight: 900;
    font-size: 35px;
    display: block;
    color: #bbbbbb;
}
.star-rating label::after {
    content: "\ec7c";
    font-family: "Icofont";
    font-weight: 900;
    font-size: 35px;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    color: var(--yellow);
    opacity: 0;
}
.slider-arrow:hover .dandik,
.slider-arrow:hover .bamdik {
    visibility: visible;
    opacity: 1;
}
.dandik,
.bamdik {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 20px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    color: var(--primary);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.dandik:hover,
.bamdik:hover {
    color: var(--white);
    background: var(--primary);
}
.dandik {
    right: -10px;
}
.bamdik {
    left: -10px;
}
.slider-dots ul {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider-dots ul li {
    width: 9px;
    height: 9px;
    margin: 0 5px;
    border-radius: 30px;
    cursor: pointer;
    display: inline-block;
    background: var(--primary);
    -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.slider-dots ul li button {
    display: none;
}
.slider-dots ul li.slick-active {
    width: 25px;
    background: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}

/************  product *****************/
.product-add {
    width: 100%;
    font-size: 15px;
    padding: 6px 0;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    text-shadow: var(--primary-tshadow);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.product-add i {
    font-size: 14px;
    margin-left: 5px;
}
.product-add:disabled {
    background: #999;
    border-color: #999;
    color: #fff;
}
.product-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

}
.product-action button i {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--chalk);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.product-action button i:hover {
    color: var(--white);
    background: var(--primary);
}
.product-action input {
    width: 100%;
    font-size: 15px;
    margin: 0 5px;
    padding: 6px 0;
    border-radius: 6px;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
}
.table-list {
    width: 100%;
}
thead tr {
    background: var(--primary);
}
thead tr th {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    text-transform: capitalize;
    padding: 12px 20px;
    color: var(--white);
    border-left: 1px solid var(--border);
}
thead tr th:first-child {
    border-radius: 0 6px 6px 0;
}

thead tr th:last-child {
    border-left: none;
    border-radius: 6px 0 0 6px;
}
tbody tr {
    border-bottom: 1px solid var(--border);
}
tbody tr td {
    padding: 12px 20px;
    text-align: center;
    border-left: 1px solid var(--border);
}

tbody tr td:last-child {
    border-left: none;
}
.mb-30 {
    margin-bottom: 30px;
}
.table-name {
    white-space: nowrap;
    text-transform: capitalize;
}
.table-image img {
    width: auto;
    height: 70px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
}
.table-price h6 {
    white-space: nowrap;
}
.table-price h6 small {
    font-size: 13px;
    margin-right: 3px;
    color: var(--gray);
    font-family: sans-serif;
}
.table-desc p {
    width: 150px;
    font-size: 15px;
    text-align: right;
}
.table-desc p a {
    text-transform: capitalize;
}
.table-desc p a:hover {
    text-decoration: underline;
}
.table-vendor a {
    font-weight: 500;
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.table-vendor a:hover {
    color: var(--primary);
}
.table-status h6 {
    text-transform: capitalize;
}
.table-status .stock-in {
    color: var(--purple);
}
.table-status .stock-out {
    color: var(--orange);
}
.table-shop {
    width: 180px;
}
.table-shop .product-add {
    color: var(--white);
    background: var(--primary);
}
.table-shop .action-plus i,
.table-shop .action-minus i {
    background: var(--white);
}
.table-action a i {
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    margin: 3px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.table-action .view i {
    color: var(--green);
    background: var(--white);
}
.table-action .view i:hover {
    color: var(--white);
    background: var(--green);
}
.table-action .wish i {
    color: var(--green);
    background: var(--white);
}
.table-action .wish.active i {
    color: var(--white);
    background: var(--green);
}
.table-action .trash i {
    color: var(--red);
    background: var(--white);
}
.table-action .trash i:hover {
    color: var(--white);
    background: var(--red);
}
.modal-dialog {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}
.modal-content {
    border: none;
    background: none;
    border-radius: 0;
}
.modal-close {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background: var(--white);
    -webkit-box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.2);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.modal-close:hover {
    color: var(--white);
    background: var(--primary);
}
.modal-form {
    width: 400px;
    padding: 30px;
    border-radius: 8px;
    background: var(--white);
}
.order-track {
    margin-bottom: 25px;
}
.order-track-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 25px;
    border-radius: 8px;
    background: var(--chalk);
}
.order-track-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 1;
}
.order-track-item::before {
    position: absolute;
    content: "";
    top: 20px;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: -1;
    background: var(--white);
}
.order-track-item:first-child::before {
    border-radius: 50px 0 0 50px;
}
.order-track-item:last-child::before {
    border-radius: 0 50px 50px 0;
}
.order-track-item i {
    width: 45px;
    height: 45px;
    font-size: 20px;
    line-height: 42px;
    border-radius: 50%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    color: var(--primary);
    background: var(--white);
    border: 2px dotted var(--primary);
}
.order-track-item span {
    font-weight: 500;
    line-height: 20px;
    white-space: nowrap;
    color: var(--heading);
    text-transform: capitalize;
}
.order-track-item.active::before {
    background: var(--primary);
}
.order-track-item.active i {
    color: var(--white);
    background: var(--primary);
}
.order-track-item.active span {
    color: var(--primary);
}
.nav-pills .nav-link {
    font-weight: 400;
    list-style: decimal;
}
.nav-pills .nav-link.active {
    color: var(--primary);
    background: transparent;
}
.countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.countdown-time {
    padding: 0 30px;
    position: relative;
    color: var(--heading);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.countdown-time::before {
    position: absolute;
    content: ":";
    top: 28%;
    left: -3px;
    font-size: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--heading);
}
.countdown-time:last-child::before {
    display: none;
}
.countdown-time span {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 40px;
    color: var(--primary);
}
.countdown-time small {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
}

.product-card {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 10px 10px 12px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
    /* -webkit-box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important; */
    /* box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important; */
}
.product-card:hover {
    /* border-color: var(--primary); */
    /* -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1); */
    /* box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1); */
}
.product-card:hover .product-widget {
    opacity: 1;
    bottom: 15px;
}
.product-card:hover .product-add {
    color: var(--white);
    background: var(--primary);
}
.product-media {
    position: relative;
}
.product-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
}
.label-text {
    font-size: 14px;
    padding: 5px 8px;
    line-height: 13px;
    border-radius: 3px;
    margin-bottom: 5px;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
}
.label-text.off {
    background: var(--red);
}
.label-text.new {
    background: var(--green);
}
.label-text.sale {
    background: var(--orange);
}
.label-text.feat {
    background: var(--purple);
}
.label-text.rate {
    background: var(--yellow);
}
.label-text.order {
    background: var(--blue);
}
.product-wish {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--gray-chalk);
}
.product-wish.active {
    color: var(--primary);
}
.product-image img {
    width: 100%;
}
.product-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.product-widget a {
    width: 40px;
    height: 40px;
    font-size: 15px;
    margin: 0 6px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
}
.product-content {
    padding-top: 12px;
    /* text-align: center; */
    border-top: 1px solid var(--border);
}
.product-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 3px;
}
.product-rating i,
.product-rating a {
    font-size: 14px;
    margin: 0 2px;
    color: var(--gray);
}
.product-rating a {
    white-space: nowrap;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.product-rating a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.product-rating .active {
    color: var(--yellow);
}

.product-content .product-name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    min-width: auto;
    font-size: x-large;
    font-weight: 800;
}

.product-content p {
    font-size: 14px;
    line-height: 28px;
    color: var(--gray);
    margin-bottom: 25px;

    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-width: auto;
}
.product-name a {
    color: var(--sub-heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    margin-bottom: 3px;
    font-size: 16px;
}
.product-name a:hover {
    color: var(--primary);
}
.product-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    /* justify-content: center; */
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 13px;
    gap: 10px;
}
.product-price del {
    color: #8F9093;
    margin-left: 10px;
}
.product-price span {
    color: var(--primary);
    white-space: nowrap;
}
.product-price span small {
    font-weight: 400;
}
.product-disable {
    position: relative;
}
.product-disable:hover {
    border-color: var(--border);
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-disable:hover .product-add {
    color: var(--heading);
    background: var(--border);
}
.product-disable .product-widget {
    visibility: hidden;
}
.product-disable::before {
    position: absolute;
    content: "Out of Stock";
    top: 40%;
    left: 50%;
    z-index: 2;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 0;
    text-align: center;
    text-transform: uppercase;
    text-shadow: var(--primary-tshadow);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--white);
    background: rgba(224, 152, 22, 0.9);
}
.product-disable::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
}
.feature-card {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 18px 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.feature-card:hover {
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
}
.feature-card:hover .feature-widget {
    opacity: 1;
    bottom: 15px;
}
.feature-card:hover .feature-add {
    color: var(--white);
    background: var(--primary);
}
.feature-media {
    position: relative;
}
.feature-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 0;
    right: 0;
}
.label-text {
    font-size: 14px;
    padding: 5px 8px;
    line-height: 13px;
    border-radius: 3px;
    margin-bottom: 5px;
    color: var(--white);
    text-align: center;
    text-transform: capitalize;
}
.label-text.off {
    background: var(--red);
}
.label-text.new {
    background: var(--green);
}
.label-text.sale {
    background: var(--orange);
}
.label-text.feat {
    background: var(--purple);
}
.label-text.rate {
    background: var(--yellow);
}
.label-text.order {
    background: var(--blue);
}
.feature-wish {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    color: var(--gray-chalk);
}
.feature-wish.active {
    color: var(--primary);
}
.feature-image img {
    width: 220px;
}
.feature-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.feature-widget a {
    width: 40px;
    height: 40px;
    font-size: 15px;
    margin: 0 6px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
}
.feature-content {
    width: 100%;
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid var(--border);
}
.feature-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 3px;
}
.feature-rating i,
.feature-rating a {
    font-size: 14px;
    margin: 0 2px;
    color: var(--gray);
}
.feature-rating a {
    white-space: nowrap;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.feature-rating a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.feature-rating .active {
    color: var(--yellow);
}
.feature-name {
    margin-bottom: 3px;
    text-transform: capitalize;
}
.feature-name a {
    color: var(--sub-heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.feature-name a:hover {
    color: var(--primary);
}
.feature-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: 10px;
}
.feature-price del {
    color: var(--red);
    margin-left: 8px;
}
.feature-price span {
    color: var(--primary);
    white-space: nowrap;
}
.feature-price span small {
    font-weight: 400;
}
.feature-desc {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 15px;
}

.product-standard {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 15px 15px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.product-standard:hover {
    border-color: var(--primary);
    -webkit-box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 15px 0 rgba(0, 0, 0, 0.1);
}
.product-standard:hover .standard-widget {
    opacity: 1;
    bottom: 15px;
}
.product-standard:hover .standard-add {
    color: var(--white);
    background: var(--primary);
}
.standard-media {
    position: relative;
}
.standard-label-group {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}
.standard-label {
    font-size: 14px;
    padding: 5px 8px;
    line-height: 13px;
    border-radius: 3px;
    text-transform: capitalize;
    color: var(--white);
}
.standard-label.off {
    background: var(--red);
}
.standard-label.new {
    background: var(--green);
}
.standard-label.sale {
    background: var(--orange);
}
.standard-label.feat {
    background: var(--purple);
}
.standard-label.rate {
    background: var(--yellow);
}
.standard-image img {
    width: 220px;
}
.standard-widget {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.standard-widget a {
    width: 40px;
    height: 40px;
    font-size: 15px;
    margin: 0 6px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(-primary-tshadow);
    -webkit-box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 7px 12px 0 rgba(0, 0, 0, 0.12);
}
.standard-content {
    width: 100%;
    margin-right: 30px;
    padding-right: 30px;
    border-right: 1px solid var(--border);
}
.standard-name {
    margin-bottom: 5px;
    text-transform: capitalize;
}
.standard-name a {
    color: var(--sub-heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.standard-name a:hover {
    color: var(--primary);
}
.standard-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 5px;
}
.standard-price del {
    color: var(--red);
    margin-left: 12px;
}
.standard-price span {
    color: var(--primary);
    white-space: nowrap;
}
.standard-price span small {
    font-weight: 400;
}
.standard-action-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    -ms-grid-columns: (minmax(180px, 1fr)) [auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.standard-action-group .product-add,
.standard-action-group .action-input {
    padding: 10px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.standard-action-group .product-add {
    font-size: 14px;
    font-weight: 500;
}
.standard-wish {
    padding: 10px 0;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.standard-wish i {
    font-size: 16px;
    margin-left: 6px;
}
.standard-wish span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.standard-wish {
    color: var(--primary);
    background: var(--border);
}
.standard-wish.active {
    color: var(--white);
    background: var(--primary);
}
.standard-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: none;
}
.standard-action button i,
.standard-action a i {
    width: 35px;
    height: 35px;
    font-size: 15px;
    line-height: 35px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--border);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.standard-action button i:hover,
.standard-action a i:hover {
    color: var(--white);
    background: var(--primary);
}
.standard-action input {
    width: 100%;
    height: 45px;
    margin: 0 8px;
    font-size: 15px;
    line-height: 14px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
}
.testimonial-card {
    padding: 50px 50px 0;
    margin: 0 15px 30px;
    text-align: center;
    border-radius: 8px;
    background: var(--primary);
}
.testimonial-card i {
    font-size: 45px;
    margin-bottom: 20px;
    color: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.testimonial-card p {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 25px;
    font-style: italic;
    color: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.testimonial-card h5 {
    color: var(--white);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.testimonial-card ul {
    font-size: 14px;
    color: var(--yellow);
    margin-bottom: 13px;
}
.testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: -35px;
    display: inline-block;
    border: 5px solid var(--body);
}
.category-wrap:hover .category-overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.category-media {
    position: relative;
    margin-bottom: 15px;
}
.category-media img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.category-overlay a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.category-overlay a i:hover {
    color: var(--primary);
    background: var(--white);
}
.category-meta {
    padding: 0 10px;
}
.category-meta h4 {
    text-transform: capitalize;
    margin-bottom: 3px;
}
.brand-wrap {
    text-align: center;
    padding-top: 15px;
}
.brand-wrap:hover .brand-media::before {
    border-color: var(--primary);
    -webkit-animation-play-state: running;
    animation-play-state: running;
}
.brand-wrap:hover .brand-overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.brand-media {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}
.brand-media::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background: var(--white);
    border: 2px dashed var(--border);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: rotate360 1.2s linear infinite;
    animation: rotate360 1.2s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.brand-media img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
@-webkit-keyframes rotate360 {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
@keyframes rotate360 {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transform: scale(0);
    transform: scale(0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.brand-overlay a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.brand-overlay a i:hover {
    color: var(--primary);
    background: var(--white);
}
.brand-meta h4 {
    text-transform: capitalize;
    margin-bottom: 3px;
}
.choose-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.choose-card:hover i {
    color: var(--white);
    background: var(--primary);
}
.choose-icon img {
    width: 60px;
    height: 60px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: 30px;
    text-align: center;
    display: inline-block;
    color: var(--primary);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.choose-text h4 {
    margin-bottom: 10px;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-card {
    margin-bottom: 30px;
    border: 1px solid var(--primary);
    -webkit-box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 8px 15px 0 rgb(0 0 0 / 10%);
    overflow: hidden;
    border-radius: 8px;
}
.blog-card:hover .blog-img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

}
.blog-media {
    position: relative;
}
.blog-calender {
    position: absolute;
    top: 20px;
    left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 55px;
    height: 55px;
    border-radius: 6px;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
}
.blog-calender span {
    line-height: 20px;
}
.blog-date {
    font-size: 20px;
    font-weight: 500;
}
.blog-month {
    font-size: 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.blog-img {
    overflow: hidden;
    border-radius: 8px;
}
.blog-img img {
    width: 100%;
    border-radius: 8px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-content {
    padding: 15px 15px 20px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.blog-meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
.blog-meta li:last-child {
    margin: 0;
}
.blog-meta li i {
    color: var(--primary);
    margin-left: 8px;
    font-size: 14px;
}
.blog-meta li a,
.blog-meta li span {
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    text-transform: uppercase;
}
.blog-meta li a {
    color: var(--text);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-meta li a:hover {
    color: var(--primary);
}
.blog-title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
}
.blog-title a {
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-title a:hover {
    color: var(--primary);
}
.blog-desc {
    font-size: 14px;
    line-height: 28px;
    color: var(--gray);
    margin-bottom: 25px;

    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-width: auto;
}
.blog-btn {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-btn i {
    font-size: 17px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-btn:hover {
    color: var(--primary);
    text-decoration: underline;
}
.blog-btn:hover i {
    margin-right: 5px;
}

.blog-details-thumb img {
    width: 100%;
    border-radius: 10px;
}
.blog-details-content {
    padding: 35px 5px;
    margin-bottom: 30px;
    background: var(--white);
    border-radius: 0 0 10px 10px;
}
.blog-details-title {
    line-height: 44px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
}
.blog-details-desc {
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 20px;
}
.offer-card {
    margin-bottom: 30px;
}
.offer-card a {
    width: 100%;
}
.offer-card a img {
    width: 100%;
    border-radius: 8px;
}
.offer-div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 15px;
    margin: 0 15px;
    border-radius: 0 0 8px 8px;
    background: var(--white);
}
.offer-div h5 {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
}
.offer-div button,
.offer-div span {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
}
.account-card {
    border-radius: 8px;
    background: var(--white);
}
/*.user_address_list .row {*/
/*    margin: 0;*/
/*}*/
/*.user_address_list .row .col-md-12 {*/
/*    padding: 0;*/
/*}*/
.account-content .row .col-md-12:last-of-type .profile-card {
    margin-bottom: 0;
}
.account-title {
    padding: 18px 0;
    margin-bottom: 25px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.account-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}
.account-title h4 {
    text-transform: capitalize;
}
.account-title button,
.account-title a {
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.3px;
    padding: 5px 15px;
    white-space: nowrap;
    text-transform: capitalize;
    color: var(--primary);
    background: var(--green-chalk);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.account-title button:hover,
.account-title a:hover {
    color: var(--white);
    background: var(--primary);
}

.profile-card {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--chalk);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
}
.profile-card:hover ul {
    visibility: visible;
    opacity: 1;
}
.user_address_list .profile-card ul {
    visibility: visible;
    opacity: 1;
}
.user_address_list .profile-card {
    cursor: auto;
}
.card-body button i.spinnerBTN,
.spinnerBTN {
    font-size: 20px;
    position: relative;
    top: 2px;
    right: 5px;
    float: none;
    margin-top: 0;
    margin-left: 0 !important;
}
.countryList .input-group-btn {
    width: 100%;
    margin-right: 0;
}
.profile-card h6 {
    color: var(--text);
    margin-bottom: 8px;
    text-transform: capitalize;
}
.profile-card p {
    text-transform: capitalize;
}
.profile-card i {
    margin-left: 10px;
    color: var(--primary);
}
.profile-card ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.profile-card ul li {
    margin: 5px 0;
}
.profile-card ul li a,
.profile-card ul li button {
    width: 30px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.profile-card ul .edit {
    color: var(--green);
}
.profile-card ul .edit:hover {
    color: var(--white);
    background: var(--green);
}
.profile-card ul .trash {
    color: var(--red);
}
.profile-card ul .trash:hover {
    color: var(--white);
    background: var(--red);
}
.profile-card.active {
    background: var(--green-chalk);
    border-color: var(--primary);
}
.payment-card {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    background: var(--chalk);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
}
.payment-card.disabled:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    cursor: not-allowed;
    z-index: 2;
}
.payment-card:hover button {
    visibility: visible;
    opacity: 1;
}
.payment-card img {
    margin-bottom: 18px;
}
.payment-card h4 {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.payment-card p {
    color: var(--heading);
    margin-bottom: 5px;
}
.payment-card p span {
    font-size: 20px;
    margin-left: 15px;
    letter-spacing: 2px;
}
.payment-card p sup {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
}
.payment-card h5 {
    font-size: 14px;
    line-height: 22px;
    text-transform: capitalize;
}
.payment-card button {
    position: absolute;
    top: 15px;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    width: 30px;
    height: 32px;
    line-height: 32px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.payment-card .trash {
    color: var(--red);
}
.payment-card .trash:hover {
    color: var(--white);
    background: var(--red);
}
.payment-card.active {
    background: var(--green-chalk);
    border-color: var(--primary);
}
.font-14{
    font-size: 14px;
}
.contact-card {
    text-align: center;
    border-radius: 8px;
    margin: 0 10px 30px;
    padding: 0 15px 25px;
    background: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.contact-item {
    margin-top: 80px;
}
.contact-card:hover {
    background: var(--primary);
}
.contact-card:hover i {
    color: var(--primary);
    background: var(--white);
}
.contact-card:hover h4,
.contact-card:hover p,
.contact-card:hover a {
    color: var(--white);
}
.contact-card i {
    width: 50px;
    height: 50px;
    font-size: 22px;
    line-height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    margin-top: 20px;
    text-align: center;
    display: inline-block;
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.mediass{
    background: #19101d!important;
    color: #fff!important;
    text-shadow: none!important;
    -webkit-box-shadow: 0 15px 35px 0 rgb(193 189 89);
    box-shadow: 0 15px 35px 0 rgb(193 189 89);
}
.contact-card h4 {
    margin-bottom: 18px;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.contact-card p {
    width: 250px;
    font-size: 16px;
    line-height: 30px;
    margin: 0 auto;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.contact-card p a {
    font-size: 18px;
    line-height: 30px;
    display: block;
    color: var(--text);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.contact-card.active {
    background: var(--primary);
}
.contact-card.active i {
    color: var(--primary);
    background: var(--white);
}
.contact-card.active h4,
.contact-card.active p,
.contact-card.active a {
    color: var(--white);
}
.branch-card {
    margin: 0 2.5px 30px;
    position: relative;
}
.branch-card:hover::before {
    background: rgba(17, 151, 68, 0.85);
}
.branch-card:hover .branch-overlay {
    top: 50%;
}
.branch-card:hover .branch-overlay p {
    opacity: 1;
}
.branch-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.branch-card img {
    width: 100%;
    border-radius: 8px;
}
.branch-overlay {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.branch-overlay h3 {
    color: var(--white);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    text-transform: capitalize;
    text-shadow: var(--primary-tshadow);
}
.branch-overlay p {
    width: 200px;
    margin: 0 auto;
    letter-spacing: 0.3px;
    color: var(--white);
    opacity: 0;
    text-transform: capitalize;
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.team-media {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}
.team-media:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.team-media:hover .team-overlay {
    top: 0;
    opacity: 1;
}
.team-media:hover .team-overlay a {
    padding-top: 0;
}
.team-media img {
    width: 100%;
    border-radius: 8px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.team-overlay a {
    width: 36px;
    height: 36px;
    font-size: 15px;
    line-height: 36px;
    margin: 0 5px;
    padding-top: 30px;
    text-align: center;
    border-radius: 50%;
    color: var(--text);
    background: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.team-meta {
    text-align: center;
}
.team-meta h5 {
    text-transform: capitalize;
}
.team-meta h5 a {
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.team-meta h5 a:hover {
    color: var(--primary);
}
.team-meta p {
    font-size: 15px;
    text-transform: capitalize;
}
.btn i{
    margin-left: 10px;
}
.header-top {
    padding: 8px 0;
    background: var(--primary);
}
.header-top-welcome p {
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.3px;
}
.header-top-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-select {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-left: 1px solid var(--green);
}
.header-select .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 0
}
.header-select .bootstrap-select button {
    border: 0;
    color: #fff;
    background-color: #19101d;
    height: 23px;
    padding: 0;
    width: 70px;
}
.header-select .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
    text-align: center;
}
.header-select .btn-light:not(:disabled):not(.disabled).active,
.header-select .btn-light:not(:disabled):not(.disabled):active,
.header-select .show>.btn-light.dropdown-toggle {
    color: #fff;
    background-color: #19101d;
    border-color: #19101d;
}
.header-select .btn-light.focus,.header-select  .btn-light:focus,
.header-select .btn-light:hover{
    color: #ffffff;
    background-color: #19101d;
    border-color: #dae0e5;
    box-shadow: none;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #19101d;
}
.header-select:last-child {
    border: none;
}
.header-select i {
    font-size: 14px;
    color: var(--white);
}


.header-top-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 0;
}
.header-top-list li {
    margin-right: 35px;
}
.header-top-list li a {
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-top-list li a:hover {
    color: var(--green-chalk);
}


.header-part {
    background: var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-part.active {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--white);
    -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-part.active .header-widget:hover i {
    background: var(--primary);
}
.header-part.active .header-widget sup {
    border-color: var(--white);
}
.header-part.active .header-form {
    background: var(--white);
    border-color: var(--primary);
}

/***********************************/
.header-content {
    padding:0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-logo {
    margin-left: 50px;
    width: 20%;
}
.header-logo img {
    width: auto;
    height: 45px;

    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-widget-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-widget-group .header-widget {
    margin-right: 20px;
}
.header-widget {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.header-widget:hover i {
    color: var(--white);
    background: var(--primary);
    text-shadow: var(--primary-tshadow);
}
.header-widget:hover span {
    color: var(--primary);
}
.header-widget img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.header-widget i {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-widget span {
    font-size: 15px;
    font-weight: 400;
    margin-right: 8px;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-align: right;
    text-transform: capitalize;
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-widget span small {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    font-family: sans-serif;
    display: block;
}
.header-widget sup {
    position: absolute;
    top: -12px;
    right: 20px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    border: 2px solid var(--white);
    text-shadow: var(--primary-tshadow);
}
.header-cart span {
    font-size: 12px;
    margin-right: 15px;
    line-height: 20px;
    text-transform: uppercase;
}
.header-form {
    width: 100%;
    margin: 0 50px;
    border-radius: 8px;
    background: var(--chalk);
    border: 2px solid var(--chalk);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-form:focus-within {
    background: var(--white);
    border-color: var(--primary);
}
.header-form input {
    width: 100%;
    height: 45px;
    font-size: 15px;
    padding-right: 15px;
}
.header-form button i {
    width: 45px;
    height: 45px;
    font-size: 15px;
    line-height: 45px;
    text-align: center;
    border-radius: 8px;
    color: var(--text);
    display: inline-block;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-form button i:hover {
    color: var(--primary);
}
.header-media-group {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.header-media-group a img {
    width: auto;
    height: 45px;
}
.header-user img,
.header-src img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.header-user i,
.header-src i {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.header-user i:hover,
.header-src i:hover {
    color: var(--white);
    background: var(--primary);
}

.navbar-part {
    background: var(--white);
}
.navbar-content {
    border-top: 1px solid var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar-item {
    margin-left: 30px;
}
.navbar-item.login-user{
    margin-left: 0;
}

.navbar-link {
    padding: 22px 0;
    font-weight: 700;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.navbar-link:hover {
    color: var(--primary);
}
.navbar-focus-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.navbar-focus-list li {
    margin-right: 30px;
}
.navbar-focus-list li:first-child {
    margin-right: 0;
}
.navbar-focus-list li a {
    font-weight: 500;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.navbar-focus-list li a:hover {
    color: var(--primary);
}
.navbar-focus-list li a i {
    font-size: 18px;
    margin-left: 5px;
}
.navbar-info-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.navbar-info {
    margin-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
/*.navbar-info:last-child {*/
/*    margin-left: 0;*/
/*}*/
.navbar-info i {
    font-size: 30px;
    margin-left: 15px;
    color: var(--primary);
}
.navbar-info p small {
    font-size: 14px;
    line-height: 16px;
    display: block;
    text-align: right;
    text-transform: capitalize;
}
.navbar-info p span {
    font-size: 15px;
    font-weight: 500;
}
.nav-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    padding: 0;
    z-index: 5;
    background: var(--white);
    -webkit-box-shadow: 15px 0 25px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 15px 0 25px 0 rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.nav-sidebar.active {
    left: 0;
}
.nav-header {
    padding: 15px 0;
    position: relative;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.nav-header a img {
    width: auto;
    height: 40px;
}
.nav-close {
    position: absolute;
    top: 50%;
    right: -18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.nav-close i {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.nav-close i:hover {
    color: var(--white);
    background: var(--primary);
}
.nav-content {
    padding: 0 18px;
    overflow-y: scroll;
    max-height: calc(100vh - 100px);
}
.nav-btn {
    width: 100%;
    padding: 50px 0;
    margin-bottom: 20px;
    text-align: center;
    background: var(--chalk);
}
.nav-btn .btn {
    font-size: 14px;
    padding: 12px 28px;
    letter-spacing: 0.3px;
}
.nav-btn .btn i {
    font-size: 14px;
}
.nav-profile {
    width: 100%;
    text-align: center;
    padding: 18px 0 0;
}
.nav-user {
    margin-bottom: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.nav-user img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid var(--white);
}
.nav-name {
    margin-bottom: 18px;
    text-transform: capitalize;
}
.nav-name a {
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.nav-name a:hover {
    color: var(--primary);
}
.nav-select-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.nav-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 18px;
    padding-right: 18px;
    line-height: 20px;
    border-right: 1px solid var(--gray-chalk);
}
.nav-select:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.nav-select i {
    margin-right: 5px;
}
.nav-list {
    width: 100%;
}
.nav-list li {
    width: 100%;
}
.nav-link {
    width: 100%;
    font-weight: 500;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.nav-link:hover {
    color: var(--primary);
    background: var(--chalk);
}
.nav-link i {
    font-size: 20px;
    margin-left: 12px
}
.nav-link.active {
    color: var(--primary);
    background: var(--green-chalk);
}
.nav-info-group {
    padding: 20px 0;
    margin-top: 15px;
    margin-bottom: 25px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.nav-info {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.nav-info:last-child {
    margin-bottom: 0;
}
.nav-info i {
    font-size: 30px;
    margin-right: 15px;
    color: var(--primary);
}
.nav-info p small {
    font-size: 14px;
    line-height: 18px;
    display: block;
    text-align: left;
    text-transform: capitalize;
}
.nav-info p span {
    font-size: 16px;
    font-weight: 500;
}
.nav-footer {
    text-align: center;
}
.nav-footer p {
    font-size: 14px;
    color: var(--gray);
}
.nav-footer p a {
    color: var(--primary);
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    z-index: 5;
    background: var(--white);
    -webkit-box-shadow: -15px 0 25px 0 rgba(0, 0, 0, 0.15);
    box-shadow: -15px 0 25px 0 rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.cart-sidebar.active {
    right: 0;
}
.cart-header {
    padding: 18px 25px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.msg_qty_pro small {
    margin-top: -26px;
    display: block;
}
.cart-total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.cart-total i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--primary);
}
.cart-total span {
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
    margin-right: 10px;
}
.cart-close {
    position: absolute;
    top: 50%;
    left: -18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cart-close i {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.cart-close i:hover {
    color: var(--white);
    background: var(--primary);
}
.cart-list {
    height: 100%;
    padding: 0 15px;
    max-height: calc(100vh - 210px);
    overflow-y: scroll;
}
.cart-item {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
}
.cart-item:hover .cart-media button {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-media {
    position: relative;
    margin-right: 25px;
}
.cart-media a img {
    width: 100px;
    border-radius: 8px;
}
.cart-media button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.cart-media button i {
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
    color: var(--red);
    background: rgba(255, 255, 255, 0.9);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.cart-media button i:hover {
    color: var(--white);
    background: var(--red);
}
.cart-info-group {
    width: 100%;
    margin-right: 22px;
}
.cart-info {
    margin-bottom: 13px;
    position: relative;
}
.delete-cartindex{
    position: absolute;
    cursor: pointer;
    left: 0px;
    top: 0px;
    background-color: #bababa;
    padding: 6px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
}
.delete-cartindex:hover {
    color: var(--white);
    background: var(--red);
}
.cart-info h6 {
    font-weight: 400;
    text-transform: capitalize;
}
.cart-info h6 a {
    color: var(--heading);
}
.cart-info p {
    font-size: 14px;
}
.cart-info p del {
    color: var(--red);
    font-size: 12px;
}
.cart-action-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart-action-group .product-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart-action-group .product-action button i {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 5px;
}
.cart-action-group .product-action input {
    width: 45px;
    height: 30px;
    font-size: 14px;
    border-radius: 5px;
    color: var(--primary);
    background: var(--chalk);
}
.cart-action-group h6 {
    font-weight: 500;
    color: var(--primary);
}
.cart-footer {
    padding: 20px 15px 0;
    text-align: center;
    -webkit-box-shadow: 0 -3px 7px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 -3px 7px 0 rgba(0, 0, 0, 0.08);
}
.coupon-btn {
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: var(--primary-tshadow);
}
.coupon-btn:hover {
    text-decoration: underline;
}
.coupon-form {
    padding: 3px;
    border-radius: 8px;
    margin-bottom: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--border);
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    width: 300px;
}
.coupon-form:focus-within {
    border-color: var(--primary);
}
.coupon-form input {
    width: 100%;
    height: 38px;
    padding: 0 15px;
}
.coupon-form button span {
    width: 100px;
    height: 38px;
    font-size: 14px;
    line-height: 38px;
    border-radius: 8px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.cart-checkout-btn {
    padding: 10px 0;
    border-radius: 8px;
    background: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.cart-checkout-btn:hover {
    background: var(--heading);
}
.checkout-label {
    width: 50%;
    height: 30px;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
}
.checkout-price {
    padding: 0 25px;
    color: var(--white);
}
.category-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 280px;
    height: 100vh;
    z-index: 5;
    background: var(--white);
    -webkit-box-shadow: 15px 0 25px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 15px 0 25px 0 rgba(0, 0, 0, 0.15);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.category-sidebar.active {
    left: 0;
}
.category-header {
    padding: 15px 18px;
    position: relative;
    border-bottom: 1px solid var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.category-title {
    color: var(--primary);
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.category-title i {
    margin-left: 8px;
}
.category-close {
    position: absolute;
    top: 50%;
    right: -18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.category-close i {
    width: 35px;
    height: 35px;
    font-size: 18px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: var(--text);
    background: var(--white);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.category-close i:hover {
    color: var(--white);
    background: var(--primary);
}
.category-list {
    width: 100%;
    padding: 0 15px;
    overflow-y: scroll;
    height: calc(100vh - 130px);
}
.category-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
}
.category-link {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 15px;
    color: var(--text);
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    transition: all linear 0.3s;
}
.category-link::before {
    position: absolute;
    top: 50%;
    right: 18px;
    content: "";
    width: 22px;
    height: 3px;
    background-color: #19101d;;
    transition: all linear .3s;
    -webkit-transition: all linear .3s;
    -moz-transition: all linear .3s;

    -o-transition: all linear .3s;
}
.category-link .title-cat{
  margin-right: 35px;
}
.category-list a:hover {
    color: #19101d !important;
    margin-right: 3px;
}
.category-link .count-cat{
    position: absolute;
    left: 27px;
    top: 11px;
}
.category-footer {
    text-align: center;
    margin-top: 20px;
}
.category-footer p {
    font-size: 14px;
    color: var(--gray);
}
.category-footer p a {
    color: var(--primary);
}
.mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--white);
    border-radius: 10px 10px 0 0;
    -webkit-box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 15px 0 rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: none;
}
.mobile-menu a,
.mobile-menu button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80px;
    padding: 8px 0;
    border-radius: 8px;
    position: relative;
}
.mobile-menu a:hover,
.mobile-menu button:hover {
    background: var(--chalk);
}
.mobile-menu a:hover i,
.mobile-menu button:hover i {
    color: var(--primary);
}
.mobile-menu a:hover span,
.mobile-menu button:hover span {
    color: var(--primary);
}
.mobile-menu a i,
.mobile-menu button i {
    font-size: 15px;
    margin-bottom: 5px;
    color: var(--text);
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
}
.mobile-menu a span,
.mobile-menu button span {
    font-size: 10px;
    line-height: 12px;
    color: var(--text);
    text-transform: uppercase;
}
.mobile-menu a sup,
.mobile-menu button sup {
    position: absolute;
    top: -5px;
    left: 75%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    line-height: 20px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--white);
    background: var(--primary);
    border: 2px solid var(--green-chalk);
    text-shadow: var(--primary-tshadow);
}
.mobile-menu a .fas fa-shopping-basket,
.mobile-menu button .fas fa-shopping-basket {
    font-size: 18px;
}

.product-view {
    max-width: 1000px;
    border-radius: 8px;
    background: var(--white);
}
.view-gallery {
    margin: 30px;
    position: relative;
}
.view-label-group {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.view-label {
    font-size: 15px;
    padding: 6px 10px;
    margin-bottom: 6px;
    line-height: 13px;
    border-radius: 3px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
}
.view-label:last-child {
    margin-bottom: 0;
}
.view-label.off {
    background: var(--red);
}
.view-label.new {
    background: var(--green);
}
.view-label.sale {
    background: var(--orange);
}
.view-label.feat {
    background: var(--purple);
}
.view-label.rate {
    background: var(--yellow);
}
.view-details {
    margin: 30px;
}
.view-name {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.view-name a {
    color: var(--heading);
}
.view-name a:hover {
    color: var(--primary);
}
.view-meta {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.view-meta p {
    font-size: 13px;
    margin-right: 20px;
    text-transform: uppercase;

}
.view-meta span,
.view-meta a {
    margin-left: 5px;
}
.view-meta a:hover {
    text-decoration: underline;
    color: var(--primary);
}
.view-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.view-rating i,
.view-rating a {
    font-size: 15px;
    margin-right: 3px;
    color: var(--gray);
}
.view-rating a {
    margin-left: 8px;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.view-rating a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.view-rating .active {
    color: var(--yellow);
}
.view-price {
    margin-bottom: 20px;
}
.view-price del {
    color: var(--red);
    margin-right: 25px;
}
.view-price span {
    color: var(--primary);
}
.view-price span small {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.view-desc {
    margin-bottom: 25px;
}
.view-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.view-list-group:last-child {
    margin-bottom: 0;
}
.view-list-title {
    font-weight: 500;
    margin-right: 15px;
    color: var(--heading);
    text-transform: capitalize;
}
.view-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.view-tag-list li {
    margin-right: 8px;
}
.view-tag-list li a {
    font-size: 14px;
    line-height: 12px;
    padding: 8px 10px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.view-tag-list li a:hover {
    color: var(--white);
    background: var(--primary);
}
.view-share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.view-share-list li {
    margin-right: 8px;
}
.view-share-list li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.view-share-list li a:hover {
    color: var(--white);
    background: var(--primary);
}
.view-add-group {
    margin: 45px 0 15px;
}
.view-add-group .product-add,
.view-add-group .action-input {
    height: 46px;
    line-height: 46px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
}
.view-action-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative;
}
.view-action-group a {
    padding: 10px 0;
    border-radius: 8px;
    color: var(--text);
    background: var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.view-action-group a i {
    font-size: 16px;
    margin-right: 8px;
}
.view-action-group a span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.view-wish.active {
    color: var(--white);
    background: var(--primary);
}
.preview-slider {
    margin-bottom: 20px;
}
.preview-slider li img {
    width: 100%;
    border-radius: 8px;
}
.thumb-slider li {
    margin: 0 10px;
    cursor: pointer;
}
.thumb-slider li img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border);
}
.thumb-slider .slick-center img {
    border: 1px solid var(--primary);
}
.countdown-part {
    padding: 80px 0;
    background: -webkit-gradient(linear, right top, left top, from(#c3ffda), to(#a1f3c0));
    background: linear-gradient(to left, #c3ffda, #a1f3c0);
}
.countdown-content {
    text-align: center;
}
.countdown-content h3 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.countdown-content p {
    margin-bottom: 38px;
}
.countdown-clock {
    margin-bottom: 45px;
}
.countdown-img {
    position: relative;
}
.countdown-img img {
    width: 100%;
    height: 400px;
}
.countdown-off {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    padding: 35px 30px 30px;
    background: var(--red);
    position: absolute;
    top: 0;
    right: 0;
}
.countdown-off span {
    display: block;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--white);
}
.news-part {
    background-size: cover !important;
    padding: 70px 0;
    position: relative;
    z-index: 1;
}
.news-part::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #131313;
    z-index: -1;
    opacity: 0.5;
}
.news-text h2 {
    font-size: 35px;
    color: var(--white);
    margin-bottom: 5px;
}
.news-text p {
    font-size: 18px;
    font-weight: 300;
    color: var(--white);
}
.news-form {
    width: 100%;
    padding: 6px;
    border-radius: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.news-form input {
    width: 100%;
    height: 50px;
    padding: 0 20px;
    line-height: 50px;
}
.news-form a {
    width: 180px;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--white);
}
.news-form button span:hover {
    color: var(--primary);
    background: var(--white);
}

.news-form button span i {
    margin-right: 5px;
}
.intro-part {
    padding: 80px 0;
    background: var(--intro-bg);
}
.intro-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.intro-wrap img{
    width: 70px;
    margin-left: 5px;
}
.intro-wrap:hover .intro-icon img {
    color: var(--white);
    background:#c79251;
}
.intro-icon {
    margin-left: 20px;
}
.intro-icon {
    width: 78px;
    height: 78px;
    text-align: center;
    float: right;
    position: relative;
}
.intro-icon img {
    border-radius: 100%;
    margin: 0px 20px 0px 0px;
    -webkit-box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
    box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
    width: 70px;
    height: 70px;
    padding: 5px;
    background-color: #fff;
}
.intro-content h5 {
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.intro-content p {
    font-size: 12px;
    line-height: 22px;
}

.footer-part {
    padding-top: 95px;
    background-color: #19101d;
}
.footer-widget {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;

}
.footer-logo {
    margin-bottom: 25px;
}
.footer-logo img {
    width: 67%;
}
.footer-desc {
    margin-bottom: 30px;
    color: #fff;
}
.footer-social li {
    display: inline-block;
    margin-left: 7px;
    color: #fff;
}
.footer-social li:last-child {
    margin-left: 0;
}
.footer-social li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--primary);
    background: #c79251;
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.footer-social li a:hover {
    color: #c79251;
    background: var(--primary);
}
.footer-title {
    margin-bottom: 25px;
    letter-spacing: -0.3px;
    text-transform: capitalize;
    color: #c79251;
}
.footer-widget.contact {
    margin-right: 30px;
}
.footer-contact li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
}
.footer-contact li:last-child {
    margin-bottom: 0;
}
.footer-contact li i {
    font-size: 30px;
    margin-left: 15px;
    color: #c79251;
}
.footer-contact li p span {
    display: block;
    color: #fff;
}
.footer-links {
    display: -ms-grid;
    display: grid;
    grid-gap: 50px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.footer-links ul li {
    margin-bottom: 15px;
}
.footer-links ul li:last-child {
    margin-bottom: 0;
}
.footer-links ul li a {
    color: #fff;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.footer-links ul li a:hover {
    color: #c79251;
    text-decoration: underline;
}
.footer-app {
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}
.footer-app a img {
    width: 100%;
}
.footer-bottom {
    margin-top: 75px;
    padding: 20px 35px 15px;
    border-radius: 8px 8px 0 0;
    background:#c79251;
    border-top: 1px solid var(--border);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer-copytext {
    font-size: 15px;
    color: var(--white);
}
.footer-copytext a {
    color: var(--green-chalk);
}
.footer-copytext a:hover {
    text-decoration: underline;
}
.footer-card a {
    margin-right: 10px;
}
.footer-card a img {
    width: 50px;
    border-radius: 3px;
}
.blog-widget {
    margin-bottom: 30px;
    margin-right: 5px;
    border-radius: 8px;
    padding: 18px 25px 25px;
    background: var(--white);
}
.blog-widget:last-child {
    margin-bottom: 0;
}
.blog-widget-title {
    padding-bottom: 16px;
    margin-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border);
}
.blog-widget-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}
.blog-widget-form {
    position: relative;
}
.blog-widget-form input {
    width: 100%;
    height: 45px;
    padding: 0 60px 0 15px;
    border-radius: 8px;
    background: var(--chalk);
    border: 1px solid var(--border);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-form input:focus-within {
    border-color: var(--primary);
}
.blog-widget-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 0 8px 8px 0;
}
.blog-widget-feed li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}
.blog-widget-feed li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
.blog-widget-media img {
    width: 100px;
    border-radius: 8px;
    margin-left: 20px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-text {
    font-size: 17px;
    line-height: 24px;
}
.blog-widget-text a {
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-text a:hover {
    color: var(--primary);
}
.blog-widget-text span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;

    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    min-width: auto;
}
.blog-widget-category li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}
.blog-widget-category li:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
.blog-widget-category li:hover a {
    color: var(--primary);
}
.blog-widget-category li:hover a span {
    background: var(--primary);
}
.blog-widget-category li a {
    width: 100%;
    font-size: 17px;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-category li a span {
    font-size: 14px;
    float: left;
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-tag li {
    display: inline-block;
    margin: 0 0 12px 8px;
}
.blog-widget-tag li a {
    font-size: 14px;
    padding: 5px 12px;
    border-radius: 3px;
    color: var(--text);
    background: var(--chalk);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-tag li a:hover {
    color: var(--white);
    background: var(--primary);
}
.blog-widget-social li {
    display: inline-block;
    margin-left: 10px;
}
.blog-widget-social li a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    color: var(--white);
    background: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.blog-widget-social li a:hover {
    background: var(--primary);
}
.shop-filter {
    padding: 20px 30px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: var(--white);
    border: 1px solid var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.shop-filter ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.shop-filter ul li {
    margin: 0 5px;
}
.shop-filter ul li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--text);
    background: var(--chalk);
}
.shop-filter ul li .active {
    color: var(--white);
    background: var(--primary);
}
.shop-filter p {
    font-size: 15px;
    text-transform: capitalize;
}
.shop-widget-promo {
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
}
.shop-widget-promo img {
    width: 100%;
    border-radius: 8px;
    transition: all linear 0.3s;
}
.shop-widget-promo img:hover {
    transform: scale(1.05);
}
.shop-widget {
    padding: 20px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: var(--white);
    border: 1px solid var(--white);
}
.shop-widget:last-child {
    margin-bottom: 0;
}
.shop-widget-title {
    padding-bottom: 12px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
.shop-widget-btn {
    width: 100%;
    font-size: 15px;
    padding: 8px 0;
    border-radius: 8px;
    color: var(--heading);
    background: var(--border);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.shop-widget-btn:hover {
    color: var(--white);
    background: var(--primary);
}
.shop-widget-btn i {
    margin-left: 8px;
    margin-top: -1px;
}
.shop-widget-btn span {
    text-transform: capitalize;
}
.shop-widget-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 10px;
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    margin: 15px 0;
}
.shop-widget-group input {
    width: 100%;
    height: 45px;
    border-radius: 5px;
    background: var(--chalk);
    text-align: center;
}
.shop-widget-list {margin: 18px 0 20px;}
.shop-widget-list li {
    margin-bottom: 12px;
    color: var(--gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.shop-widget-list li:hover {
    color: var(--primary);
}
.shop-widget-list li:last-child {
    margin-bottom: 0;
}
.shop-widget-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}
.shop-widget-content input {
    width: 15px;
    height: 15px;
    margin-left: 12px;
    cursor: pointer;
}
.shop-widget-content label {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: capitalize;
}
.countProducts {
    position: absolute;
    left: 0;
    color: var(--primary);
}
.shop-widget-content label i {
    font-size: 15px;
    margin-right: 8px;
    color: var(--gray);
}
.shop-widget-content label i:first-child {
    margin-right: 0;
}
.shop-widget-content label i.active {
    color: var(--yellow);
}
.shop-widget-number {
    font-size: 15px;
}
.shop-widget-search {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 5px;
    background: var(--chalk);
    border: 1px solid var(--border);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.shop-widget-search:focus-within {
    border-color: var(--primary);
}
.shop-widget-scroll {
    height: 279px;
    overflow-y: auto;
    padding-left: 10px;
}
.single-banner {
    background-size: cover !important;
    padding: 70px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}
.single-banner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #131313;
    z-index: -1;
    opacity: 0.5;
}
.single-banner h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
}
.top-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px;
}
.filter-short {
    width: 338px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.filter-show {
    width: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.filter-label {
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 5px;
}
.filter-select {
    height: 40px;
    background-color: transparent;
    min-width: 180px;
    border: 2px solid #19101d;
    border-radius: 8px;
}
.filter-select:focus-within {
    border-color: #ced4da;
}
.filter-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.filter-action a i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: var(--text);
    background: transparent;
}
.filter-action a i:hover {
    color: var(--primary);
}
.filter-action .active i {
    color: var(--white);
    background: var(--primary);
}
.filter-action .active i:hover {
    color: var(--white);
}
.bottom-paginate {
    padding-top: 25px;
    border-top: 1px solid var(--border);
}
.page-info {
    font-weight: 400;
    color: var(--text);
}
.btn_product_cart{
    width: 40px;
    height: 40px;
    font-size: 19px;
    padding: 6px 0;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    color: var(--heading);
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.wish-add {
    display: inline-block;
    border: 2px solid #c79251;

    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.wish-add:hover {
    opacity: .7;
}
.product-add-cart {
    display: inline-block;
    border: 2px solid #c79251;
}

.product-add-cart {
    color: #c79251;
    background: #fff;
    margin-left: 10px;
}

.product-add-cart:hover {
    color: #fff;
    background: #c79251;
}
.favorite {
    color: var(--white);
}
.wish-add i{
    color: #c79251;
}
.favorite i{
    color: #ff3838;
}

.details-gallery {
    position: relative;
}
.details-label-group {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.details-label {
    font-size: 14px;
    padding: 6px 10px;
    margin-bottom: 6px;
    line-height: 13px;
    border-radius: 3px;
    text-transform: capitalize;
    text-align: center;
    color: var(--white);
}
.details-label:last-child {
    margin-bottom: 0;
}
.details-label.off {
    background: var(--red);
}
.details-label.new {
    background: var(--green);
}
.details-label.sale {
    background: var(--orange);
}
.details-label.feat {
    background: var(--purple);
}
.details-label.rate {
    background: var(--yellow);
}
.details-preview {
    margin-bottom: 16px;
}
.details-preview li img {
    width: 100%;
    border-radius: 8px;
    /* height: 400px; */
}
.details-thumb li {
    margin: 0 8px;
    cursor: pointer;
}
.details-thumb li img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--white);
}
.details-thumb .slick-current img {
    border: 1px solid var(--primary);
}
.product-navigation {
    margin-bottom: 25px;
    padding: 20px 25px;
    border-radius: 8px;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-navigation li a {
    color: var(--text);
    text-transform: capitalize;
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.product-navigation li a:hover {
    color: var(--primary);
}
.product-navigation li a:hover .product-nav-popup {
    visibility: visible;
    opacity: 1;
}
.product-nav-popup {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 3;
    width: 100px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    padding: 10px;
    border-radius: 8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    -webkit-box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.product-nav-popup::before {
    position: absolute;
    content: "";
    z-index: -1;
    top: -3px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    background: var(--white);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}
.product-nav-popup img {
    width: 100%;
}
.product-nav-popup small {
    font-size: 14px;
    line-height: 18px;
    display: inline-block;
}
.details-content {
    padding: 0 35px;
    border-radius: 8px;
    background: var(--white);
}
.details-name {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.details-name a {
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.details-name a:hover {
    color: var(--primary);
}
.details-meta {
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.details-meta p {
    font-size: 13px;
    margin-left: 20px;
    white-space: nowrap;
    text-transform: uppercase;

}
.details-meta span,
.details-meta a {
    margin-left: 5px;
}
.details-meta a:hover {
    text-decoration: underline;
    color: var(--primary);
}
.details-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.details-rating i,
.details-rating a {
    font-size: 15px;
    margin-right: 3px;
    color: var(--gray);
}
.details-rating a {
    margin-left: 8px;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.details-rating a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.details-rating .active {
    color: var(--yellow);
}
.details-price {
    margin-bottom: 20px;
}
.details-price del {
    color: var(--red);
    margin-left: 25px;
}
.details-price span {
    color: var(--primary);
    white-space: nowrap;
}
.details-price span small {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.details-desc {
    margin-bottom: 25px;
}
.tab-descrip p{
    margin-bottom: 0;
}
.details-list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.details-list-group:last-child {
    margin-bottom: 0;
}
.details-list-title {
    font-weight: 500;
    margin-left: 15px;
    color: var(--heading);
    text-transform: capitalize;
}
.details-tag-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.details-tag-list li {
    margin-left: 8px;
}
.details-tag-list li a {
    font-size: 14px;
    line-height: 12px;
    padding: 8px 10px;
    border-radius: 5px;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.details-tag-list li a:hover {
    color: var(--white);
    background: var(--primary);
}
.details-share-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.details-share-list li {
    margin-left: 8px;
}
.details-share-list li a {
    width: 35px;
    height: 35px;
    font-size: 16px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
}
.details-share-list li a:hover {
    color: var(--white);
    background: var(--primary);
}
.details-add-group {
    margin: 45px 0 15px;
}
.details-add-group .product-add,
.details-add-group .action-input {
    padding: 10px 0;
    text-transform: uppercase;
}
.details-add-group .action-minus i,
.details-add-group .action-plus i {
    background: var(--chalk);
}
.details-action-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative;
}
.details-action-group a {
    padding: 10px 0;
    border-radius: 8px;
    color: var(--text);
    background: var(--chalk);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.details-action-group a:hover {
    color: var(--primary);
}
.details-action-group a i {
    font-size: 16px;
    margin-left: 8px;
}
.details-action-group a span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.details-wish.active {
    color: var(--white);
    background: var(--primary);
}
.details-wish.active:hover {
    color: var(--white);
    background: var(--primary);
}
.product-details-frame:last-child {
    margin-bottom: 0;
}
.frame-title {
    margin-bottom: 30px;
    text-transform: capitalize;
}
.tab-descrip {
    position: relative;
    color: #666;
}
.tab-descrip ul {
    list-style: disc;
    margin-right: 20px;
    margin-top: 25px;
}
.tab-descrip ul li {
    margin-bottom: 8px;
}
.tab-descrip ul li:last-child {
    margin-bottom: 0;
}
.tab-descrip img {
    width: 100%;
    border-radius: 8px;
}
.tab-descrip a {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 80px;
    height: 80px;
    font-size: 22px;
    line-height: 80px;
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    background: rgba(15, 199, 86, 0.8);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    text-shadow: var(--primary-tshadow);
}
.table-bordered {
    margin-bottom: 0;
}
.table-bordered th,
.table-bordered td {
    padding: 12px 25px;
    text-align: right;
}
.table-bordered th {
    font-weight: 500;
}
.table-bordered td:last-child {
    border-left: 1px solid var(--border);
}
.review-item {
    padding: 45px 45px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: var(--chalk);
    border: 1px solid var(--border);
}
.review-item:last-child {
    margin-bottom: 0;
}
.review-media {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.review-avatar {
    margin-left: 15px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}
.review-avatar img {
    width: 65px;
    border-radius: 50%;
    border: 2px solid var(--white);
}
.review-meta {
    text-transform: capitalize;
}
.review-meta a {
    color: var(--heading);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.review-meta a:hover {
    color: var(--primary);
}
.review-meta span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
}
.review-meta span b {
    font-weight: 500;
    color: var(--primary);
}
.review-rating {
    margin-bottom: 10px;
}
.review-rating li {
    font-size: 16px;
    margin-left: 5px;
    color: var(--yellow);
    display: inline-block;
}
.review-desc {
    margin-bottom: 20px;
}
.review-reply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.review-reply input {
    width: 100%;
    padding: 7px 18px;
    border-radius: 6px;
    margin-left: 20px;
    background: var(--white);
}
.review-reply button {
    font-size: 15px;
    padding: 6px 15px;
    border-radius: 6px;
    color: var(--white);
    background: var(--primary);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.review-reply button:hover {
    background: var(--heading);
}
.review-reply button i {
    margin-left: 5px;
}
.review-reply-list {
    margin-right: 80px;
    margin-top: 35px;
    border-top: 1px solid var(--border);
}
.review-reply-item {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}
.review-reply-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.review-form .btn {
    width: 100%;
    padding: 12px 30px;
}

/*********************************/

.about-choose {
    margin-bottom: 75px;
}
.choose-card {
    margin: 25px 15px;
}
.about-brand {
    background: var(--green-chalk);
    padding: 90px 0 100px;
}
.brand-slider li {
    margin: 0 10px;
    padding: 20px 0;
    border-radius: 8px;
    background: var(--white);
}
.brand-slider li img {
    width: 100%;
}
.team-slider li {
    margin: 0 12px;
}
.team-slider .dandik,
.team-slider .bamdik {
    top: 40%;
}
/********************************/
.about-section{
    position: relative;
    padding: 0 0 100px 0;
}

.image_block_1 .image-box{
    position: relative;
    display: inline-block;
    width: 655px;
    height: 655px;
    line-height: 655px;
    background: #19101d;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
}

/*.about-section .image_block_1 .image-box{*/
/*    margin: 0 -11px 0 -107px;*/
/*}*/

.content_block_1 .content-box{
    position: relative;
    display: block;
}

.about-section .content_block_1 .content-box{
    margin-right: 70px;
}

.content_block_1 .content-box .year-box{
    position: relative;
    margin-bottom: 31px;
}

.content_block_1 .content-box .text{
    margin-bottom: 36px;
}

.content_block_1 .content-box .sec-title{
    margin-bottom: 25px;
}

.about-section .image-layer{
    position: absolute;
    top: -79px;
    left: 135px;
}

.about-section .image-layer img{
    width: 150px;
}

.section-heading h2{
    font-size: 24px;
    color: #19101d;
    font-weight: bold;
}
.img-contact img{
    width: 100%;
    height: 500px;
    border-radius: 6px;
}
.checkout-proced{
    text-align: center;
}
.checkout-proced .btn {
    text-align: center;
}
.edit-cart{
    margin-right: 10px;
}
.sec-title {
    padding-left: 0;
    padding-right: 20px;
}
.sec-title .title {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 1.2em;
    color: var(--primary);
    font-weight: 700;
    top: -4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.sec-title.light h2 {
    color: #ffffff;
}

.sec-title h2 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: #1a1d1f;
    font-weight: 600;
    text-transform: uppercase;
}
.sec-title .text {
    position: relative;
    font-size: 18px;
    line-height: 29px;
    color: #ecebeb;
    font-weight: 300;
    margin-top: 18px;
}
.payment-card  i {
    padding-left: 15px;
    font-size: 24px;
}
/********** cart ********************/

.chekout-coupon {
    margin: 20px auto 5px;
    text-align: center;
}
.checkout-charge {
    width: 600px;
    margin: 0 auto;
}
.checkout-charge ul {
    border-top: 3px solid var(--primary);
}
.checkout-charge ul li {
    padding: 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.checkout-charge ul li:last-child {
    border-bottom: none;
}
.checkout-charge ul li:last-child span {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}
.checkout-charge ul li span {
    font-weight: 500;
    color: var(--heading);
    text-transform: capitalize;
}
.checkout-charge ul li span small {
    font-size: 14px;
    font-weight: 400;
    margin-right: 3px;
}
.checkout-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 25px;
    margin-top: 50px;
}
.checkout-check input {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-top: 4px;
    cursor: pointer;
}
.checkout-check label {
    line-height: 22px;
}
.checkout-check label a {
    color: var(--primary);
}
.checkout-check label a:hover {
    text-decoration: underline;
}
.table-action .view i,
.table-action .trash i {
    background: var(--chalk);
}
@media (max-width: 767px) {
    .chekout-coupon,
    .checkout-charge {
        width: 100%;
    }
    .checkout-check {
        margin-top: 15px;
    }
}
/************* index ***************/
.home-index-slider .dandik {
    right: 30px;
}
.home-index-slider .bamdik {
    left: 30px;
}
.home-index-slider .slick-dots {
    bottom: 50px;
}
.banner-part {
    padding: 50px 0 60px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}
.banner:nth-child(even) {
    background: -webkit-gradient(linear, left top, right top, from(#45f76354), to(#ffc3d024));
    background: linear-gradient(to right, #45f76354, #ffc3d024);
}
.banner:nth-child(odd){
    background: -webkit-gradient(linear, right top, left top, from(#45f76354), to(#ffc3d024));
    background: linear-gradient(to left, #45f76354, #ffc3d024);
}
.banner:nth-child(odd) .banner-content {
    text-align: right;
}
.banner-content h1 {
    text-transform: capitalize;
    margin-bottom: 22px;
}
.banner-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 50px;
}
.banner-btn .btn {
    margin-right: 15px;
}
.banner-img img {
    width: 100%;
}
@media (max-width: 767px) {
    .banner-content h1 {
        font-size: 38px;
        line-height: 48px;
    }
    .banner-img {
        display: none;
    }
    .banner-btn .btn {
        margin: 8px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .banner-content h1 {
        font-size: 32px;
        line-height: 42px;
    }
    .banner-btn .btn {
        padding: 14px 22px;
        margin-right: 10px;
    }
}
.suggest-slider li {
    margin: 0 10px;
}
@media (max-width: 575px) {
    .suggest-slider li {
        margin: 0 5px;
    }
}
.promo-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.promo-img a {
    width: 100%;
}
.promo-img a img {
    width: 100%;
    border-radius: 8px;
    height: 300px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.promo-img a img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .promo-img {
        margin: 12px 0;
    }
}
.new-slider li {
    margin: 0 12px;
}
@media (max-width: 575px) {
    .new-slider .product-card {
        width: 220px;
    }
}
.testimonial-slider .slick-slide {
    opacity: 0.3;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.testimonial-slider .slick-center {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.testimonial-slider .dandik,
.testimonial-slider .bamdik {
    opacity: 1;
    visibility: visible;
}
.testimonial-slider .dandik {
    right: 50px;
}
.testimonial-slider .bamdik {
    left: 50px;
}
.brand-slider .dandik,
.brand-slider .bamdik {
    top: 35%;
}
.blog-slider .blog-card {
    margin: 0 15px 25px;
}
.blog-slider .dandik,
.blog-slider .bamdik {
    top: 43%;
}
/************ login ******/
.user-form-logo {
    text-align: center;
    margin-bottom: 25px;
}
.user-form-card {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--white);
    border: 1px solid var(--border);
}
.user-form-title {
    text-align: center;
    margin-bottom: 25px;
}
.user-form-title h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 5px;
    color: var(--primary);
}
.user-form-title p {
    text-transform: capitalize;
}
.user-form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.user-form-social {
    width: 100%;
}
.user-form-social li {
    margin-bottom: 20px;
}
.user-form-social li a {
    width: 100%;
    font-size: 15px;
    padding: 10px 0;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    background: var(--primary);
}
.user-form-social li a i {
    font-size: 16px;
    margin-left: 10px;
}
.user-form-social li:last-child {
    margin-bottom: 0;
}
.user-form-divider {
    width: 1px;
    height: 240px;
    margin: 0 50px;
    background: var(--border);
    position: relative;
    z-index: 1;
}
.user-form-divider p {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    margin: 0 auto;
    font-style: italic;
    line-height: 38px;
    border-radius: 50%;
    text-align: center;
    color: var(--gray);
    background: var(--white);
    border: 1px solid var(--border);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.user-form {
    width: 100%;
}
.user-form .form-group {
    margin-bottom: 20px;
}
.form-button {
    text-align: center;
}
.form-button button {
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 500;
    line-height: 45px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary);
    border: 1px solid var(--primary);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.form-button button:hover {
    background: transparent;
    color: var(--primary);
}
.form-button p {
    font-size: 15px;
    margin-top: 12px;
    text-transform: capitalize;
}
.form-button p a {
    font-weight: 500;
    margin-right: 5px;
    color: var(--primary);
}
.form-button p a:hover {
    text-decoration: underline;
}
.user-form-remind {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
}
.user-form-remind p {
    font-size: 15px;
    text-transform: capitalize;
}
.user-form-remind p a {
    font-weight: 500;
    margin-right: 5px;
    color: var(--primary);
}
.user-form-remind p a:hover {
    text-decoration: underline;
}
.user-form-footer {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 40px;
}
.user-form-footer p {
    font-size: 14px;
    color: var(--gray);
}
.user-form-footer p a {
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;

    -o-transition: all linear 0.3s;
}
.user-form-footer p a:hover {
    text-decoration: underline;
}
.close {
    float: left;
}
.alert ul {
    margin-bottom: 0;
}

/*** dashboard Secton Start *****/
.dashboard-card{
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.dashboard-card:hover{
    border: 1px solid #2c742f;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-box-shadow: 0 0 12px 0 #20b52652;
    box-shadow: 0 0 12px 0 #20b52652;
}
.dashboard-card:hover h5,
.dashboard-card:hover h6 {
    color: #2c742f;
}
.dashboard-card:hover .cards-md__info-right .action-btn{
    color: #fff;
    background-color: #19101d;
}

.dashboard-card {
    padding: 32px;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.dashboard__nav {
    position: relative;
    border-radius: 8px;
    padding: 24px 0;
    padding-bottom: 12px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
}
.dashboard__nav .filter-icon {
    display: none;
    position: absolute;
    top: 8px;
    right: -38px;
    background-color: #19101d;
    padding: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

dashboard__content {
    margin-top: 32px; }
.dashboard__user-profile:hover, .dashboard__user-billing:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #e5e5e5; }
.dashboard__user-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
.dashboard__user-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}
.dashboard__user-profile-img img {
    width: inherit;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.dashboard__user-profile-info .name,
.dashboard__user-profile-info .designation,
.dashboard__user-profile-info .edit {
    text-transform: capitalize;
}
.dashboard__user-profile-info .name {
    color: #1a1a1a;
}
.dashboard__user-profile-info .designation {
    color: #808080;
}
.dashboard__user-profile-info .edit {
    color: #19101d;
    margin-top: 9px;
    font-size: 14px;
}
.dashboard__user-billing-title {
    line-height: 14px;
    text-transform: uppercase;
    color: #999999;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
    font-size: 19px;
}
.dashboard__user-billing-name,
.dashboard__user-billing-location,
.dashboard__user-billing-editaddress {
    text-transform: capitalize;
}
.dashboard__user-billing-name,
.dashboard__user-billing-email,
.dashboard__user-billing-number {
    color: #1a1a1a;
}
.dashboard__user-billing-location {
    color: #666666;
}
.dashboard__user-billing-editaddress {
    color: #19101d;
    margin-top: 12px;
    font-size: 14px;
}
.dashboard__user-billing-editaddress:hover {
    color: #19101d;
}
.dashboard__user-billing-name,
.dashboard__user-billing-location {
    margin-bottom: 8px;
}
.dashboard__user-billing-email,
.dashboard__user-billing-number {
    margin-bottom: 6px;
    font-size: 14px;
}
.dashboard__details-content {
    margin: 24px;
}
.dashboard__details-card,
.dashboard__totalpayment-card {
    position: relative;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.dashboard__details-card {
    /*display: -webkit-box;*/
    /*display: -ms-flexbox;*/
    /*display: flex;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.dashboard__details-card-item {
    height: inherit;
    border-right: 1px solid #e5efef;
}
.dashboard__details-card-item:nth-last-child(1) {
    border-right: 0;
}
.dashboard__details-card-item__inner {
    padding: 14px 20px;
}
.dashboard__details-card-item__inner h2 {
    text-transform: capitalize;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.dashboard__details-card-item__inner p {
    text-transform: capitalize;
    color: #666666;
}
.dashboard__details-card-item__inner-contact {
    margin-bottom: 12px;
}
.dashboard__details-card-item__inner-contact h5 {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 4px; }
.dashboard__details-card-item__inner-contact p {
    color: #1a1a1a;
}
.dashboard__details-card-title {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.03em;
    color: #999999;
    text-transform: uppercase;
    padding: 18px 20px;
    margin-bottom: 0;
}
.dashboard__totalpayment-card-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}
.dashboard__totalpayment-card-header-item {
    padding: 20px;
    border-right: 1px solid #e5e5e5;
}
.dashboard__totalpayment-card-header-item:nth-last-child(1) {
    border: 0;
}
.dashboard__totalpayment-card-header-item h5 {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.03em;
    color: #808080;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.dashboard__totalpayment-card-header-item p {
    color: #1a1a1a;
    text-transform: capitalize;
}
.dashboard__totalpayment-card-body {
    padding: 18px 20px;
}
.dashboard__totalpayment-card-body-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e5e5e5;
}
.dashboard__totalpayment-card-body-item:nth-child(1) {
    padding-top: 0;
}
.dashboard__totalpayment-card-body-item:nth-last-child(1) {
    border: 0;
}
.dashboard__totalpayment-card-body-item h5 {
    text-transform: capitalize;
    color: #666666;
}
.dashboard__totalpayment-card-body-item p {
    color: #1a1a1a;
    text-align: right;
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 0;
}
.dashboard__totalpayment-card-body-item.total h5 {
    color: #1a1a1a;
}
.dashboard__totalpayment-card-body-item.total p {
    font-weight: 600;
    color: #2c742f;
}
.dashboard__order-history {
    position: relative;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}
.dashboard__order-history table {
    margin-bottom: 0;
}
.dashboard__order-history-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px 24px;
}
.dashboard__order-history-title h2,
.dashboard__order-history-title a {
    text-transform: capitalize;
}
.dashboard__order-history-title h2 {
    color: #1a1a1a;
}
.dashboard__order-history-title h2,
.dashboard__order-history-title a {
    text-transform: capitalize;
}
.dashboard__order-history-title h2 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}
.dashboard__order-history-title a {
    color: #19101d;
}
dashboard__order-history-table-title, .dashboard__order-history-table-item {
    font-size: 14px;
    line-height: 21px;
    padding: 12px 24px !important;
    border-bottom: 0 !important;
}
.dashboard__order-history-table-title {
    color: #4d4d4d;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: 500;
    background-color: #f2f2f2 !important;
}
.dashboard__order-history-table-item {
    font-weight: 400;
    color: #333333;
    padding: 8px !important;
    vertical-align: middle !important;
}
.dashboard__order-history-table-item p {
    margin-bottom: 0;
}
.dashboard__order-history-table-item:nth-last-child(1) {
    padding-right: 24px !important;
    text-align: right;
}
.dashboard__order-history-table-item .order-total-price {
    font-weight: 500;
}
.dashboard__order-history-table-item .order-total-price .quantity {
    font-weight: 400;
}
.dashboard__order-history-table-item p .label {
    padding: 5px 10px;
    font-weight: 400;
}
.dashboard__order-history-table-item.order-details a {
padding: 5px 10px;
font-size: 14px;
}
.dashboard__order-history-table__product-content tbody tr {
position: relative;
width: 100%;
}
.dashboard__order-history-table__product-content tbody tr::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 96%;
height: 1px;
background-color: #e5e5e5;
}
.dashboard__order-history-table__product-content tbody tr:nth-last-child(1)::after {
height: 0;
}

.dashboard__order-history-table .table>:not(:last-child)>:last-child>* {
border-bottom-color: #f2f2f2;
}

p .label-bg-pending {
background-color: #d9b00d;
}

p .label-bg-received {
background-color: #e67e22;
}

p .label-bg-preparation {
background-color: #3498db;
}

p .label-bg-shipping {
background: #1ccaa7;
}

p .label-bg-reached {
background: #2ecc71;
}

p .label-bg-canceled {
background: #e74c3c;
}

p .label-bg-refund {
background: #2c3e50;
}
.line-wishlist{
line-height: 69px;
}
p .label {
display: inline-block;
border-radius: 5px;
font-size: 14px;
padding: 1px 10px;
font-weight: bold;
color: #fff;
}
.dashboard__order-pagination {
padding: 32px 0;
padding-top: 12px;
}
.dashboard__content-card {
position: relative;
width: 100%;
height: 100%;
border-radius: 8px;
border: 1px solid #e5e5e5;
margin-bottom: 24px;
}
.dashboard__content-card-header {
padding: 12px 20px;
-webkit-box-shadow: 0 1px 0 0 #e5e5e5;
box-shadow: 0 1px 0 0 #e5e5e5;
}
.dashboard__content-card-header h5 {
text-transform: capitalize;
color: #1a1a1a;
margin-bottom: 0;
}
.dashboard__content-card-body {
padding: 24px;
}
.dashboard__content-card-img {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
height: 100%;
}
.dashboard__content-img-wrapper {
width: 224px;
height: 224px;
border-radius: 100%;
overflow: hidden;
margin-bottom: 80px;
}
.dashboard__content-img-wrapper img {
width: inherit;
height: inherit;
-o-object-fit: cover;
object-fit: cover;
}
.dashboard__content .button {
margin: auto;
text-align: center;
}
.dashboard__product-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.dashboard__product-item-img {
position: relative;
width: 70px;
height: 70px;
overflow: hidden;
margin-right: 12px;
}
.dashboard__product-item-img img {
width: inherit;
height: inherit;
}
.dashboard__product-item h5 {
color: #1a1a1a;
}
.dashboard__nav-title {
text-transform: capitalize;
margin-bottom: 16px;
padding: 0 24px; }
.dashboard__nav-item-link {
border-right: 3px solid transparent; }
.dashboard__nav-item-link:hover, .dashboard__nav-item-link.active {
background-color: #19101d;
border-color: #c79251;
-webkit-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.dashboard__nav-item-link:hover a, .dashboard__nav-item-link.active a {
color: #fff;
}
.dashboard__nav-item-link a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #666666;
padding: 16px 24px; }
.dashboard__nav-item-link a .icon {
margin-right: 6px;
width: 30px; }
.dashboard__nav-item-link a .name {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
}

/********** user ***************/
.breedcrumb__img-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}
.breedcrumb__img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90.02deg, rgb(0 0 0 / 70%) 0.03%, rgb(0 0 0 / 64%) 91.31%);}
.breedcrumb__img-wrapper img {
    width: inherit;
    height: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.breedcrumb__content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}


.breedcrumb__content li a {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
.breedcrumb__content li a svg {
    margin-bottom: 6px; }
.breedcrumb__content li a span {
    margin: 0 12px; }
.breedcrumb__content li.active {
    display: block; }
.breedcrumb__content li.active a {
    color: #19101d;

}
.breedcrumb--two .breedcrumb__content {
    position: relative;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    top: 0;
    left: 0; }

.dashboard__nav-item-link .icofont-location-pin{
    font-size: 24px;
    margin-right: 6px;
    width: 30px;
}
/*********************************/
.contact-form-input {
    margin-bottom: 16px;
    position: relative; }
.contact-form-input label {
    font-size: 14px;
    line-height: 21px;
    color: #1a1a1a;
    text-transform: capitalize;
    margin-bottom: 6px;
    display: block; }
.contact-form-input label span {
    color: #666666; }
.contact-form-input input {
    position: relative;
    width: 100%;
    height: 50px;
    padding-left: 16px;
    padding-right: 15px;
    font-size: 16px;
    line-height: 20.8px;
    color: #1a1a1a;
    font-weight: 400;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background-color: #fff; }
@media (max-width: 767px) {
    .contact-form-input input {
        padding-right: 16px; } }
.contact-form-input input::-webkit-outer-spin-button, .contact-form-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; }
.contact-form-input input::-webkit-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #666666; }
.contact-form-input input:-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #666666; }
.contact-form-input input::-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #666666; }
.contact-form-input input::placeholder {
    font-size: inherit;
    line-height: inherit;
    color: #666666; }
@media (max-width: 767px) {
    .contact-form-input input::-webkit-input-placeholder {
        font-size: 12px; }
    .contact-form-input input:-ms-input-placeholder {
        font-size: 12px; }
    .contact-form-input input::-ms-input-placeholder {
        font-size: 12px; }
    .contact-form-input input::placeholder {
        font-size: 12px; } }
@media (max-width: 767px) {
    .contact-form-input input[type='password'] {
        padding-right: 60px; } }
.contact-form-input input:active, .contact-form-input input:hover, .contact-form-input input:focus {
    border-color: #19101d;
    -webkit-transform: all 0.3s linear;
}
.contact-form-input .bv_mainselect {
    padding: 0;
    height: 50px;
}
.contact-form-input .bv_mainselect:hover, .contact-form-input .bv_mainselect.active {
    border-color: #19101d;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
.contact-form-input .bv_mainselect .bv_atual {
    border: 0;
    height: inherit;
    border: 1px solid #e5e5e5;
    line-height: 30px;
    color: #666666;
    padding-left: 16px; }
.contact-form-input .bv_mainselect .bv_atual:hover, .contact-form-input .bv_mainselect .bv_atual.active {
    border-color: #19101d;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
.contact-form-input .bv_mainselect .bv_atual .arrow {
    border-color: #999999;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    margin-right: 8px; }
.contact-form-input .bv_mainselect .bv_ul_inner {
    border: 1px solid #e5e5e5;
    z-index: 9; }
.contact-form-input .icon {
    position: absolute;
    top: calc(50% + 10px);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 18px;
    cursor: pointer; }
.contact-form-input.filled input {
    color: #666666; }
.contact-form-textarea textarea {
    resize: none;
    width: 100%;
    height: 100px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 20.8px;
    font-weight: 400;
    color: #666666; }
.contact-form-textarea textarea:hover, .contact-form-textarea textarea.active {
    border-color: #19101d;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear; }
.contact-form-textarea textarea::-webkit-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: inherit; }
.contact-form-textarea textarea:-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: inherit; }
.contact-form-textarea textarea::-ms-input-placeholder {
    font-size: inherit;
    line-height: inherit;
    color: inherit; }
.contact-form-textarea textarea::placeholder {
    font-size: inherit;
    line-height: inherit;
    color: inherit; }
.contact-form-btn {
    margin-top: 80px;
}
.form .dashboard__content-card-img input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 4px;
}

[type="file"] {
    cursor: pointer !important;
    display: block;
    font-size: 999px;
    filter: alpha(opacity=0);
    min-height: 100%;
    min-width: 100%;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: right;
    top: 0;
    z-index: 1;
}
.file-uploader {
    position: relative;
}

.file-uploader label {
    position: absolute;
    left: 30px;
    top: 87px;
    padding: 6px 26px;
    width: 150px;
    transition: all .2s ease-in-out;
}
.password-user a{
    font-size: 14px;
    padding: 5px 30px;
    float: left;
}
.add-address-user a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    border-radius: 50%;
    float: left;
}
.add-address-user a i {
    margin-left: 0;
}
/************* checkout ********************/
.section {
    position: relative;
}

.section--xl {
    padding: 0;
}
.billing__content {
    margin-top: 32px;
}
.billing__content-card-header h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: capitalize;
}
.bill-card {
    position: relative;
    width: 100%;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}
.bill-coupon {
    position: relative;
    width: 100%;
    padding:24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.bill-coupon h3{
    font-size: 18px;
}

.bill-card__content {
    margin-bottom: 24px;
}
.bill-card__header {
    margin-bottom: 12px;
}
.font-body--xxl-500 {
    font-size: 20px;
    font-weight: 500;
}
.bill-card__product {
    margin-bottom: 12px;
}
.bill-card__product-item {
    margin-bottom: 15px;
}
 #address-add .modal-form {
    width: 600px;
}
.details-priceproduct{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}
.quantity-product{
    position: absolute;
    right: 80px;
    top: -26px;
}
.bill_card_price{
    position: absolute;
    left: 35px;
    top: -26px;
}
.input-group-btn .bootstrap-select > .dropdown-toggle:after {
    position: absolute;
}
.ltr_bill_card {
    direction: ltr;
    display: inline-block;
}
.btn-coupon{
    padding: 4px 30px;
}
.bill-card__product-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bill-card__product-item-content .img-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
}
.bill-card__product-item-content .img-wrapper img {
    width: inherit;
    height: inherit;
}
.font-body--md-400 {
    font-size: 14px;
    font-weight: 400;
}
.bill-card__memo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}
.bill-card__memo-item p {
    color: #4d4d4d;
    text-transform: capitalize;
}
.bill-card__memo-item span {
    color: #1a1a1a;
    text-transform: capitalize;
}

.img-wrapper img {
    padding: 5px;
    border: 1px solid #eeeeee;
    display: inline-block;
    border-radius: 7px;
}
.bill-card__product-item-content .title-product{
    margin-right: 15px;
    margin-bottom: 30px;

    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 75%;
}
.bill-card__product-item-content .quantity-product{
    margin-right: 15px;
    direction: ltr;
    display: inline-block;
}
.overlayAddress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 9;
    cursor: not-allowed;
}
/********************************/
.phoneInputScreen .phoneCountry {
    direction: rtl;
}
.input-group-btn{
    width: 140px;
    margin-right: 10px;
}
.phoneInputScreen .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: -1px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.input-group-btn .country_img {
    width: 33px;
    height: 18px;
}
.bs3.bootstrap-select .dropdown-toggle .filter-option {
    padding-right: initial;
}
.input-group .bootstrap-select.form-control .dropdown-toggle  {
    height: 45px;
    border-radius: 6px;
    color: var(--text);

}
.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    overflow: hidden;
}

.input-group-btn .bootstrap-select > .dropdown-toggle:after {
    position: absolute;
}
.bootstrap-select>.dropdown-toggle:after {
    margin-top: 0px;
    margin-left: -10px;
}
label .required {
    color: #f00;
    position: relative;
    top: 3px;
}
.bootstrap-select button {
    height: 45px;
    background: transparent;
    border: 1px solid #ddd;
    padding: 10px 32px;
}

.my_profile_setting_input .filter-option-inner-inner {
    line-height: 25px !important;
}
.add-address  .dropdown-item {
    text-align: right;
}
.bootstrap-select .dropdown-toggle .filter-option {
    position: relative;
    text-align: right;
}
.bootstrap-select .dropdown-toggle:focus {
    outline: thin #333!important;
    outline: 5px !important;
    outline-offset: -2px;
}
select.lang-website   {
    word-wrap: normal;
    border: 1px;
    background-color: white;
}
.contact-form-input .input-group .bootstrap-select.form-control .dropdown-toggle {
    height: 50px;
}
.contact-form-input .input-group {
    position: absolute;
    left: 0;
    width: 155px;
}

/********************/
.avatar-upload {
    position: relative;
    max-width: 205px;
    margin: 0 auto;
}
.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}
.avatar-upload .avatar-edit input {
    display: none;
}
.avatar-upload .avatar-edit input + label {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 12%);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
    line-height: 18px;
}
.avatar-upload .avatar-edit input + label:after {
    content: "\f044";
    font-family: "Font Awesome 5 Free";
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    font-size: 12px;
}
.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
}
.avatar-upload .avatar-preview > div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.avatar-upload .avatar-edit input + label:hover {
    background: #19101d;
    border-color: #19101d;
}
.phoneInputScreen .filter-option-inner-inner {
    line-height: 24px;
    font-size: 14px;
}
.width-countrycode{
    width: 80% !important;
    float:right!important;
}
.no_found {
    padding: 70px 0;
    text-align: center;
}
.no_found i {
    font-size: 120px;
    color: #e6e6e6;
    display: block;
    margin-bottom: 20px;
}
.no_found h5{
    margin-top: 10px;
    font-size: 28px;
    color: #0b0b0b;
    font-weight: 600;
    padding-top: 23px;
}
.add-trash .custom-btn, .add-info .custom-btn{
    position: absolute;
    left: 27px;
    padding: 8px 19px;
}
.add-trash .btn.custom-btn{
    border: 2px solid #a32e22;
    color: #a32e22;
    background: var(--white);
}
.add-trash .btn-outline:hover {
    color: var(--white)!important;
    background: #a32e22!important;
}
.add-info .btn.custom-btn{
    border: 2px solid #000;
    color: #000;
    background: var(--white);
}
.add-info .btn-outline:hover {
    color: var(--white)!important;
    background: #000!important;
}
#ReturnOrder .btn-inline, #ReturnOrder .btn-outline{
    padding: 5px 10px;
    margin: 0 5px;
}
/****************8888******************/


.navbar-select-group .navbar-select .bootstrap-select button {
    height: 45px;
    background: transparent;
    border: 0;
    padding: 10px 32px;
}
.navbar-select-group .navbar-select .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 122px;
}
.navbar-select-group .navbar-select .bootstrap-select .dropdown-menu li a {
    text-align: center;
}

.navbar-list .dropdown-arrow::before {
    position: absolute;
    content: "";
}
.navbar-item {
    margin-left: 0px;
}

element.style {
}
.navbar-link {
    padding: 18px 0px;
}
.navbar-link {
    padding: 22px 0;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.navbar-select i {
    font-size: 16px;
    margin-left: -23px;
}
.header-top {
    position: relative;
    text-align: center;
    padding: 9px 0px;
    background: #19101d;
}
.header-logo {
    margin-left: 0px;
    width: 75%;
}
.header-top p {
    font-size: 15px;
    letter-spacing: 0.3px;
    color: var(--white);
    margin-bottom: 0;
}
.suggest-card img {
    height: 170px;
    width: 170px;
    border-radius: 50%;
}
.header-top p a {
    font-size: 12px;
    font-weight: 500;
    padding: 0px 12px;
    border-radius: 3px;
    line-height: 24px;
    margin-left: 10px;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    background: var(--white);
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.header-top p a:hover {
    color: var(--white);
    background: var(--primary);
}
.header-top button {
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.header-top button i {
    width: 25px;
    height: 25px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    color: var(--white);
}
@media (max-width: 575px) {
    .header-top p a {
        width: 120px;
        display: block;
        margin: 2px auto 5px;
    }
    .header-top button {
        right: 15px;
    }
}
.navbar-link {
    padding: 18px 0px;
}
.navbar-select-group {
    margin-top: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.navbar-select {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid var(--border);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.navbar-select:hover i {
    color: var(--primary);
}
.navbar-select:first-child {
    border: none;
    padding: 0px;
    margin: 0px;
}
.navbar-select i {
    font-size: 16px;
    margin-right: 8px;
}
.dropdown:hover .dropdown-position-list {
    visibility: visible;
    opacity: 1;
    top: 62px;
}
.dropdown-megamenu {
    position: static;
}
.dropdown-megamenu:hover .megamenu {
    visibility: visible;
    opacity: 1;
    top: 188px;
}
@media (max-width: 991px) {
    .navbar-part {
        display: none;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar-list li {
        margin-right: 18px;
    }
    .navbar-link {
        font-size: 15px;
    }
}

.header-sticky.active {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: var(--white);
    -webkit-box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
    box-shadow: 0 5px 15px 0 rgb(0 0 0 / 15%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
/***************************/
.banner-part {
    padding: 25px 0px 0px;
}
.home-grid-promo {
    margin-bottom: 25px;
}
.home-grid-promo a img {
    border-radius: 8px;
    width: 350px;
    height: 173px;
}
.home-grid-slider {
    margin-bottom: 25px;
}
.home-grid-slider img {
    width: 100%;
    border-radius: 8px;
    height: 500px;
}
.suggest-slider li {
    margin: 0px 10px;
}
@media (max-width: 575px) {
    .suggest-slider li {
        margin: 0px 5px;
    }
}
@media (max-width: 855px) {
   .home-grid-slider img{
    height: 100% !important;
   }
}
.promo-img {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.promo-img a {
    width: 100%;
}
.promo-img a img {
    width: 100%;
    border-radius: 8px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.promo-img a img:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .promo-img {
        margin: 12px 0px;
    }
}
.new-slider li {
    margin: 0px 12px;
}
@media (max-width: 575px) {
    .new-slider .product-card {
        width: 220px;
    }
}
.testimonial-slider .slick-slide {
    opacity: 0.3;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.testimonial-slider .slick-center {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.testimonial-slider .dandik,
.testimonial-slider .bamdik {
    opacity: 1;
    visibility: visible;
}
.testimonial-slider .dandik {
    right: 50px;
}
.testimonial-slider .bamdik {
    left: 50px;
}
.brand-slider .dandik,
.brand-slider .bamdik {
    top: 35%;
}
.blog-slider .blog-card {
    margin: 0px 15px 25px;
}
.blog-slider .dandik,
.blog-slider .bamdik {
    top: 43%;
}
@media (max-width: 767px) {
    .blog-slider .blog-card {
        margin: 0px 10px 25px;
    }
}
.navbar-content {
    margin-bottom: -15px;
}
.product-card {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding:15px 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--white);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    /* -webkit-box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important; */
    /* box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important; */

}
.header-widget i {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    color: var(--text);
    background: var(--chalk);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.section-heading h2 {
    text-align: right;
}
.section-heading {
    text-align: center;
    margin-bottom: 20px;
}
.offers{
    padding-bottom: 80px
}
.offers img{
    width: 100%;
    border-radius: 8px;
}
.section-products {
    margin-bottom: 80px;
}
.promo-content{
 margin-top: 30px;
}
.promo-content img {
    width: 100%;
    border-radius: 8px;
}
.deals-clock {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}
.deals-clock::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0px;
    width: 100%;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    border-top: 2px dashed var(--primary);
}
.deals-clock::after {
    position: absolute;
    content: "";
    top: 0px;
    left: 50%;
    width: 500px;
    height: 65px;
    z-index: -1;
    background: #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.img-offer{
    margin-bottom: 25px
}
.section {
    margin-bottom: 80px;
}
/***********************/
.about-section{
    position: relative;
    padding:80px;
}
.page-we{
    border: 1px solid #dedede;
    border-radius: 4px;
    box-shadow: 0 0 0 0 rgba(0,0,0,.2),0 0 0 0 rgba(0,0,0,.14),0 0 0 0 rgba(0,0,0,.12)!important;
}
.page-we .image_block_1 img{
    width: 100%;
    padding: 30px;
    height: 400px;
    border-radius: 4px;
}
.mb-80{
    margin-bottom: 80px;
}
.policy-section{
    position: relative;
    padding:80px;
}
.content-page{
    padding-top:30px;
}
.sec-title {
    padding-left: 0;
    padding-right: 20px;
    position: relative;
}
.sec-title h2{
    font-size: 24px;
}
.sec-title:before {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    height: 60px;
    width: 4px;
    background-color: var(--primary);
    content: '';
}
.sec-title .title {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 1.2em;
    color: #c79251;;
    font-weight: 700;
    top: -4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.sec-title:after {
    position: absolute;
    right: 10px;
    top: 0px;
    height: 40px;
    width: 2px;
    background-color: #c79251;;
    content: '';
}
.header-page{
    margin: 30px;
}
.inner-section {
    margin-bottom: 100px;
    margin-top: 80px;
}
.contact-title{
    font-size: 18px;
}
.contact-ul  {
    margin-top: 20px;
}
.contact-ul li i{
    margin-left: 10px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: #c79251;
    width: 35px;
    height: 35px;
    background: #19101d;
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.contact-ul li p{
    margin-right: 46px;
    font-size: 15px;
}
.contact-ul .icon-i a{
    font-size: 16px;
    width: 40px;
    height: 40px;
    margin-left: 20px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    color: #c79251;
    background: #19101d;
    text-shadow: var(--primary-tshadow);
    -webkit-box-shadow: var(--primary-bshadow);
    box-shadow: var(--primary-bshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.contact-ul .icon-i a:hover,.contact-ul li:hover i {
    color: #19101d;
    background: #c79251;
}
.footer-contact{
    color: #fff;
}
.suggest-part{
    margin-top: 80px;
}
.suggest-slider{
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
}
.suggest-card {
    position: relative;
}
.img-sliderCat{
    background-color: #fff;
    padding: 5px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    box-shadow: 0 0 7px rgb(0 0 0 / 10%);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}
.suggest-card img {
    width:100%;
    border-radius: 8px;
    height: 100px;
}
.title-sliderCat{
    background-color: #19101d;
    text-align: center;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 3px;
}
.title-sliderCat h5{
    color: var(--white);
    font-weight: 400;
    text-transform: capitalize;
}
.title-sliderCat.active{
    background-color: #c79251;
}
.suggest-card:hover .title-sliderCat{
    background-color: #c79251;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.suggest-card:hover img{
    background: rgba(0, 0, 0, 0.4);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    z-index: 999;
    opacity: 0.7;
}
.filter-select {
    height: 40px;
    background-color: transparent;
    width: 100%;
    border: 2px solid #c79251;
    border-radius: 8px;
}
.filter-select:focus-within {
    border-color: #040404;
}
.top-filter {
    margin-bottom: 50px;
}
.page-item .active {
    color: var(--white);
    background: #c79251;
}
.page-link {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 8px;
    font-weight: 400;
    border: none;
    padding: 0;
    color: var(--text);
    background: var(--white);
}
.details-name {
    font-size: 21px;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.product-add {
    width: 47%;
    display: inline-block;
}
.messenger-add{
    width: 47%;
    display: inline-block;
    font-size: 15px;
    height: 46px;
    padding: 10px 0;
    margin-right: 20px;
}
.messenger-add.btn-outline {
    color: #c79251;
    background: var(--white);
}
.messenger-add.btn {
    border: 2px solid #c79251;
}
.messenger-add.btn-outline:hover {
    color: var(--white);
    background: #c79251;
}
.details-add-group{
    position: relative;
}
.product-information{
    padding: 0 35px;
}
.details-add-group::before{
    position: absolute;
    content: "";
    height: 2px;
    width: 87%;
    right: 34px;
    background-color: rgb(0 0 0 / 23%);
    top: 70px;
    box-shadow: rgb(201 200 200) 0px 4px 2px -2px;
}
.product-information .title-inf{
    margin-top: 45px;
}
.product-information .title-inf i{
    color: #c79251;
    font-size: 24px;
    margin-left: 4px;
}
.product-information .title-inf span{
    font-weight: 600;
    color: #19101d;
    font-size: 24px;
}
.ul-inf{
    position: relative;
    padding: 20px 40px;
}
.ul-inf li:before{
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    right: 20px;
    margin-top: 8px;
    border-radius: 50%;
    background-color:#c79251;
}
.ul-inf li span{
    color: #19101d;
    font-weight: 700;
}

.product-description i{
    color: #c79251;
    font-size: 24px;
}
.product-description .title-inf span{
    font-weight: 600;
    color: #19101d;
    font-size: 24px;
    margin-right: 10px;
}
.product-description .ul-inf{
    position: relative;
    padding: 20px 40px;
}
.product-description .ul-inf li:before{
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
    right: 20px;
    margin-top: 8px;
    border-radius: 50%;
    background-color:#19101d;
}
.product-description .ul-inf li span{
    color: #555554;
    font-weight: 400;
}
.bg-light {
    background-color: #f5f5f5!important;
}
.shipping-car{
    background: #d7e5ff;
    border-radius: 8px;
    display: flex;
    position: relative;
    padding: 6px  10px;
}
.text-b.shipping .header-shipping{
    background: #d7e5ff;
    border-radius: 8px;
    padding: 2px  10px;
}
.shipping-car i {
    color: #19101d;
    font-size: 22px;
    margin-left: 5px;
}
.shipping-car .sh-title{
    font-size: 14px;
}
.sh-title .b-sh {
    cursor: pointer;
}

.shipping-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100vh;
    z-index: 999;
    background: var(--white);
    -webkit-box-shadow: -15px 0 25px 0 rgb(0 0 0 / 15%);
    box-shadow: -15px 0 25px 0 rgb(0 0 0 / 15%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.shipping-sidebar.active {
    right: 0;
    color: #19101d;
}
.shipping-header {
    padding: 5px 25px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.shipping-places {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.shipping-places span {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    margin-top: 7px;
}
.shipping-close i {
    position: absolute;
    left: 21px;
    font-size: 22px;
    color: var(--text);
    top: 23px;
}
.check-places{
    padding: 18px 25px;
}
.form-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    padding: 8px 0;
    cursor: pointer;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
    left: 0;
    width: 19px;
    height: 19px;
}
.title-main{
    font-size: 16px;
    color: #c79251;
}
.profile-card ul .edit:hover {
    color: var(--white);
    background: #19101d;
}
.account-title button, .account-title a {
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: 0.3px;
    padding: 5px 15px;
    white-space: nowrap;
    text-transform: capitalize;
    color: #ffffff;
    background: #c79256;
    text-shadow: var(--primary-tshadow);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.profile-card ul .edit {
    color: #c69155;
}

.profile-card {
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    background: var(--chalk);
    border: 1px solid var(--border);
    position: relative;
    cursor: pointer;
    box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important;

}
.account-card {
    margin-bottom: 30px;
    border-radius: 8px;
    padding: 0 30px 30px;
    background: var(--white);
    box-shadow: -2px 5px 20px rgb(214 214 214 / 75%) !important;

}
/***********************************/
.payment_method{
    position: relative;
    margin-bottom: 10px;
}
.payment-parent{
    margin-bottom: 30px;
}
.payment-child {
    border-radius: 8px;
    margin-bottom: 30px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 14px;
}
.payment-child .payment_method input[type=radio] {
    width: 15px;
    height: 15px;
}
.payment_method h4{
    font-size: 20px;
}
.payment_method img{
    height: 30px;
}

.payment-child:hover .payment_method button {
    color: var(--primary);
}
.payment-child:last-child {
    margin-bottom: 0px;
}
.title-collapse{
    color: var(--primary);
    font-size: 20px;
}
.title-collapse:hover{
    color: var(--primary);
}
.Cardpayment{
    float: right;
}
.discount-payment{
    float: left;
}
.discount-payment span{
    background: #d7e5ff;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    left: 33px;
}
.discount-payment i {
    position: absolute;
    bottom: 13px;
    left: 9px;
}
.link-a{
    color: var(--primary);
}
.link-a:hover{
    color: #c79251;
}
/********************/
.filter_price{
   width: 250px;
    float: left;
}
.filter_price .ui-widget.ui-widget-content {
    border: 0;
    border-radius: 0;
    background-color: #ddd;
    height: 4px;
    margin-bottom: 20px;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.filter_price .ui-slider .ui-slider-range {
    background-color: #c79251;;
    border-radius: 0;
}
.filter_price .ui-slider .ui-slider-handle {
    cursor: pointer;
    background-color: #fff;
    border-radius: 100%;
    border: 0;
    height: 18px;
    top: -8px;
    width: 18px;
    margin: 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.price_range {
    color: #292b2c;
    float: right;
}
#flt_price {
    margin-left: 5px;
    font-weight: 600;
}


.fa-heart:before{
    content: url("../../front/images/fav.png");
}
.favorite .fa-heart:before{
    content: url("../../front/images/fav2.png");
}

/* midia query  mobile */
@media screen and (max-width: 767px) {
    .product-name,.product-add-cart {
        font-size: medium!important;
    }
}
