@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
    --mainColor: #4e1e70;
    --goldMainColor: #c6a87d;
}

html, body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
}

body {
    background: #ffffff none repeat scroll 0 0;
    color: #687188;
    font-size: 16px;
    font-family: "Cairo", sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #292b2c;
}

p {
    color: #687188;
    line-height: 28px;
    margin-bottom: 25px;
}

a {
    color: #292b2c;
    text-decoration: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

img {
    max-width: 100%;
}

button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all .3s ease-in-out;
}

ul, li, ol {
    margin: 0;
    padding: 0;
}

fieldset {
    border: 0 none;
    margin: 0 auto;
    padding: 0;
}

label {
    color: #6c757d;
}

input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}

iframe {
    border: 0;
    display: block;
}

video {
    width: 100%;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section.small_pt,
.footer_top.small_pt {
    padding-top: 50px;
}


.section.small_pb,
.footer_top.small_pb {
    padding-bottom: 50px;
}

.section.pb_20, .pb_20,
.footer_top.pb_20 {
    padding-bottom: 20px;
}

.section.pb_70, .pb_70,
.footer_top.pb_70 {
    padding-bottom: 70px;
}

.section.pb_85, .pb_85,
.footer_top.pb_85 {
    padding-bottom: 85px;
}

div.banner_large_pad {
    padding: 200px 0;
}

.small_padding {
    padding: 30px;
}

.medium_padding {
    padding: 50px;
}

.large_padding {
    padding: 100px;
}

.small_divider {
    height: 30px;
}

.medium_divider {
    height: 50px;
}

.large_divider {
    height: 100px;
}

.padding_eight_all {
    padding: 8%;
}

.padding_eight_lr {
    padding: 0 8%;
}

.padding_eight_tb {
    padding: 8% 0;
}

.list_none li {
    list-style: none;
}

.order_list,
.disc_list {
    padding-left: 15px;
}

.btn:focus, .btn:hover, .btn.active {
    box-shadow: none;
    outline: medium none;
}

button:focus {
    outline: none;
}

.border-2 {
    border-width: 2px !important;
}

.btn {
    border-width: 1px;
    cursor: pointer;
    line-height: normal;
    padding: 12px 35px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.btn.active:focus, .btn:active:focus {
    box-shadow: none !important;
}

.btn-fill-out {
    background-color: transparent;
    border: 1px solid var(--mainColor);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    z-index: 1;
}

.btn-fill-out::before,
.btn-fill-out::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    width: 51%;
}

.btn-fill-out::after {
    right: 0;
    left: auto;
}

.btn-fill-out:hover:before,
.btn-fill-out:hover:after {
    width: 0;
}

.btn-red::before, .btn-red::after {
    background-color: #e74c3c;
}

.btn-fill-out:hover {
    color: var(--mainColor) !important;
}

.btn-fill-line {
    background-color: transparent;
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    color: #fff !important;
    transition: all 0.8s ease 0s;
    z-index: 1;
}

.btn-fill-line:before, .btn-fill-line:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #333;
    z-index: -1;
    transition: all 0.3s ease-in-out;
    width: 50%;
}

.btn-fill-line::after {
    right: 0;
    left: auto;
}

.btn-fill-line:hover:before,
.btn-fill-line:hover:after {
    width: 0;
}

.btn-fill-line:hover {
    color: #333 !important;
}

.btn-border-fill {
    border: 1px solid var(--mainColor);
    color: var(--mainColor);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-border-fill::before,
.btn-border-fill::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    width: 0;
}

.btn-border-fill::after {
    right: 0;
    left: auto;
}

.btn-border-fill:hover:before,
.btn-border-fill:hover:after {
    width: 50%;
}

.btn-border-fill:hover {
    color: #fff !important;
}

.btn-white {
    background-color: transparent;
    border: 1px solid #fff;
    color: #292b2c !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-white::before,
.btn-white::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: -1;
    transition: all 0.5s ease-in-out;
    width: 50%;
}

.btn-white::after {
    right: 0;
    left: auto;
}

.btn-white:hover:before,
.btn-white:hover:after {
    width: 0;
}

.btn-white:hover {
    color: #fff !important;
}

.btn-fill-out-dark {
    background-color: transparent;
    border: 1px solid #333;
    color: #fff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-fill-out-dark:hover {
    color: #333 !important;
}

.btn-fill-out-dark::before {
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: -1;
    content: '';
    background-color: #333;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn-line-fill {
    border: 1px solid #333;
    overflow: hidden;
    position: relative;
    color: #333 !important;
    transition: all 0.8s ease 0s;
    z-index: 1;
}

.btn-line-fill:hover {
    color: #fff !important;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 450px;
        height: 450px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 450px;
        height: 450px;
    }
}

.btn-line-fill:before, .btn-line-fill:after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    z-index: -1;
}

.btn-line-fill:before {
    left: -20px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.btn-line-fill:after {
    right: -20px;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.btn-line-fill:hover:before {
    -webkit-animation: criss-cross-left 0.7s both;
    animation: criss-cross-left 0.7s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.btn-line-fill:hover:after {
    -webkit-animation: criss-cross-right 0.7s both;
    animation: criss-cross-right 0.7s both;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

.btn-line-white {
    border: 1px solid #fff;
    color: #fff !important;
}

.btn-line-white:hover {
    color: #333 !important;
}

.btn-line-fill.btn-line-white:before, .btn-line-fill.btn-line-white:after {
    background-color: #fff;
}

.btn-tran-light {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-tran-light:hover {
    background-color: #fff;
}

.btn-radius {
    border-radius: 40px;
}

.btn + .btn {
    margin-left: 10px;
}

.btn i {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}

.btn span {
    vertical-align: middle;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 8px 25px;
}

.btn-group-lg > .btn, .btn-lg {
    padding: 16px 45px;
}

.btn-xs {
    padding: 4px 20px;
    font-size: 12px;
}

.btn-md {
    padding: 12px 35px;
    font-size: 16px;
}

.btn.btn-xs i {
    font-size: 10px;
}

.btn.btn-sm i {
    font-size: 12px;
}

.btn.btn-lg i {
    font-size: 22px;
}

.btn-ripple {
    padding-right: 0 !important;
    border: 0;
}

.btn-link {
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.btn-link:hover {
    text-decoration: none;
}

.btn-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 1px;
    background-color: var(--mainColor);
    z-index: -1;
}

.text_white * {
    color: #fff;
}

.text_dark * {
    color: #333;
}

.text_default {
    color: var(--mainColor) !important;
}

.bg_default {
    background-color: var(--mainColor) !important;
}

.bg_gray {
    background-color: #f7f8fb !important;
}

.bg_light_blue {
    background-color: #EBF5FF !important;
}

.bg_light_blue2 {
    background-color: #F4F9FC !important;
}

.bg_blue {
    background-color: #4382FF !important;
}

.bg_linen {
    background-color: #F9F5F0 !important;
}

.bg_redon {
    background-color: #FFF1F1 !important;
}

.bg_dark {
    background-color: #1D2224 !important;
}

.bg_dark2 {
    background-color: #131d24 !important;
}

.bg_dark3 {
    background-color: #233645 !important;
}

.bg_dark4 {
    background-color: #1B1E20 !important;
}

.bg_apricot {
    background-color: #fde0ca !important;
}

.scrollup {
    background-color: #171717;
    bottom: 20px;
    color: #ffffff;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 40px;
    z-index: 99;
}

.scrollup:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.scrollup:focus {
    color: #fff;
}

.scrollup_style1 {
    background-color: var(--mainColor);
}

.scrollup.scrollup_style1:hover {
    background-color: #333;
}

.background_bg {
    background-position: center center;
    background-size: cover;
}

.bg_size_auto {
    background-size: auto !important;
}

.bg_size_contain {
    background-size: contain !important;
}

.bg_norepeat {
    background-repeat: no-repeat !important;
}

.position_top_center {
    background-position: top center !important;
}

.position_center_bottom {
    background-position: center bottom !important;
}

.position_right_center {
    background-position: right center !important;
}

.position_right_bottom {
    background-position: right bottom !important;
}

.fixed_bg {
    background-attachment: fixed !important;
}

.btn-ripple-white .ripple::before,
.btn-ripple-white .ripple::after,
.btn-ripple-white .ripple {
    background-color: #fff;
}

.btn-ripple-white .ripple {
    color: var(--mainColor);
}

.bg_transparent_20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.box_shadow1 {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.border-top-tran {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.border_bottom_tran {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/*Title Css*/
.heading_s1 {
    margin-bottom: 25px;
    position: relative;
}

.heading_s1 h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--mainColor);
}

.heading_s1 h1, .heading_s1 h2, .heading_s1 h3, .heading_s1 h4, .heading_s1 h5, .heading_s1 h6 {
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    position: relative;
    padding-left: 12px;
}

.leads {
    margin-bottom: 30px;
}

/*Loader Css*/
.preloader {
    background-color: #fff;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 64px;
    text-align: center;
    z-index: 9999;
}

.lds-ellipsis span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--mainColor);
    -webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
    animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
    -webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
    animation: ball-pulse-sync .6s -.14s infinite ease-in-out
}

.lds-ellipsis span:nth-child(2) {
    -webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
    animation: ball-pulse-sync .6s -70ms infinite ease-in-out
}

@-webkit-keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ball-pulse-sync {
    33% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    66% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.custom-container {
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*===================================*
  01.END GENERAL STYLE
*===================================*/

/*===================================*
  02.START HEADER STYLE
*===================================*/
.navbar-brand {
    padding: 10px 0;
    vertical-align: top;
    margin: 0;
}

.navbar-brand .logo_header {
    width: 110px;
}

.dark_skin .logo_light, .dark_skin .logo_default,
.light_skin .logo_default, .light_skin .logo_dark,
.logo_light, .logo_dark {
    display: none;
}

.dark_skin .logo_dark,
.light_skin .logo_light {
    display: block;
}

.light_skin .navbar-nav a,
.light_skin .navbar-toggler,
.light_skin .navbar a.pr_search_trigger {
    color: #ffffff;
}

.middle-header {
    padding: 10px 0;
    position: relative;
}

.navbar {
    padding: 0;
}

.header_wrap {
    transition: all 0.5s ease 0s;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]) {
    background-color: #fff;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header {
    background-color: transparent;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed {
    background-color: #fff;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.light_skin.nav-fixed,
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed .light_skin {
    background-color: #1D2224;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.sticky_dark_skin.nav-fixed,
.light_skin .sidetoggle_icon::after,
.light_skin .sidetoggle_icon::before,
.light_skin .toggle_center_line {
    background-color: #fff;
}

.navbar .navbar-nav li {
    position: relative;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.navbar-nav .dropdown-menu {
    border: 0;
    border-radius: 0;
    margin: 0;
    padding: 0;
    min-width: 14rem;
}

.navbar-nav .dropdown-menu {
    background-color: #252A2C;
}

.light_skin .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
.light_skin .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: #303537;
}

.dark_skin .navbar-nav .dropdown-menu {
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
}

.dark_skin .mega-menu-col,
.dark_skin .cart_list li {
    border-color: #ddd;
}

.dark_skin .navbar .navbar-nav .dropdown-menu li a.active,
.dark_skin .navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
    color: var(--mainColor);
}

.dark_skin .navbar .navbar-nav li > .dropdown-item,
.dark_skin .navbar .navbar-nav .dropdown-header,
.dark_skin .cart_quantity,
.dark_skin .cart_total {
    color: #333333;
}

.dropdown-toggle::after, .dropdown-toggler::after {
    border: 0 none;
    content: "\f3d0";
    font-family: "Ionicons";
    margin-left: 5px;
    vertical-align: middle;
}

.dropdown-toggler::after {
    -moz-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.dropdown-menu .dropdown-toggler::after {
    position: absolute;
    right: 15px;
    top: 10px;
}

.navbar .navbar-nav > li > .nav-link {
    font-weight: 500;
    padding: 22px 10px;
    text-transform: capitalize;
    font-size: 14px;
}

.navbar .navbar-nav > li > a.active,
.navbar .navbar-nav > li:hover > a,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li > a.active,
.light_skin.transparent_header.nav-fixed .navbar .navbar-nav > li:hover > a,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li > a.active,
.transparent_header.nav-fixed .light_skin .navbar .navbar-nav > li:hover > a {
    color: var(--mainColor);
}

.light_skin .navbar .navbar-nav .dropdown-item,
.light_skin .navbar .navbar-nav .dropdown-header {
    color: #fff;
}

.light_skin .item_remove {
    color: #fff !important;
}

.light_skin .mega-menu-col {
    border-right: 1px solid #3f3f3f;
}

.navbar .navbar-nav .dropdown-item {
    padding: 8px 20px 8px 20px;
    color: #333;
    font-size: 14px;
    text-transform: capitalize;
}

.navbar .navbar-nav .dropdown-item.dropdown-toggler {
    padding-right: 30px;
}

.navbar .navbar-nav .dropdown-header {
    color: #333;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.navbar-nav.attr-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-nav.attr-nav li .nav-link {
    padding: 20px 10px;
    position: relative;
    white-space: nowrap;
}

.navbar .attr-nav li.nav-btn {
    margin-left: 10px;
}

.navbar-nav.attr-nav li .nav-link i {
    font-size: 20px;
}

.hover_menu_style2 .navbar .navbar-nav.attr-nav > li > .nav-link {
    margin: 0;
    padding: 20px 10px;
}

.dropdown-item:focus, .dropdown-item:hover,
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--goldMainColor);
}

.navbar .navbar-nav.attr-nav .dropdown-menu li a.active,
.navbar .navbar-nav.attr-nav .dropdown-menu > ul > li:hover > a {
    background-color: rgba(0, 0, 0, 0);
}

.navbar .navbar-nav.attr-nav .dropdown-menu li a.active {
    background: var(--mainColor);
}

.navbar .navbar-nav .dropdown-menu li a.active,
.navbar .navbar-nav .dropdown-menu > ul > .mega-menu-col ul > li:hover > a {
    color: var(--mainColor);
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu {
    background-color: #252A2C;
    border-color: #252A2C;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .mega-menu .dropdown-menu,
.header_wrap:not([class*="bg_"]):not([class*="bg-"]).sticky_light_skin.nav-fixed .navbar-nav .dropdown-menu .dropdown-menu {
    background-color: #303537;
}

.search_overlay {
    content: "";
    background-color: #000;
    height: 100%;
    top: 0;
    position: fixed;
    text-align: center;
    opacity: 0.5;
    right: 0;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    width: 0;
    z-index: 99;
}

.search_overlay.open {
    left: 0;
    right: auto;
    width: 100%;
}

.search-overlay.open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.search_trigger.open i::before {
    content: "\f129";
    font-family: "Ionicons";
}

.search_wrap {
    position: fixed;
    left: 0;
    right: 0;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
    z-index: 9999;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
}

.search_wrap.open {
    opacity: 1;
    visibility: visible;
    -webkit-animation: slideInLeft 1s both;
    animation: slideInLeft 1s both;
}

.search_wrap form {
    position: relative;
    width: 100%;
}

.search_wrap .form-control:focus {
    color: #fff;
}

.search_icon {
    font-size: 24px;
    position: absolute;
    right: 5px;
    top: 5px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    color: #fff;
}

.search_wrap .form-control {
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    padding: 10px 0;
    color: #fff;
}

.search_wrap .form-control::-webkit-input-placeholder {
    color: #ffffff;
}

.search_wrap .form-control::-moz-placeholder {
    color: #ffffff;
}

.search_wrap .form-control:-ms-input-placeholder {
    color: #ffffff;
}

.search_wrap .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.search_wrap .form-control::placeholder {
    color: #ffffff;
}

.close-search {
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 25%;
}

.navbar .attr-nav li .search_trigger i {
    font-size: 20px;
    vertical-align: middle;
    line-height: normal;
}

.navbar .attr-nav li.cart_wrap .nav-link i {
    font-size: 20px;
}

.navbar .attr-nav li.cart_wrap .nav-link {
    padding: 35px 5px;
}

.navbar .attr-nav li .nav-link.sidetoggle i {
    font-size: 28px;
}

.pr_search_icon {
    float: right;
}

.pr_search_trigger.show i::before {
    content: "\ec2a";
}

.pr_search_trigger {
    padding: 17px 10px;
    font-size: 20px;
}

.header_wrap.fixed-top {
    position: relative;
    padding-right: 0 !important;
}

.header_wrap.transparent_header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
}

.header_wrap.nav-fixed {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 1041;
    -webkit-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -moz-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -o-animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    animation: slideInDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    -webkit-animation-fill-mode: none;
    -moz-animation-fill-mode: none;
    -o-animation-fill-mode: none;
    animation-fill-mode: none;
}

.nav-fixed.border_bottom_tran {
    border: 0;
}

.header_wrap.fixed-top.transparent_header.nav-fixed.no-sticky {
    position: absolute;
}

.header_wrap.fixed-top.nav-fixed.no-sticky {
    position: relative;
}

.header_wrap:not([class*="bg_"]):not([class*="bg-"]).transparent_header.nav-fixed.no-sticky {
    background-color: transparent;
    box-shadow: none;
}

.mega-menu {
    display: table;
    padding: 15px 0;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.mega-menu ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.navbar .navbar-nav li.dropdown-mega-menu {
    position: static;
}

.navbar .navbar-nav li.dropdown-mega-menu .dropdown-menu {
    right: 0;
    padding-left: 0;
    padding-right: 0;
}

.mega-menu-col {
    border-right: 1px solid #ddd;
    padding: 0;
}

.mega-menu-col:last-child {
    border-right: 0 !important;
}

.dropdown-menu li a i {
    font-size: 14px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.navbar .navbar-nav > li > .nav-link.cart_trigger i {
    font-size: 20px;
}

.cart_list li {
    list-style: outside none none;
}

.cart_count, .wishlist_count {
    position: relative;
    top: -3px;
    left: 0;
    font-size: 11px;
    background-color: var(--mainColor);
    border-radius: 50px;
    height: 16px;
    line-height: 16px;
    color: #fff;
    min-width: 16px;
    text-align: center;
    padding: 0 5px;
    display: inline-block;
    vertical-align: top;
    margin-left: -5px;
    margin-right: -5px;
}

.cart_trigger .amount {
    margin-left: 8px;
    font-weight: 600;
    vertical-align: top;
    margin-right: -10px;
}

.navbar-nav .dropdown-menu.cart_box {
    width: 320px;
    position: absolute !important;
    -webkit-transform: scale(0) !important;
    transform: scale(0) !important;
    -webkit-transform-origin: -webkit-calc(100% - 30px) 0;
    transform-origin: calc(100% - 30px) 0;
    display: block;
    transition: all 0.25s ease-in-out;
    padding: 0;
    top: 100% !important;
    left: auto !important;
    right: 0;
}

.navbar-nav .dropdown-menu.cart_box.show {
    -webkit-transform: scale(1) !important;
    transform: scale(1) !important;
}

.cart_list li {
    border-bottom: 1px solid #3f3f3f;
    padding: 15px;
    width: 100%;
}

.item_remove {
    float: right;
    margin-left: 5px;
    color: #333 !important;
}

.cart_list img {
    border: 1px solid #ddd;
    background-color: #ffffff;
    float: left;
    margin-right: 10px;
    max-width: 80px;
}

.cart_list a {
    font-size: 14px;
    vertical-align: top;
    padding: 0 !important;
    text-transform: capitalize;
    font-weight: 600;
}

.cart_quantity {
    color: #ffffff;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}

.cart_quantity span {
    display: inline-block;
}

.cart_total .cart_amount {
    float: right;
    color: #9f8968;
}

.cart_box .cart_list {
    width: 100%;
    padding: 0 !important;
    max-height: 242px;
    overflow-y: auto;
}

.cart_list li {
    display: inline-block;
    width: 100%;
}

.dropdown-menu .cart_list li a i {
    width: auto;
}

.cart_total {
    color: #ffffff;
    margin: 0;
    padding: 10px 15px;
    font-weight: 600;
    text-align: right;
}

.cart_total strong {
    float: left;
    font-weight: 600;
}

.cart_buttons {
    margin: 0;
    padding: 10px 15px 20px;
    text-align: center;
}

.cart_buttons .view-cart,
.cart_buttons .checkout {
    padding: 8px 20px !important;
    border-radius: 4px !important;
}

.top-header {
    border-bottom: 1px solid #eee;
}

.top-header.light_skin {
    border-color: rgba(255, 255, 255, 0.2);
}

.top-header {
    padding: 10px 0;
    transition: all 0.5s ease-in-out;
}

.top-header[class*="bg_"], .top-header[class*="bg-"] {
    border: 0;
}

.top-header span {
    font-size: 14px;
    vertical-align: middle;
}

.header_wrap .social_icons li {
    padding-bottom: 0;
}

.social_icons, .contact_detail {
    font-size: 0;
}

.contact_detail > li:last-child,
.header_list > li:last-child {
    padding-right: 0;
}

.social_icons li {
    display: inline-block;
    padding: 0 0 5px 5px;
}

.social_icons li a {
    font-size: 18px;
    color: #fff;
    background-color: var(--goldMainColor);
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
}

.social_icons li a:hover,
.header_wrap .social_icons li a:hover {
    color: var(--mainColor);
}

.social_icons.social_small li a {
    height: 25px;
    width: 25px;
    line-height: 26px;
    font-size: 16px;
}

.social_white .social_icons li a, .social_white.social_icons li a,
.header_wrap .social_white .social_icons li a, .header_wrap .social_white.social_icons li a {
    color: #fff;
    border-color: #fff;
}

.social_white .social_icons li a:hover, .social_white.social_icons li a:hover {
    color: var(--mainColor);
}

.border_social .social_icons li a:hover, .border_social.social_icons li a:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    color: #fff;
}

.border_social.social_white .social_icons li a:hover, .social_white.border_social.social_icons li a:hover {
    color: #fff;
}

.border_social li a {
    border: 1px solid #687188;
    line-height: 35px;
}

.social_icons li:last-child a {
    margin-right: 0px;
}

.radius_social li a {
    border-radius: 5px;
}

.rounded_social li a {
    border-radius: 50px;
}

.social_icons.social_style1 li a {
    background-color: #fff;
    color: var(--mainColor);
}

.social_icons.social_style1 li a:hover {
    background-color: var(--mainColor);
    color: #fff !important;
}

.social_style2 li a {
    background-color: #FFF;
    box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.3);
}

.social_style3 li a {
    background-color: #F6F8F9;
    color: #B2B2B7;
    font-size: 20px;
    height: 50px;
    width: 50px;
    line-height: 50px;
}

.social_style4 li a {
    background-color: #fff;
    color: var(--mainColor);
}

.social_style4 li a:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.social_style4 li a:hover {
    background-color: var(--mainColor);
    color: #fff !important;
}

.vertical_social li {
    display: block;
}

.header_wrap .social_icons li a {
    color: #333;
}

.contact_detail i {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 16px;
}

.contact_detail span {
    vertical-align: middle;
}

.contact_detail > li,
.header_list > li {
    color: #333;
    font-size: 14px;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 15px 2px 0;
}

.header_list > li i {
    margin-right: 6px;
    vertical-align: middle;
}

.icon_list > li {
    color: #333;
    vertical-align: middle;
    display: inline-block;
    padding: 2px 10px 2px 0;
}

.icon_list > li > i {
    font-size: 16px;
}

.icon_list > li a {
    color: #bfbfbf;
}

.header_list > li .dropdown-item:hover,
.custome_dropdown .ddChild li:hover,
.contact_detail > li a:hover {
    color: #9f8968;
}

.header_dropdown .dropdown-menu {
    border-radius: 0;
    padding: 0;
    margin-top: 0px;
    border: 0;
    transform: none !important;
    top: 100% !important;
    will-change: auto !important;
}

.header_dropdown .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="top"] {
    right: 0;
    left: auto !important;
}

.header_dropdown .dropdown-item {
    padding: 5px 10px;
    border-bottom: 1px solid #e6e6e6;
    text-transform: capitalize;
}

.contact_detail li:first-child {
    margin-left: 0px;
}

.contact_detail li a span {
    vertical-align: middle;
}

.top-header.light_skin .contact_detail li,
.top-header.light_skin .contact_detail li a,
.top-header.light_skin .widget_text span {
    color: #fff;
}

.top-header.dark_skin .contact_detail li {
    color: #000;
}

.nav-fixed .top-header,
.nav-fixed .middle-header {
    display: none !important;
}

.navbar-toggler {
    float: right;
    margin: 13px 0 0 3px;
    font-size: 28px;
    color: #333;
    transition: all 0.5s ease 0s;
    border-radius: 0;
    height: 35px;
    width: 35px;
    padding: 0;
    line-height: 36px;
    transition: none;
}

.navbar-toggler[aria-expanded="true"] span::before {
    content: "\f129";
    font-size: 16px;
}

.navbar-toggler[aria-expanded="true"] {
    line-height: 32px;
    font-size: 20px;
}

header .attr-nav + .social_icons {
    border-left: 1px solid #333;
    margin-left: 5px;
    padding-left: 5px;
}

header .attr-nav + .social_icons li {
    padding: 0;
}

header.light_skin .attr-nav + .social_icons {
    border-color: #fff;
}

header.light_skin.nav-fixed .attr-nav + .social_icons {
    border-color: #333;
}

header.light_skin.nav-fixed .social_icons li a {
    color: #000;
}

header.light_skin.nav-fixed .social_icons li a:hover {
    color: #0E93D8;
}

.search_box {
    position: relative;
}

.search_box input {
    padding-right: 30px;
}

.search_box button {
    border: 0;
    padding: 0 10px;
    background-color: transparent;
    font-size: 22px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.top-header.light_skin .header_list li a,
.top-header.light_skin .ddArrow::before,
.top-header.light_skin .ddcommon .ddTitle .ddlabel,
.light_skin.top-header span,
.light_skin .icon_list > li a {
    color: #fff;
}

.top-header.light_skin .header_list > li::before {
    background-color: #fff;
}

.top-header .custome_dropdown .ddChild {
    background-color: #fff;
    border: 0 !important;
    min-width: 10rem;
    left: -10px;
}

.top-header.light_skin .header_list li a:hover,
.top-header.light_skin .contact_detail li a:hover,
.top-header.light_skin .header_list li a:hover span {
    color: var(--mainColor);
}

.main_menu_uppercase .navbar-nav > li > .nav-link {
    text-transform: uppercase;
}

.main_menu_weight_100 .navbar .navbar-nav > li > .nav-link {
    font-weight: 100;
}

.main_menu_weight_200 .navbar .navbar-nav > li > .nav-link {
    font-weight: 200;
}

.main_menu_weight_300 .navbar .navbar-nav > li > .nav-link {
    font-weight: 300;
}

.main_menu_weight_400 .navbar .navbar-nav > li > .nav-link {
    font-weight: 400;
}

.main_menu_weight_500 .navbar .navbar-nav > li > .nav-link {
    font-weight: 500;
}

.main_menu_weight_600 .navbar .navbar-nav > li > .nav-link {
    font-weight: 600;
}

.main_menu_weight_700 .navbar .navbar-nav > li > .nav-link {
    font-weight: 700;
}

.main_menu_weight_800 .navbar .navbar-nav > li > .nav-link {
    font-weight: 800;
}

.main_menu_weight_900 .navbar .navbar-nav > li > .nav-link {
    font-weight: 900;
}

.main_menu_size_16 .navbar .navbar-nav > li > .nav-link,
.dd_menu_size_16 .navbar .navbar-nav .dropdown-item,
.dd_menu_size_16 .cart_list a {
    font-size: 16px;
}

.header_banner_wrap {
    padding: 15px;
    height: 100%;
}

.header-banner2 {
    margin: 0 15px;
}

.header-banner,
.header-banner2 {
    display: block;
    position: relative;
    margin-bottom: 15px;
}

.header-banner a:hover {
    opacity: .5;
}

.header-banner img {
    width: 100%;
    height: 200px;
}

.banne_info {
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 15px;
}

.banne_info a {
    text-transform: capitalize;
    position: relative;
    padding-bottom: 3px;
    color: #292b2c !important;
}

.banne_info a:hover {
    color: var(--mainColor) !important;
}

.banne_info a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 50%;
    background-color: #292B2C;
    transition: all 0.5s ease-in-out;
}

.banne_info a:hover::before {
    width: 100%;
}

.header_banner {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    padding: 15px;
}

.header_banner_wrap .header_banner {
    -ms-flex-align: center;
    align-items: center;
}

.header_banner_content {
    position: relative;
}

.header_banner_text {
    color: #fff;
}

.header_banner_title {
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.banner_img {
    position: relative;
}

.shop_bn_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}

.shop_bn_content2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.shop_bn_content * {
    color: #fff;
}

.shop_title {
    font-weight: bold;
    margin-bottom: 10px;
}

.shop_banner {
    position: relative;
    display: table;
    margin: 0 auto;
}

.shop_banner2 {
    margin-bottom: 30px;
    height: 235px;
    overflow: hidden;
}

.shop_banner2 a {
    position: relative;
    z-index: 9;
    padding: 15px;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.el_title {
    width: 100%;
}

.shop_banner2:last-child {
    margin-bottom: 0;
}

.sidebar_menu {
    padding: 50px 30px 30px;
    position: fixed;
    top: 0;
    z-index: 99;
    background-color: #fff;
    box-shadow: -3px 0 3px rgba(0, 0, 0, .04);
    bottom: 0;
    width: 400px;
    overflow-y: auto;
    right: -400px;
    visibility: hidden;
    height: 100vh;
    transition: all 0.5s ease;
    z-index: 99999;
}

.sidebar_menu.active {
    right: 0;
    visibility: visible;
}

.side_panel_close {
    position: absolute;
    right: 30px;
    top: 30px;
}

.side_panel_close i {
    font-size: 24px;
}

.sidebar_menu .widget {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}

.sidebar_left .sidebar_menu,
.sidebar_left_push .sidebar_menu {
    right: auto;
    left: -400px;
}

.sidebar_left .sidebar_menu.active,
.sidebar_left_push .sidebar_menu.active {
    left: 0;
}

.sidebar_left_push.sidetoggle_active {
    overflow-y: hidden;
    left: 400px;
}

.sidebar_left_push {
    overflow-x: hidden;
    position: relative;
    transition: all 0.5s ease;
    left: 0;
}

.sidebar_left_push.sidetoggle_active .header_wrap.nav-fixed {
    left: 400px;
    right: -400px;
}

.sidebar_right_push.sidetoggle_active {
    overflow-y: hidden;
    right: 400px;
}

.sidebar_right_push {
    overflow-x: hidden;
    position: relative;
    transition: all 0.5s ease;
    right: 0;
}

.sidebar_right_push.sidetoggle_active .header_wrap.nav-fixed {
    left: -400px;
    right: 400px;
}

.sidebar_dark {
    background-color: #222;
}

.sidebar_dark .sidemenu_close,
.sidebar_dark p {
    color: #fff;
}

body.active {
    overflow: hidden;
    padding-right: 17px;
}

.widget_text p:last-child {
    margin-bottom: 0;
}

.widget_contact_info .contact_wrap li:last-child {
    margin-bottom: 0;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a {
    position: relative;
    padding: 30px 0px;
    margin: 0 10px;
}

.hover_menu_style1.nav-fixed .navbar .navbar-collapse .navbar-nav > li > .nav-link {
    padding: 20px 0px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li > a::before {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 0px;
    height: 2px;
    width: 0;
    z-index: 0;
    content: '';
    background-color: var(--mainColor);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
}

.hover_menu_style1.nav-fixed .navbar-collapse .navbar-nav > li > a::before {
    bottom: 10px;
}

.hover_menu_style1 .navbar-collapse .navbar-nav > li:hover > a::before,
.hover_menu_style1 .navbar-collapse .navbar-nav > li > a.active::before {
    left: 0;
    right: auto;
    width: 100%;
}

input.text {
    display: none;
}

.lng_dropdown .ddcommon .ddChild li {
    padding-left: 33px;
}

.nav_block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.categories_wrap {
    position: relative;

}

.categories_btn i {
    font-size: 24px;
    vertical-align: middle;
    margin-right: 10px;
}

.categories_menu i {
    margin-right: 0;
    float: right;
}

.categories_btn.categories_menu {
    padding: 12px 15px;
    border-radius: 4px;
    width: auto;

}

.categories_btn span {
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 500;
}

.categories_btn {
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    padding: 20px 15px;
    color: #fff;
    text-align: left;
    width: 100%;
}

#navCatContent li {
    list-style: none;
}

#navCatContent {
    background-color: #fff;
    position: absolute;
    padding: 5px 0px 0;
    top: 100%;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.nav_cat {
    display: block;
    height: auto !important;
}

.nav_cat.collapse:not(.show) {
    display: block;
}

#navCatContent ul {
    width: 100%;
}

#navCatContent li a {
    text-transform: capitalize;
    font-size: 14px;
}

#navCatContent li a i {
    font-size: 22px;
    vertical-align: middle;
    margin-right: 10px;
    line-height: 30px;
}

#navCatContent li a span {
    vertical-align: middle;
}

#navCatContent li a:hover {
    color: var(--mainColor);
}

#navCatContent li a.dropdown-toggler::after {
    position: absolute;
    right: 15px;
    top: 15px;
}

#navCatContent ul li .dropdown-menu {
    left: 100%;
    top: 0;
    margin: 0;
    border: 0;
    width: 100%;
    right: 0;
    box-shadow: 10px 16px 49px 0px rgba(38, 42, 46, 0.05);
    border-radius: 0;
    padding: 0;
}

#navCatContent ul li .dropdown-menu .dropdown-header {
    color: #333;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

#navCatContent .mega-menu-col {
    border: 0;
}

.more_categories {
    padding: 12px 15px;
    display: block;
    font-size: 16px;
    color: var(--mainColor);
    border-top: 1px solid #ddd;
    margin-top: 5px;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.more_categories::before {
    content: "\ec36";
    position: absolute;
    right: 15px;
    top: 50%;
    font-family: Linearicons;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.more_categories.show::before {
    content: "\ec37";
}

.product_search_form {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.product_search_form input {
    height: 50px;
    padding-right: 60px !important;
}

.search_form_btn .form-control {
    padding-right: 120px !important;
}

.search_btn {
    position: absolute;
    right: 1px;
    background-color: #fff;
    border: 0;
    padding: 0px 15px;
    font-size: 20px;
    top: 1px;
    bottom: 1px;
    z-index: 9;
}

.search_btn2 {
    position: absolute;
    right: 5px;
    background-color: var(--mainColor);
    border: 0;
    border-radius: 100%;
    font-size: 14px;
    top: 5px;
    color: #fff;
    z-index: 9;
    width: 40px;
    height: 40px;
    z-index: 9;
}

.search_btn3 {
    background-color: var(--mainColor);
    color: #fff;
    border: 0;
    padding: 10px 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 9;
}

.search_btn3:hover {
    background-color: #333;
}

.search_btn:hover {
    color: var(--mainColor);
}

.search_btn i {
    vertical-align: middle;
}

.header_offer {
    margin-right: 12px;
    padding-right: 12px;
    border-right: 1px solid #ddd;
}

.contact_phone span, .contact_phone i {
    vertical-align: middle;
}

.contact_phone i {
    font-size: 30px;
    margin-right: 10px;
    color: var(--mainColor);
}

.contact_phone span {
    color: #16181b;
}

.banner_content_inner {
    padding: 50px;
}

.header_topbar_info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
}

.download_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

/*===================================*
  02.END HEADER STYLE
*===================================*/

/*===================================*
  03.START BANNER,SLIDER STYLE
*===================================*/
.banner_section {
    position: relative;
}

.banner_content_wrap {
    position: relative;
    z-index: 1;
}

.banner_half_content {
    padding: 100px 0 80px;
    z-index: 0;
}

.banner_section .banner_slide_content {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.carousel-item img {
    position: relative;
    z-index: -1;
    width: 100%;
}

.carousel-control-next, .carousel-control-prev {
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    height: 50px;
    opacity: 0;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    transition: all 0.3s ease-in-out;
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    opacity: 0;
}

.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
    opacity: 1;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev {
    left: 20px;
}

.disabled_link {
    cursor: default;
}

.carousel_style1 .carousel-control-next, .carousel_style1 .carousel-control-prev {
    border-radius: 100%;
}

.carousel_style2 .carousel-control-next, .carousel_style2 .carousel-control-prev {
    font-size: 16px;
    border-radius: 4px;
    height: 40px;
    width: 40px;
}

.light_arrow .carousel-control-next, .light_arrow .carousel-control-prev {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #000;
}

.carousel-control-next:hover, .carousel-control-prev:hover,
.light_arrow .carousel-control-next:hover, .light_arrow .carousel-control-prev:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.banner_content .carousel-item {
    padding: 100px 0;
}

.banner_content h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content p,
.banner_content2 p {
    margin-bottom: 30px;
}

.banner_content2 h2 {
    font-size: 70px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_content3 h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_shape {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    z-index: -1;
}

.banner_shape img {
    width: 100%;
}

.banner_content1 h2 {
    font-size: 78px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.banner_center_content {
    margin-top: -70px;
}

.carousel-indicators.vertical_center_right {
    display: block;
    right: 40px;
    top: 50%;
    margin: 0;
    left: auto;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    bottom: auto;
}

.indicators_style2.vertical_center_right li {
    margin: 15px 0;
}

.banner_content_border {
    border: 10px solid var(--mainColor);
    padding: 50px;
    position: relative;
}

.slide_banner_img {
    height: 100%;
    position: relative;
    z-index: -1;
}

.zoom-in {
    -webkit-animation: zoomin 5s;
    -moz-animation: zoomin 5s;
    -o-animation: zoomin 5s;
    animation: zoomin 5s;
}

@keyframes zoomin {
    0% {
        -moz-transform: scale(1.2) rotate(3deg);
        -webkit-transform: scale(1.2) rotate(3deg);
        transform: scale(1.2) rotate(3deg);
    }
    100% {
        -moz-transform: scale(1) rotate(0deg);
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
}

.header_with_topbar.transparent_header + .banner_section .banner_slide_content {
    margin-top: 45px;
}

/*===================================*
  03.END BANNER,SLIDER STYLE
*===================================*/

/*===================================*
  04.START SHOP BANNER STYLE
*===================================*/
.sale_banner {
    padding: 0 10px;
    position: relative;
    margin-bottom: 30px;
}

.sale_banner img {
    width: 100%;
}

.hover_effect1 {
    overflow: hidden;
    position: relative;
    display: block;
}

.hover_effect1::before, .hover_effect1::after {
    background-color: rgba(255, 255, 255, 0.6);
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    transition: all 0.9s ease 0s;
    width: 100%;
    z-index: 1;
}

.hover_effect1::before {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(105%, 0%);
    -webkit-transform: translate(105%, 0%);
    transform: translate(105%, 0%);
}

.hover_effect1::after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    -moz-transform: translate(-105%, 0%);
    -webkit-transform: translate(-105%, 0%);
    transform: translate(-105%, 0%);
}

.hover_effect1:hover:before, .hover_effect1:hover:after {
    opacity: 0;
    -moz-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.fb_info {
    position: absolute;
    top: 15px;
    padding: 15px;
    left: 15px;
    z-index: 9;
}

.fb_info2 {
    position: absolute;
    top: 50%;
    padding: 15px;
    left: 35px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9;
    width: 40%;
}

.furniture_banner .single_bn_title1 {
    font-size: 80px;
    margin-bottom: 15px;
}

.sale-banner img {
    width: 100%;
}

/*===================================*
  04.END SHOP BANNER STYLE
*===================================*/

/*===================================*
  05.START CATEGORIES STYLE
*===================================*/
.categories_box {
    text-align: center;
}

.categories_box a {
    display: block;
    padding: 35px 20px;
    background-color: #f7f7f7;
}

.categories_box i {
    font-size: 40px;
    display: block;
}

.categories_box span {
    text-transform: capitalize;
    margin-top: 5px;
    display: block;
}

.cat_overlap {
    position: relative;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 30px;
    z-index: 1;
    margin-top: -70px;
}

.cat_style1 .categories_box a {
    background-color: transparent;
    padding: 0px;
}

.cat_style1 .categories_box span {
    margin-top: 10px;
}

/*===================================*
  05.END CATEGORIES STYLE
*===================================*/

/*===================================*
  06.START ICON BOX STYLE
*===================================*/
.icon_box {
    margin-bottom: 30px;
}

/*.icon {*/
/*    margin-bottom: 15px;*/
/*}*/

.icon_box_content h5 {
    text-transform: capitalize;
}

.icon i {
    font-size: 30px;
}

.icon_box p:last-child {
    margin: 0;
}

.box_img {
    margin-bottom: 15px;
}

.icon_box_style1 {
    text-align: center;
    padding: 0 40px;
    position: relative;
}

.icon_box_style1 .icon img {
    width: 50px;
}

.icon_box_style1::before {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: #ddd;
}

[class*="col-"]:last-child .icon_box_style1::before {
    content: normal;
}

.icon_box_style2 .icon {
    background-color: #fff;
    max-width: 78px;
    text-align: center;
    float: left;
    height: 78px;
    border-radius: 100%;
    line-height: 78px;
    position: relative;
    margin: 0px 20px 0px 0px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
    -ms-flex: 0 0 78px;
    flex: 0 0 78px;
}

.icon_box_style2:hover .icon {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: swing;
    animation-name: swing;
}

.shopping_info {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.shopping_info .icon_box {
    margin-top: 0;
    padding-top: 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.shopping_info .icon img {
    width: 70px;
}

/*===================================*
  06.END ICON BOX STYLE
*===================================*/

/*===================================*
  11.START FOOTER STYLE
*===================================*/
footer {
    overflow: hidden;
}

.footer_dark {
    background-color: #202325;
    position: relative;
}

.footer_top {
    padding: 100px 0 70px;
}

.footer_logo {
    margin-bottom: 20px;
}

.footer_logo a img {
    width: 110px;
}

.info_footer {
    margin-bottom: 10px;
}

footer p {
    font-size: 14px;
}

footer .widget {
    margin-bottom: 30px;
}

footer .widget_title {
    text-transform: capitalize;
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 18px;
}

.widget_links li {
    list-style: none;
    padding-bottom: 10px;
}

.widget_links li:last-child {
    padding-bottom: 0;
}

.widget_links li a {
    font-size: 14px;
    color: #687188;
}

.contact_info > li {
    margin-bottom: 15px;
    list-style: none;
}

.contact_info > li:last-child {
    margin-bottom: 0px;
}

.contact_info li i {
    display: inline-block;
    margin-right: 10px;
    margin-top: 4px;
    font-size: 18px;
    vertical-align: top;
}

.contact_info li span {
    float: left;
    margin-right: 10px;
    max-width: 70px;
    width: 100%;
    color: #292b2c;
}

.contact_info span + * {
    overflow: hidden;
    color: #687188;
    margin: 0;
    font-size: 14px;
    line-height: 26px;
}

.contact_info i + * {
    overflow: hidden;
    font-size: 14px;
    color: #687188;
    line-height: 26px;
    margin: 0;
    vertical-align: middle;
    max-width: 78%;
    display: inline-block;
}

.contact_info_light li i {
    border-color: #fff;
    color: #fff;
}

.contact_info_light li span,
.contact_info_light li a {
    color: #fff;
}

.contact_info_style2 i + * {
    font-size: 18px;
}

.contact_info_style2 li i {
    margin-right: 8px;
    margin-top: 2px;
    font-size: 22px;
    color: var(--mainColor);
}

.bottom_footer {
    padding: 30px 0;
    position: relative;
}

.footer_link li {
    display: inline-block;
    position: relative;
}

.footer_link li a {
    font-size: 14px;
    padding: 0 5px;
    color: #687188;
}

.footer_dark h1, .footer_dark h2, .footer_dark h3, .footer_dark h4, .footer_dark h5, .footer_dark h6, .footer_dark p, .footer_dark a, .footer_dark .widget_links li a, .footer_dark .footer_link li a, .footer_dark .post_content a {
    color: #fff;
}

.footer_dark a:hover, .footer_dark .widget_links li a:hover, .widget_links li a:hover, .footer_dark .footer_link li a:hover, .footer_link li a:hover {
    color: var(--goldMainColor);
}

.widget_contact_form {
    background-color: #fff;
    padding: 20px 30px 30px;
    margin-top: -190px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.bottom_footer .social_icons li {
    padding-bottom: 0;
}

.footer_payment li,
.app_list li {
    display: inline-block;
    list-style: none;
}

.footer_call {
    border-radius: 40px;
    padding: 15px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer_call * {
    margin: 0;
    font-size: 22px;
}

.footer_call i {
    margin-right: 10px;
}

/*===================================*
  11.END FOOTER STYLE
*===================================*/

/*===================================*
  14.START CLIENT LOGO STYLE
*===================================*/
.client_logo .cl_logo img {
    opacity: 0.7;
    filter: grayscale(1);
    width: 163px;
    margin: 0 auto;
    transition: all 0.5s ease-in-out;
}

.client_logo .cl_logo:hover img {
    opacity: 1;
    filter: grayscale(0);
}

.client_logo.cl_logo_style1 .cl_logo img {
    opacity: 1;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.client_logo.cl_logo_style1 .cl_logo:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

/*===================================*
  14.END CLIENT LOGO STYLE
*===================================*/

/*===================================*
  15.START BREADCRUMB STYLE
*===================================*/
.breadcrumb_section {
    padding: 150px 0;
    width: 100%;
}

.breadcrumb_section.page-title-mini {
    padding: 70px 0;
}

.page-title-mini .page-title h1 {
    font-size: 20px;
}

.page-title-mini .breadcrumb li {
    font-size: 14px;
}

.header_wrap.transparent_header + .breadcrumb_section {
    padding-top: 200px;
}

.header_wrap.transparent_header.header_with_topbar + .breadcrumb_section {
    padding-top: 250px;
}

.page-title h1 {
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
    line-height: normal;
}

.page_title_light *, .page_title_light .breadcrumb-item, .page_title_light .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f3d1";
    font-family: "Ionicons";
    vertical-align: middle;
}

.page-title + .breadcrumb {
    margin-top: 15px;
}

.page-title + span {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}

.breadcrumb-item a i {
    font-size: 26px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
    display: inline-block;
}

/*===================================*
  15.END BREADCRUMB STYLE
*===================================*/

/*===================================*
  16.START CONTACT STYLE
*===================================*/
.contact_wrap li {
    list-style: none;
}

.contact_wrap li {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 25px;
    -ms-flex-align: center;
    align-items: center;
}

.contact_icon {
    margin-right: 20px;
}

.contact_icon i {
    font-size: 34px;
    color: var(--mainColor);
}

.contact_text span {
    color: #333;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.contact_text span:last-child {
    margin-bottom: 0;
    color: #687188;
}

.contact_text a {
    color: #687188;
    line-height: 28px;
}

.contact_text a:hover {
    color: var(--mainColor);
}

.contact_style1 {
    text-align: center;
    padding: 20px;
    border: 2px solid #eee;
    margin-bottom: 30px;
}

.contact_style1 .contact_text span {
    margin-bottom: 5px;
}

.contact_style1 .contact_icon {
    margin-right: 0;
    margin-bottom: 10px;
}

.contact_style2 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
}

.contact_style2 .contact_icon {
    background-color: #DFFFED;
    margin: 0 0 5px;
    height: 90px;
    width: 90px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    z-index: 1;
}

.contact_style2 .contact_icon i {
    line-height: 90px;
}

.contact_style3 {
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    border-radius: 10px;
    height: 261px;
}

.contact_style3 .contact_icon {
    border: 1px solid var(--mainColor);
    margin: 0 0 5px;
    height: 80px;
    width: 80px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
    border-radius: 100%;
    position: relative;
    z-index: 1;
}

.contact_style3 .contact_icon i {
    line-height: 78px;
    transition: all 0.5s ease-in-out;
}

.contact_style3 .contact_icon::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--mainColor);
    transition: all 0.5s ease-in-out;
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    border-radius: 100%;
    z-index: -1;
}

.contact_style3:hover .contact_icon::before {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.contact_style3:hover .contact_icon i {
    color: #fff;
}

.contact_box {
    position: relative;
    padding: 50px 0px;
    display: table;
    width: 100%;
}

.contact_form {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    max-width: 500px;
    background-color: #fff;
    padding: 30px;
    float: right;
    margin-right: 30px;
    position: relative;
    z-index: 9;
}

.contact_box .map {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

.contact_box .map iframe {
    height: 100%;
}

/*===================================*
  16. END CONTACT STYLE
*===================================*/

/*===================================*
  17.START DIVIDER STYLE
*===================================*/
.divider {
    position: relative;
    overflow: hidden;
    height: 4px;
    z-index: 9;
}

.divider.center_icon,
.divider.left_icon,
.divider.right_icon,
.divider.text_divider {
    height: auto;
}

.divider.left_icon i {
    padding-left: 0;
    padding-right: 20px;
}

.divider.center_icon {
    text-align: center;
}

.divider.right_icon i {
    padding-right: 0;
    padding-left: 20px;
}

.divider.right_icon {
    text-align: right;
}

.divider.text_divider {
    text-align: center;
}

.divider.text_divider span {
    background-color: #fff;
    position: relative;
    z-index: 1;
    font-size: 30px;
    padding: 0 30px;
}

.divider.divider_style1 .divider_icon {
    padding-right: 10px;
    background-color: #fff;
    display: inline-block;
    position: relative;
    z-index: 9;
}

.divider.divider_style1.center_icon .divider_icon {
    padding-left: 10px;
}

.divider.divider_style1.right_icon .divider_icon {
    padding-right: 0px;
    padding-left: 10px;
}

.divider.divider_style1 i {
    background-color: var(--mainColor);
    border-radius: 100%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    display: block;
    padding: 0;
    text-align: center;
    line-height: 40px;
    color: #fff;
}

.divider:before,
.divider:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0px;
    height: 0;
    border-top: 1px solid #dddddd;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.divider::before {
    margin-top: -1px;
}

.divider::after {
    margin-top: 1px;
}

.divider i {
    background-color: #fff;
    color: #d9d9d9;
    position: relative;
    z-index: 1;
    font-size: 30px;
    padding: 0 40px;
}

/*===================================*
  17.END DIVIDER STYLE
*===================================*/

/*===================================*
  20.START LOGIN REGISTER STYLE
*===================================*/
.login_wrap {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.login_register_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.login_footer {
    margin-bottom: 20px;
    margin-top: 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.login_footer a {
    color: #687188;
}

.different_login {
    text-align: center;
    position: relative;
    margin: 20px 0;
}

.different_login span {
    background-color: #fff;
    padding: 0 15px;
    position: relative;
    text-transform: uppercase;
}

.different_login::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid #ddd;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn-login li {
    margin: 0px 5px 0;
    display: inline-block;
}

.btn-login li a {
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    display: block;
}

.btn-login li a i {
    margin-right: 10px;
    font-size: 18px;
    margin-left: 0;
}

.btn-facebook {
    background: #3b5998;
    border-color: #3b5998;
}

.btn-facebook:hover {
    color: #fff;
    background: #344e86;
    border-color: #344e86;
}

.btn-google {
    background: #d85040;
    border-color: #d85040;
}

.btn-google:hover {
    color: #fff;
    background: #d33d2b;
    border-color: #d33d2b;
}

/*===================================*
  20.END LOGIN REGISTER STYLE
*===================================*/

/*===================================*
  23.START SHOP DESIGN
*===================================*/
.shorting_icon {
    font-size: 16px;
    margin-right: 10px;
    height: 35px;
    width: 35px;
    float: left;
    text-align: center;
    line-height: 37px;
    border: 1px solid #CED4DA;
    border-radius: 4px;
}

.shorting_icon .ti-layout-list-thumb {
    font-size: 20px;
    line-height: 36px;
}

.shorting_icon.active {
    background-color: var(--mainColor);
    color: #fff;
    border-color: var(--mainColor);
}

.result_count {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.product_header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.product_header_right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.products_view {
    display: inline-block;
    vertical-align: middle;
}

.product,
.product_wrap {
    background-color: #fff;
    position: relative;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
    border-radius: 5px !important;
    box-shadow: -2px 5px 20px rgba(214, 214, 214, 0.75);
    -webkit-box-shadow: -2px 5px 20px rgba(214, 214, 214, 0.75);
    padding: 8px;
}

.carousel_slider .product, .carousel_slider .product_wrap {
    margin: 5px;
}

.brand .product,
.brand .product_wrap {
    background-color: #fff;
    position: relative;
    transition: all 0.5s ease-in-out;
    border: 1px solid #e0d6d6;
}

.product_box {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.product_box .product_info {
    position: relative;
}

.product_box .add-to-cart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    background-color: #fff;
    padding: 10px 15px 15px 15px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    visibility: hidden;
}

.product_box:hover .add-to-cart {
    bottom: 0px;
    opacity: 1;
    visibility: visible;
}

.product_box .pr_action_btn li a {
    border-radius: 100%;
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.product_wrap .pr_action_btn li a {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.product_wrap .pr_action_btn li a i {
    line-height: 35px;
    font-size: 16px;
}

.product_img img {
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.product_img .product_hover_img {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}

.product:hover .product_img .product_hover_img,
.product_box:hover .product_img .product_hover_img,
.product_wrap:hover .product_img .product_hover_img {
    opacity: 1;
    z-index: 0;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.pr_flash {
    background-color: #FF9F00;
    position: absolute;
    left: 10px;
    top: 10px;
    text-transform: uppercase;
    color: #fff;
    padding: 2px 8px;
    font-size: 13px;
    z-index: 1;
}

.product_info {
    padding: 15px 7px 7px;
    position: relative;
}

.price {
    color: var(--mainColor);
    font-weight: 600;
}

.product_price del {
    font-size: 14px;
    margin-right: 5px;
    margin-left: 3px;
}

.on_sale {
    display: inline-block;
    color: #388e3c;
    font-size: 14px;
}

.product_price {
    margin-bottom: 5px;
}

.product .rating_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.product.text-center .rating_wrap {
    -ms-flex-pack: center;
    justify-content: center;
}

.rating_num {
    font-size: 14px;
    margin-left: 5px;
    vertical-align: middle;
    display: inline-block;
}

.rating_wrap .rating {
    /*overflow: hidden;*/
    position: relative;
    height: 20px;
    font-size: 12px;
    width: 65px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    vertical-align: middle;
}

.rating::before {
    font-size: 12px;
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    float: left;
    color: #F6BC3E;
}

.product_rate {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
    color: #F6BC3E;
}

.product_rate::before {
    font-size: 12px;
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    position: absolute;
    left: 0;
    font-weight: 900;
}

.product_action_box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    right: 0;
    text-align: center;
    padding-top: 0;
    transition: all .5s ease-in-out;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pr_action_btn {
    display: table;
    margin: 0 auto;
}

.product_img {
    position: relative;
    overflow: hidden;
}

.product_img img {
    height: 220px;
    min-width: 100%;
}

.list .product_img img {
    height: 190px;
}

.product_img::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.product:hover .product_img:before,
.product_box:hover .product_img:before {
    opacity: 1;
}

.pr_action_btn li {
    position: relative;
    margin: 0px 5px;
    display: inline-block;
}

.product_wrap .pr_action_btn li {
    display: block;
    margin: 10px 0;
}

.product_wrap .pr_action_btn {
    margin: 0 0 0 10px;
}

.product_action_box li {
    -webkit-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    -o-transform: translate(0, 15px);
    transform: translate(0, 15px);
    opacity: 0;
}

.product_action_box li:nth-child(1) {
    -webkit-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.product_action_box li:nth-child(2) {
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.product_action_box li:nth-child(3) {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.product_action_box li:nth-child(4) {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}

.product:hover .product_action_box li,
.product_box:hover .product_action_box li,
.product_wrap:hover .product_action_box li {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
}

.pr_action_btn li a {
    background-color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    width: 37px;
    height: 37px;
    line-height: 37px;
    padding: 0;
    display: block;
    text-align: center;
}

.pr_action_btn li a i {
    font-size: 20px;
    color: #666;
}

.pr_action_btn li span {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    width: 37px;
    height: 37px;
    line-height: 37px;
    padding: 0;
    display: block;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
}

.pr_action_btn li span:hover {
    opacity: .9;
    background-color: #eee;
}

.pr_action_btn li span i {
    font-size: 20px;
    color: #666;
}

.pr_action_btn li .favorite i,
.details-wish.add_wish_list.favorite i {
    color: #ff3838;
}

.wish-add i {
    color: var(--mainColor);
}

.pr_action_btn li a {
    background-color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    width: 37px;
    height: 37px;
    line-height: 37px;
    padding: 0;
    display: block;
    text-align: center;
    border-radius: 4px;
}

.pr_action_btn li a i {
    font-size: 20px;
    color: #666;
}

>>> >>> > b248fa68fe77589b9731d4d1cbea947010b3a106
.pr_action_btn li a:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.pr_action_btn li a:hover i {
    color: #eee;
}

.product .product_title,
.product_box .product_title,
.product_wrap .product_title {
    font-weight: bold;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -moz-line-clamp: 1;
    -o-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.pt_details {
    font-size: 24px;
}

.product_desc p {
    line-height: 25px;
    margin-bottom: 0;
    font-size: 14px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -o-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.shop_container.list .product_desc p {
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -o-line-clamp: 4;
    line-clamp: 4;
}

.product_list .product,
.product_list .product_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    margin-bottom: 30px;
}

.product_list .product_img {
    max-width: 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    width: 100%;
}

.product_list .product_info {
    padding: 0px 0 0 15px;
    text-align: left;
    max-width: 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
}

.product_list .product_img::before {
    content: normal;
}

.mfp-ajax-holder .mfp-content .ajax_quick_view {
    max-width: 980px;
    background-color: #fff;
    margin: 6px auto;
    padding: 30px;
    position: relative;
}

.mfp-close {
    width: 30px;
    height: 30px;
    line-height: normal;
}

.product-image {
    position: relative;
}

.pr_detail .pr_desc p {
    margin-bottom: 15px;
}

.pr_detail .rating_wrap {
    float: right;
    margin-top: 7px;
}

.pr_detail .price {
    vertical-align: middle;
    font-size: 26px;
}

.cart-product-quantity {
    margin: 7px 10px 7px 0;
    display: table;
}

.quantity {
    display: table;
}

.quantity .minus, .quantity .plus {
    background-color: #eee;
    display: block;
    float: left;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    padding: 0;
    width: 34px;
    height: 34px;
    line-height: 36px;
    text-align: center;
    font-size: 20px;
    margin: 4px;
}

.quantity .minus {
    padding-left: 4px;
}

.quantity .qty {
    float: left;
    width: 55px;
    height: 36px;
    border: 1px solid #ddd;
    background-color: transparent;
    text-align: center;
    padding: 0;
    margin: 3px;
}

.cart_extra {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
}

.zoomContainer {
    z-index: 99;
}

.zoom_image .zoomContainer {
    z-index: 1043;
}

.zoom_gallery_image .zoomContainer {
    z-index: 0;
}

.switch_lable {
    float: left;
    margin-right: 10px;
}

.pr_detail .pr_switch_wrap {
    margin-bottom: 10px;
}

.product_size_switch span {
    cursor: pointer;
    text-transform: uppercase;
    width: 32px;
    display: inline-block;
    border: 2px solid #ddd;
    text-align: center;
    height: 32px;
    line-height: 28px;
    font-size: 14px;
    margin-bottom: 3px;
}

.product_size_switch span.active {
    border-color: var(--mainColor);
    background-color: var(--mainColor);
    color: #fff;
}

.list_brand li {
    list-style: none;
    margin-bottom: 10px;
}

.list_brand li:last-child {
    margin-bottom: 0;
}

.list_brand .custome-checkbox .form-check-label {
    color: #292b2c;
}

.cart_btn.add_wishlist .make_dislike, .cart_btn.add_wishlist .make_like {
    font-size: 22px;
    display: block;
}

.cart_btn .wishlist_btn {
    display: inline-block;
    position: relative;
    margin-left: 15px;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    line-height: 40px;
}

.mfp-content {
    text-align: center
}

.product_gallery_item a {
    border: 1px solid #ddd;
    display: block;
    padding: 5px;
}

.product-meta li {
    list-style: none;
    margin-top: 10px;
}

.slick-vertical .slick-slide {
    border: 0;
}

.slick-list {
    padding: 0 !important;
}

.product_gallery_item.slick-slider .slick-slide {
    margin-right: 5px;
    margin-left: 5px;
}

.product-image .slick-list {
    margin-right: -5px;
    margin-left: -5px;
}

.product_gallery_item a.active {
    border-color: var(--mainColor);
}

.vertical_gallery #pr_item_gallery {
    width: 15%;
    float: left;
    margin-right: 10px;
}

.vertical_gallery .slick-list {
    margin-right: 0;
    margin-left: 0;
}

.vertical_gallery .product_gallery_item.slick-slider .slick-slide {
    margin-bottom: 12px;
    margin-right: 0;
    margin-left: 0;
}

.vertical_gallery .slick-prev, .vertical_gallery .slick-next {
    height: 40px;
    width: 100%;
}

.vertical_gallery .slick-prev {
    border-radius: 0 0 5px 5px;
    left: 0;
    right: 0;
    top: -40px;
    margin: 0 auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.vertical_gallery .slick-next {
    border-radius: 5px 5px 0 0;
    right: 0;
    left: 0;
    bottom: -40px;
    top: auto;
    margin: 0 auto;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.vertical_gallery .slick-prev:before {
    content: "\f10e"
}

.vertical_gallery .slick-next:before {
    content: "\f105"
}

.vertical_gallery .slick_slider:hover .slick-prev {
    top: 0;
}

.vertical_gallery .slick_slider:hover .slick-next {
    bottom: 0px;
    right: 0;
}

.product_img_box {
    padding: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.product_share {
    margin-top: 15px;
}

.product_share > span {
    margin-right: 10px;
}

.product_share > span, .product_share .social_icons {
    vertical-align: middle;
    display: inline-block;
}

.product_share .social_icons li {
    padding-bottom: 0;
}

.product_sort_info {
    margin-bottom: 15px;
}

.product_sort_info li {
    font-size: 14px;
    color: #292B2C;
    padding-bottom: 10px;
    list-style: none;
    padding-left: 22px;
    position: relative;
}

.product_sort_info li i {
    color: var(--mainColor);
    position: absolute;
    font-size: 16px;
    left: 0;
    top: 3px;
}

.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: var(--mainColor);
    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;
}

#flt_price {
    margin-left: 5px;
    font-weight: 600;
}

.shop_container {
    position: relative;
}

.loading_pr {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9;
}

.shop_container .loading_pr {
    top: -7px;
}

.shop_container .mfp-preloader {
    top: 100px;
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: url("../images/loading.gif") center center no-repeat;
    text-align: center;
    margin-top: -12px;
    margin-left: -12px;
    z-index: 1044;
    text-indent: -9999px;
    background-color: #000;
    padding: 25px;
    border-radius: 5px;
}

.shop_container:not(.list) .list_product_action_box,
.shop_container.list .product_action_box {
    display: none;
}

.shop_container.list .product_img::before {
    content: normal;
}

.shop_container.list [class*="col-"] {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.shop_container.list .grid_item {
    position: static !important;
    transform: none !important;
}

.shop_container.list .product {
    display: inline-block;
    width: 100%;
}

.shop_container.list .product_img {
    float: left;
    width: 100%;
    max-width: 200px;
}

.shop_container.list .product .product_title {
    font-size: 20px;
    margin-bottom: 15px;
}

.shop_container.list .product_info {
    overflow: hidden;
    text-align: left;
    padding: 15px 30px;
}

.shop_container.list .product_price {
    float: left;
}

.shop_container.list .product .rating_wrap {
    display: block;
    float: right;
}

.shop_container.list .pr_desc {
    display: block;
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
    min-height: 58px;
    max-height: 84px;
}

.shop_container.list .pr_desc p {
    margin-bottom: 0px;
}

.shop_container.list .product_action_box,
.shop_container.list .product .pr_switch_wrap,
.shop_container.list .product .pr_switch_wrap {
    position: static;
}

.shop_container.list .product .pr_switch_wrap {
    padding: 0;
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
}

.shop_container.list .product .product_color_switch span {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.shop_container.list .product_action_box li {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
    filter: alpha(opacity=1);
}

.shop_container.list .pr_action_btn {
    display: block;
    margin: 0;
}

.shop_container.list .pr_action_btn li {
    margin: 0 5px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.shop_container.list .pr_action_btn li a {
    box-shadow: none;
}

.shop_container.list .pr_action_btn li a:hover {
    background-color: transparent;
    color: var(--mainColor);
}

.shop_container.list .list_product_action_box .pr_action_btn li.add-to-cart a {
    font-size: 16px;
    width: auto;
    height: auto;
    padding: 12px 30px;
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
    color: #fff;
    border-radius: 4px;
}

.shop_container.list .pr_action_btn li.add-to-cart a:hover {
    background-color: transparent;
    color: var(--mainColor);
}

.shop_container.list .pr_action_btn li.add-to-cart a i {
    line-height: normal;
    margin-right: 5px;
}

#Additional-info table td:first-child {
    width: 25%;
}

.product_tab_title span {
    font-weight: 600;
}

.tab-content.shop_info_tab {
    margin-top: 40px;
}

.comment_list {
    margin-bottom: 20px;
}

.comments li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.comment_img {
    float: left;
}

.comment_img img {
    border-radius: 100%;
    max-width: 100px;
}

.comment_block {
    padding-left: 120px;
}

.customer_meta {
    margin-bottom: 5px;
}

.comment_block .rating_wrap {
    float: right;
}

.description p:last-child {
    margin: 0;
}

.review_author {
    display: block;
    color: #292b2c;
    font-weight: 500;
}

.comment-date {
    font-style: italic;
}

.star_rating > span {
    color: #F6BC3E;
}

.star_rating span {
    cursor: pointer;
    display: inline-block;
}

.star_rating span i {
    font-size: 20px;
}

.star_rating > span.selected i::before {
    font-weight: 900;
}

.releted_product_slider .item {
    margin: 10px 0px 0px;
}

.releted_product_slider .product {
    margin-bottom: 15px;
}

.mfp-ajax-holder .compare_box {
    width: 90%;
    margin: 6px auto;
    background-color: #fff;
    position: relative;
    padding: 30px;
}

.row_remove a, .row_remove a:hover {
    color: #FF0000;
}

.in-stock {
    color: #388e3c;
}

.out-stock {
    color: #dc3545;
}

.product_name a {
    font-weight: 600;
}

.row_color .product_color_switch span {
    pointer-events: none;
}

.product-thumbnail img {
    max-width: 70px;
}

.shop_cart_table th, .shop_cart_table td,
.wishlist_table th, .wishlist_table td {
    vertical-align: middle;
    text-align: center;
}

.shop_cart_table th.product-name, .shop_cart_table td.product-name,
.wishlist_table th.product-name, .wishlist_table td.product-name {
    text-align: left;
    text-transform: capitalize;
}

.shop_cart_table .quantity {
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-remove a i {
    height: 30px;
    width: 30px;
    color: #292b2c;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    font-size: 14px;
}

.product-remove a i:hover {
    background-color: #F00;
    color: #fff;
}

.shop_cart_table td.product-price,
.shop_cart_table td.product-subtotal {
    font-weight: 600;
}

.shop_cart_table .table {
    margin: 0;
}

.toggle_info {
    padding: 20px;
    background-color: #F7F7F7;
}

.toggle_info span {
    padding-left: 25px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.toggle_info i {
    margin-right: 10px;
    color: var(--mainColor);
    position: absolute;
    left: 0;
    top: 5px;
}

.login_form .panel-body, .coupon_form .panel-body {
    border: 1px solid #ddd;
    padding: 30px;
    margin-top: 30px;
}

label.label_info {
    color: #292b2c !important;
    font-weight: 600;
}

.ship_detail {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.product-qty {
    font-weight: 600;
}

.product-subtotal {
    font-weight: 600;
}

.order_review {
    background-color: #f7f8fb;
    padding: 30px;
}

.order_table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
}

.order_table tfoot th {
    font-weight: 600;
}

.order_table tbody td {
    border: 0;
}

.payment_method {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.payment_option .custome-radio {
    margin-bottom: 10px;
}

.payment-text {
    display: none;
    margin-top: 5px;
    margin-bottom: 0;
}

.payment_option .custome-radio:first-child .payment-text {
    display: block;
}

.payment_option .custome-radio .form-check-label {
    color: #292b2c;
    font-weight: 600;
}

.wishlist_table .table td {
    border-bottom: 1px solid #dee2e6;
}

.wishlist_table .badge {
    line-height: normal;
    vertical-align: middle;
    padding: 2px 10px;
}

#load-more {
    transition: none;
}

.loading {
    background: url('../images/loading.gif') center center no-repeat;
    font-size: 0 !important;
    background-color: #000 !important;
    border: 0;
    height: 51px;
    width: 50px;
    padding: 0;
}

.loading::after, .loading::before {
    content: normal;
}

.load_more_wrap {
    margin-top: 20px;
}

.load_more_wrap span {
    display: inline-block;
    margin: 0;
    line-height: 1;
    font-size: 14px;
}

.order_complete i {
    color: var(--mainColor);
    font-size: 80px;
    margin-bottom: 20px;
}

.empty_icon {
    background-color: #DFFFED;
    display: inline-block;
    height: 100px;
    width: 100px;
    line-height: 100px;
    border-radius: 100%;
    margin-bottom: 25px;
}

.card-body .comments {
    margin-top: 5px;
}


/*===================================*
  23.END SHOP DESIGN
*===================================*/

/*===================================*
  24.START ELEMENT DESIGN
*===================================*/
.form-control {
    color: #000;
    box-shadow: none;
    height: 50px;
    padding: 8px 15px;
}

.form-control:focus,
.custom-file-input:focus ~ .custom-file-label {
    color: #000;
    box-shadow: none;
    height: 50px;
}

textarea.form-control, textarea.form-control:focus {
    height: 250px;
    padding: 12px 15px;
}

.form-control-sm,
.form-control-sm:focus,
.custom_select select.form-control-sm,
.custom_select select.form-control-sm:focus {
    height: 45px;
}

select.not_chosen,
select.first_null option:first-child,
select.not_chosen:focus,
select.form-control.not_chosen,
select.form-control.first_null option:first-child,
select.not_chosen.form-control:focus {
    color: #6c757d;
}

select option {
    color: #000;
}

.custom_select {
    position: relative;
}

.custom_select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #ced4da;
    padding: 8px 35px 8px 15px;
    height: 40px;
    border-radius: 4px;
}

.custom_select::before {
    content: "\e64b";
    font-family: 'themify';
    position: absolute;
    display: block;
    color: #848484;
    top: 50%;
    right: 15px;
    font-weight: 900;
    pointer-events: none;
    font-size: 12px;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.custom-file-label::after {
    height: 48px;
    border: 0;
    line-height: 40px;
    border-radius: 0;
}

.custom-file-label, .custom-file, .custom-file-input {
    height: 50px;
    line-height: 38px;
}

.rounded_input .form-control,
.rounded_input input {
    border-radius: 30px;
    padding: 10px 20px;
}

.rounded_input .custom_select select {
    padding-right: 40px;
}

.rounded_input .custom_select::before {
    right: 20px;
}

.rounded_input textarea.form-control, .rounded_input textarea.form-control:focus {
    padding: 15px 20px;
}

.input_group {
    position: relative;
}

.input_icon {
    position: absolute;
    right: 20px;
    top: 14px;
    pointer-events: none;
    color: #848484;
}

.rounded_input .input_icon {
    top: 12px;
}

.pagination .page-item a {
    color: #0E93D8;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0px;
    z-index: 1;
}

.page-link:focus {
    box-shadow: none;
}

.pagination_style1 li,
.pagination_style2 li,
.pagination_style3 li,
.pagination_style4 li {
    margin-right: 5px;
}

.pagination_style1 .page-item a {
    border: 2px solid #dee2e6;
    border-radius: 0 !important;
    color: #687188;
    margin-left: 0px;
    line-height: 36px;
}

.pagination_style1 .page-item a i {
    line-height: 36px;
}

.pagination_style1 .page-item.disabled .page-link,
.pagination_style3 .page-item.disabled .page-link {
    color: #c6c6c6;
    pointer-events: none;
    background-color: #fff;
    border-color: #f4f4f4;
}

.pagination_style1 .page-item.active .page-link,
.pagination_style1 .page-item .page-link:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    color: #fff;
}

.widget_title {
    margin-bottom: 25px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sidebar .widget + .widget {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 30px;
}

.post_footer {
    display: inline-block;
    vertical-align: top;
}

footer .widget_recent_post .post_img img {
    border: 0;
}

.post_img,
.widget_course li .course_img {
    float: left;
    margin-right: 10px;
}

.post_img img {
    width: 80px;
}

.tags a {
    background-color: #f7f7f7;
    font-size: 14px;
    padding: 8px 15px;
    display: inline-block;
    margin-bottom: 5px;
    color: #333;
}

.tags a:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.tags_style1 a {
    border-radius: 40px;
}

.instafeed_col4 li {
    width: 25%;
}

.nav-tabs li.nav-item a {
    background-color: transparent;
    border: 0;
    font-weight: 500;
    text-align: center;
    text-transform: capitalize;
    padding: 5px 20px;
}

.tab-content {
    margin-top: 25px;
}

.tab-style1 .nav-tabs,
.tab-style2 .nav-tabs {
    border-bottom: 0;
}

.tab-style1 .nav-tabs li.nav-item a.active, .tab-style1 .nav-tabs li.nav-item a.active:hover,
.tab-style2 .nav-tabs li.nav-item a.active, .tab-style2 .nav-tabs li.nav-item a.active:hover {
    color: var(--mainColor);
}

.tab-style2 .nav-tabs li.nav-item a {
    padding: 0px 15px;
}

.tab-style2 .nav-tabs li.nav-item:last-child a {
    padding-right: 0;
}

.tab-style3 .nav-tabs li.nav-item a {
    background-color: transparent;
    display: block;
    padding: .5rem 1rem;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    text-align: center;
    text-transform: uppercase;
}

.tab-style3 .nav-tabs .nav-item a.active {
    border-bottom-color: var(--mainColor);
    color: var(--mainColor);
}

.heading_tab_header {
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
    position: relative;
}

.heading_tab_header [class*="heading_"] {
    float: left;
}

.view_all i, .view_all span {
    vertical-align: middle;
}

.custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
    color: #687188;
    padding: 0;
    vertical-align: middle;
}

.custome-checkbox .form-check-input {
    display: none;
}

.custome-checkbox .form-check-label span {
    vertical-align: middle;
}

.custome-checkbox .form-check-label::before {
    content: "";
    border: 2px solid #ced4da;
    height: 17px;
    width: 17px;
    margin: 0 8px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::after {
    opacity: 1;
}

.custome-checkbox input[type="checkbox"] + .form-check-label::after {
    content: "";
    width: 11px;
    position: absolute;
    top: 50%;
    left: 3px;
    opacity: 0;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    -moz-transform: translateY(-65%) rotate(-45deg);
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
}

.custome-checkbox input[type="checkbox"]:checked + .form-check-label::before {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
}

.custome-radio .form-check-input, .custome-checkbox .form-check-input {
    display: none;
}

.custome-radio .form-check-label::before {
    content: "";
    border: 1px solid #908f8f;
    height: 16px;
    width: 16px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 8px;
}

.custome-radio input[type="radio"] + .form-check-label::after {
    content: "";
    background-color: var(--mainColor);
    height: 10px;
    width: 10px;
    border-radius: 100%;
    position: absolute;
    top: 9px;
    left: 3px;
    opacity: 0;
}

.custome-radio .form-check-label, .custome-checkbox .form-check-label {
    position: relative;
    cursor: pointer;
}

.custome-radio input[type="radio"]:checked + .form-check-label::before {
    border-color: var(--mainColor);
}

.custome-radio input[type="radio"]:checked + .form-check-label::after {
    opacity: 1;
}

.custome-checkbox input[disabled] + .form-check-label,
.custome-radio input[disabled] + .form-check-label {
    color: #d0d0d0;
}

.custome-checkbox input[disabled] + .form-check-label::before,
.custome-radio input[disabled] + .form-check-label::before {
    border-color: #e8e8e8;
}

.owl-theme .owl-nav {
    margin-top: 0;
}

body .owl-theme .owl-nav [class*="owl-"] {
    background-color: #fff;
    color: #222;
    font-size: 26px;
    line-height: 50px;
    transition: all 0.3s ease-in-out;
    height: 50px;
    padding: 0;
    margin: 0;
    width: 50px;
    text-align: center;
}

.owl-theme .owl-nav [class*="owl-"] i {
    line-height: normal;
}

.owl-theme .owl-dots {
    font-size: 0;
    margin-top: 15px;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: transparent;
    border: 1px solid var(--mainColor);
    cursor: pointer;
    margin: 3px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--mainColor);
}

.dot_style1.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
}

.nav_style1.owl-theme .owl-nav [class*="owl-"],
.nav_style5.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkittransform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 0;
    width: 30px;
}

.nav_style1.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: #fff;
    color: #555;
}

.nav_style1.owl-theme .owl-nav .owl-prev {
    left: -50px;
}

.nav_style1.owl-theme .owl-nav .owl-next {
    right: -50px;
}

.nav_style2.owl-theme .owl-nav [class*="owl-"] {
    background-color: transparent;
    position: absolute;
    bottom: 10px;
}

.nav_style2.owl-theme .owl-nav [class*="owl-"]:hover,
.nav_style3.owl-theme .owl-nav [class*="owl-"]:hover,
.nav_style4.owl-theme .owl-nav [class*="owl-"]:hover {
    color: #555;
}

.nav_style2.owl-theme .owl-nav .owl-prev,
.nav_style5.owl-theme .owl-nav .owl-prev {
    left: 0px;
}

.nav_style2.owl-theme .owl-nav .owl-next,
.nav_style5.owl-theme .owl-nav .owl-next {
    right: 0px;
}

.nav_style3.owl-theme .owl-nav [class*="owl-"],
.nav_style4.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    top: -90px;
    border-radius: 0;
    right: 0;
    height: auto;
    width: auto;
    background-color: transparent;
}

.nav_style3.owl-theme .owl-nav .owl-prev {
    right: 40px;
}

.dot_white.owl-theme .owl-dots .owl-dot span {
    border-color: #fff;
}

.dot_white.owl-theme .owl-dots .owl-dot.active span, .dot_white.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #fff;
}

.slick-prev.slick-disabled::before, .slick-next.slick-disabled::before {
    opacity: 1;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background-color: #fff;
}

.slick-prev {
    left: -50px;
    border-radius: 0 5px 5px 0;
    opacity: 0;
}

.slick-next {
    right: -50px;
    border-radius: 5px 0 0 5px;
    opacity: 0;
}

.slick-prev::before {
    content: "\f108";
    font-family: "Ionicons";
    color: #333;
    opacity: 1;
    display: block;
    font-size: 22px;
}

.slick-next::before {
    content: "\f10b";
    font-family: "Ionicons";
    color: #333;
    opacity: 1;
    display: block;
    font-size: 22px;
}

.slick-prev, .slick-next {
    height: 50px;
    width: 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
    background-color: #fff;
    z-index: 9;
    transition: all 0.5s ease-in-out;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--mainColor);
}

.slick-prev:hover:before, .slick-next:hover:before {
    color: #fff;
}

.slick_slider:hover .slick-prev {
    opacity: 1;
    left: 0;
}

.slick_slider:hover .slick-next {
    opacity: 1;
    right: -2px;
}

.social_icons [class*="sc_"] {
    color: #fff !important;
}

.social_icons [class*="sc_"] i {
    transition: all 0.3s ease-in-out;
    display: block;
    line-height: 36px;
}

.social_icons [class*="sc_"]:hover i {
    -webkit-animation: toLeftFromRight 0.3s forwards;
    -moz-animation: toLeftFromRight 0.3s forwards;
    animation: toLeftFromRight 0.3s forwards;
}

blockquote {
    font-size: 20px;
    line-height: 34px;
}

blockquote p {
    line-height: 34px;
}

blockquote p:last-child {
    margin: 0;
}

.modal {
    padding-right: 0 !important;
}

.page_soon {
    font-size: 10px;
    color: #fff;
    padding: 0px 5px;
    border-radius: 20px;
    background-color: #28A745;
    text-transform: uppercase;
    font-weight: 600;
}

.alert .close {
    font-weight: normal;
    margin-left: 10px;
}

.alert_style1 {
    border-radius: 0;
    border-left: 3px solid;
    padding: 20px;
    position: relative;
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
}

.alert > i {
    margin-right: 5px;
    font-size: 18px;
    vertical-align: middle;
}

.alert_style2 {
    border-radius: 20px;
    padding: 20px 20px;
    background-color: #fff;
    border-left: 3px solid;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-top: 0;
    border-bottom: 0;
    border-right: 3px solid;;
}

.button_group .btn {
    margin-bottom: 20px;
}

.trading_img {
    margin-top: -40px;
}

.term_conditions h6 {
    margin-bottom: 15px;
}

.term_conditions ul,
.term_conditions ol {
    padding-left: 15px;
}

.term_conditions p,
.term_conditions li {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 28px;
    color: #111;
}

.popup_content {
    padding: 50px;
    text-align: center;
}

.modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 9999;
}

.dashboard_menu {
    box-shadow: 0 0px 4px 0 #e9e9e9;
}

.dashboard_menu .nav-tabs li.nav-item a {
    text-align: left;
    padding: 12px 20px;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    color: #2b2f4c;
}

.dashboard_menu .nav-tabs li.nav-item a.active {
    background-color: var(--mainColor);
    color: #fff;
}

.dashboard_menu .nav-tabs li.nav-item a i {
    margin-right: 8px;
    vertical-align: middle;
}

.dashboard_content {
    margin: 0;
}

.dashboard_content .card-header {
    background-color: transparent;
    border-color: #f0f0f0;
}

.dashboard_content .card-header * {
    margin: 0;
}

.dashboard_content .card {
    border-radius: 0;
    border: 0;
    box-shadow: 0 0px 4px 0 #e9e9e9;
}

.dashboard_content .card-body p:last-child {
    margin: 0;
}

.dashboard_content .table {
    margin: 0;
}

.dashboard_content .table thead th {
    border: 0;
    padding-top: 0;
    font-weight: 600;
}

.dashboard_content .table tbody tr:last-child td {
    padding-bottom: 0;
}

.dashboard_content .table tbody tr td {
    vertical-align: middle;
    white-space: nowrap;
}

.dashboard_content label {
    color: #333;
}

.dashboard_content label .required {
    color: #ff0000;
}

/*===================================*
  24.END ELEMENT DESIGN
*===================================*/

/*Demo Switcher Css*/
.default {
    background-color: var(--mainColor);
}

.orange {
    background-color: #FF9F54;
}

.red {
    background-color: #F0222C;
}

.header_list .dropdown li {
    position: relative;
    list-style: none;
    transition: all 0.3s ease 0s;
}

.header_list .dropdown li .dropdown-item:hover {
    color: var(--mainColor);
}

.widget .btn-fill-out {
    width: 200px;
    text-align: right;
}

.out_of_stock {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    background-color: #e74c3c;
    padding: 0 5px;
    border-radius: 2px;
}

.out_of_stock p {
    margin-bottom: 0;
    color: #fff;
    font-size: 11px;
    line-height: 22px;
}

.sar {
    color: var(--mainColor);
    font-size: 13px;
}

.old_price {
    font-size: 12px;
    text-decoration: line-through;
    color: #999;
}

.ion-heart {
    color: #666;
}

.ion-heart.red-heart {
    color: #e74c3c !important;
}

.rounded-circle {
    width: 40px;
    height: 40px;
}

.add_cart {
    margin-top: 20px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 15px;
    cursor: pointer;
}

.add_cart:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-color: #c8ad84;
    z-index: 0;
    border-radius: 0 25px 25px 0;
    transition: all .4s ease-in-out;
    box-shadow: inset -1px 0 1px #545454;
}

.product .add_cart:hover:before {
    width: 80%;
}

.add_cart button {
    border: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 11px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0 0 6px 1px rgba(202, 202, 202, .8);
}

.add_cart button span {
    z-index: 9;
    position: relative;
}

.add_cart button i {
    font-size: 16px;
    transition: all .4s ease-in-out;
    display: inline-block;
    margin-left: 5px;
}

.product .add_cart:hover button i {
    transform: rotate(360deg);
}

.read_more {
    margin-top: 10px;
    color: var(--mainColor);
    display: block;
}

.long_desc {
    margin-top: 50px;
}

.about-page p {
    color: #333;
}

.cCategory {
    margin-left: 37px;
    font-size: 12px;
}

.loading_request {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    z-index: 99;
    display: none;
}

.loading_request img {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.continue_shopping {
    color: var(--mainColor);
}

.out_of_stock {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 99;
    background-color: #e74c3c;
    padding: 0 6px;
    border-radius: 5px;
}

.out_of_stock p {
    margin-bottom: 0;
    color: #fff;
    font-size: 13px;
}

.boxesItem .card-header {
    position: relative;
}

.boxesItem .add_item_box {
    position: absolute;
    top: 13px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    background-color: var(--mainColor);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 3px #ccc;
}

.boxesItem .add_item_box:hover {
    background-color: #333;
}

.appearance {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pos-relative {
    position: relative;
}

.arrow_select {
    position: absolute;
    bottom: 14px;

}

.arrow_select img {
    width: 15px;
}

.required {
    color: #f00;
    position: relative;
    top: 3px;
}

.loading_request {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    z-index: 99;
    display: none;
}

.loading_request img {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.alert-danger ul {
    list-style: none;
}

.form-group.has-error .form-control {
    border-color: #e74c3c;
}

.address_box {
    margin-bottom: 20px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #bbb;
}

.address_box:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.fs-15 {
    font-size: 15px !important;
}

.checkout_t .table td,
.checkout_t .table th {
    border-top: 0;
    border-bottom: 1px solid #dee2e6;
}

.addressCheckout .card {
    margin-bottom: 30px;
    cursor: pointer;
}

.addressCheckout .card.selected:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--mainColor);
    border-radius: .25rem;
}

.boxesItem.addressCheckout .add_item_box {
    top: 0;
    width: 35px;
    height: 35px;
    line-height: 37px;
}

.addressCheckout .item {
    width: 50%;
}

.details_order {
    margin-bottom: 0;
}

.details_order tr:first-child td {
    border-top: 0;
}

.lang_switch {
    position: absolute;
    top: 28px;
    right: 15px;
    border: 1px solid #b4841e;
    color: #b4841e;
    width: 35px;
    z-index: 999;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
}

.table td, .table th {
    padding: .75rem;
    vertical-align: initial;
    border-top: 1px solid;
    border-color: #dee2e6;
}

.langFamilys {
    display: inline-block;
    border: 1px solid #9f8968;
    padding: 3px 12px;
    border-radius: 3px;
    color: var(--mainColor);
    font-size: 13px;
    transition: all .4s ease;
}

.language {
    font-family: "Cairo", sans-serif;
}

.langFamilys:hover {
    background-color: #9f8968;
    color: #fff;
}

.phone_lang {
    font-family: 'Poppins', sans-serif;
}

.label_status {
    border-radius: 5px !important;
    font-size: 12px;
    padding: 1px 10px;
    font-weight: bold
}

.btn_status {
    font-size: 16px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.btn_status {
    background-color: #2c3e50;
    padding: 3px 10px;
    border-radius: 5px !important;
    font-size: 13px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.btn_status:hover {
    background-color: #7f8c8d !important;
}

.received, .received .btn-default {
    background-color: #e67e22 !important;
    color: #fff;
}

.reached, .reached .btn-default {
    background-color: #2ecc71 !important;
    color: #fff;
}

.waiting, .waiting .btn-default {
    background-color: #d9b00d !important;
}

.preparation, .preparation .btn-default {
    background-color: #3498db !important;
    color: #fff;
}

.shipping, .shipping .btn-default {
    background-color: #1ccaa7 !important;
    color: #fff;
}

.cancel, .cancel .btn-default {
    background-color: #e74c3c !important;
    color: #fff;
}

.alert ul {
    margin-bottom: 0;
}

.flash_msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    padding: 0
}

.flash_msg .alert {
    margin-top: 15px;
    display: none
}

#search-button2 {
    left: 45px;
}

.wrap-custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 350px;
}

.wrap-custom-file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    overflow: hidden;
    opacity: 0;
}

.wrap-custom-file #previewImg {
    height: 300px;
}

.wrap-custom-file label {
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.wrap-custom-file label span {
    background-color: #666;
    bottom: 0;
    color: #ffffff;
    padding: 6px 15px;
    position: absolute;
    border-radius: 5px;
}

.btn-user-submit {
    margin-top: 20px;
}

.fbutt {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background-color: var(--mainColor);
    z-index: -1;
    transition: all 0.3s ease-in-out;
    width: 51%;
}

.msg_view .alert .close span,
.msg_flash .alert .close span {
    top: 0;
}

.shop_cart_table {
    margin-top: 50px;
}

.msg_view {
    position: fixed;
    right: 40px;
    bottom: 30px;
    z-index: 9999;
}

.wishlist_table .btn {
    padding: 6px 20px;
}

.out {
    margin-top: 20px;
}

.ltr {
    direction: ltr;
}

.dropdown-item {
    padding: .25rem 1rem;
    font-size: 13px;
}

.ele-list {
    margin-left: 15px;
}

.cart_buttons .checkout {
    margin-bottom: 0;
    margin-top: 0;
}

.price_symbole {
    font-size: 12px;
}

.ltr_display_links {
    display: inline-block;
    direction: ltr;
}

.downloaded_apps {
    text-align: right;
}

.downloaded_apps a {
    display: inline-block;
}

.downloaded_apps a:hover {
    opacity: .7;
}

.downloaded_apps a:first-child {
    margin-right: 5px;
}

.downloaded_apps a:last-of-type {
    margin-left: 5px;
}

.downloaded_apps img {
    /*width: 100px;*/
    height: 30px;
}

.loadingSm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 9;
    background: #fff;
    opacity: .5;
}

.brand_view {
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(158, 158, 158, .4);
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.brand_view:hover {
    box-shadow: 0 0 5px rgba(158, 158, 158, .2);
}

.brand_view img {
    height: 230px;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.brand_view:hover img {
    opacity: .5;
    filter: grayscale(100%);
}

.btn-addtocart {
    margin-bottom: 0;
}

.cart_btn .icon-heart, .cart_btn .ion-heart {
    margin-left: 15px;
}

.social {
    display: inline-flex;
}

.social li a {
    font-size: 18px;
    color: var(--goldMainColor);
    border: 1px solid var(--goldMainColor);
    height: 36px;
    width: 36px;
    line-height: 36px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    margin: 15px 5px 0;
}

.social li a:hover {
    color: #fff;
    background-color: var(--goldMainColor);
}

.border-top {
    border-top: 0 !important;
}

.block {
    display: block;
}

.pagination {
    display: table;
    margin: 30px auto 0;
}

.paginate_view .pagination li {
    margin: 0 4px;
    display: inline-block
}

.paginate_view .pagination li a,
.paginate_view .pagination li span {
    background-color: transparent;
    border-color: var(--mainColor);
    color: var(--mainColor);
    height: 35px;
    width: 35px;
    line-height: 35px;
    padding: 0;
}

.paginate_view .pagination a.page-link:hover {
    background-color: var(--mainColor);
    color: #fff;
}

.page-item.active .page-link {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    cursor: auto;
}

.page-item.disabled .page-link {
    background-color: #333;
    border-color: #333;
    color: #fff;
}

.accordion_style1 .card-header a[aria-expanded="false"]::after {
    content: "\f217";
}

.accordion_style1 .card-header a::after {
    content: "\f208";
    font-family: "Ionicons";
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    right: 15px;
    top: 13px;
    margin-left: 10px;
}

.card .list_brand .custome-checkbox {
    margin-left: 22px;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.rs_currency {
    font-size: 12px;
}

.out_of_stock_box_view {
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    margin-top: 20px;
    background-color: #ccc;
    color: #fff;
    padding: 11px;
    border-radius: 4px;
    box-shadow: 0 0 6px 1px rgba(202, 202, 202, .8);
    cursor: not-allowed;
}

.out_of_stock_box_view span {
    display: block;
    font-size: 13px;
    color: #333;
    text-align: center;
}

.brand_home.cl_logo img {
    width: 195px;
}

.spinnerBTN {
    font-size: 20px;
    position: relative;
    top: 0;
    left: 5px;
    display: inline-block;
    animation: spinner 2s linear infinite;
}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.btn:disabled {
    cursor: not-allowed;
}

.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;
    left: 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.sale {
    background: var(--orange);
}

.label-text.new {
    background: var(--green);
}

.no_found {
    padding: 70px 0;
    text-align: center;
}

.no_found i {
    font-size: 120px;
    color: #e6e6e6;
    display: block;
}

.no_found h5 {
    margin-top: 10px;
    font-size: 28px;
    color: #848484;
    font-weight: 600;
}

/*******phoneCountry*******/
.phoneInputScreen .phoneCountry {
    direction: ltr;
    border: 1px solid #ced4da !important;
    border-radius: 0.25rem
}

.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: 50px;
    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;
}

.phoneInputScreen .filter-option-inner-inner {
    line-height: 24px;
    font-size: 14px;
}

.bootstrap-select .dropdown-toggle .filter-option {
    position: relative;
    text-align: left;
}

.selectCountry .btn-light {
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
}

.input-group-btn .country_img {
    width: 33px;
    height: 18px;
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: var(--mainColor);
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: thin dotted #ced4da !important;
}

.bootstrap-select > .dropdown-toggle:after {
    margin-top: 0px;
    margin-left: -10px;
}

.phoneInputScreen .dropdown-menu {
    text-align: left;
}

.phoneInputScreen .bs-searchbox .form-control {
    height: 30px;
}

.pr_detail {
    padding: 0 30px;
}

.details-action-group {
    display: -ms-grid;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    position: relative;
}

.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 {
    border: none;
    outline: none;
    background: none;
}

.product-action button i {
    width: 35px;
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    color: #555;
    background: #eee;
    text-shadow: 2px 3px 8px 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-action button i:hover {
    color: var(--white);
    background: var(--mainColor);
}

.product-action input {
    outline: none;
    background: none;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 15px;
    margin: 0 5px;
    padding: 6px 0;
    border-radius: 6px;
    text-align: center;
}

.details-action-group a {
    padding: 10px 0;
    border-radius: 8px;
    color: #555;
    background: #eee;
    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 {
    background: var(--mainColor);
}

.pointer {
    cursor: pointer !important;
}

.details-add-group {
    margin-top: 30px;
}

.product-add {
    width: 100%;
    font-size: 15px;
    padding: 6px 0;
    border-radius: 6px;
    border: 2px solid var(--mainColor);
    text-align: center;
    text-transform: capitalize;
    color: var(--white);
    background: var(--mainColor);
    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:hover {
    color: var(--mainColor);
    background: var(--white);
}

.product-add:disabled {
    background: #999;
    border-color: #999;
    color: #fff;
}

.show_description p {
    margin-bottom: 0;
}

.header_list li a:hover,
.login_footer a:hover,
.breadcrumb a:hover,
.product-meta a:hover,
.product-name a:hover,
.form-note a:hover {
    color: var(--mainColor);
}

.heading_s3 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
}

.heading_s3::before {
    content: "";
    position: absolute;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--mainColor);
    bottom: 0;
    right: 0;
}

.heading_s3.text-center::before {
    margin: 0 auto;
}

.heading_s3 i {
    color: var(--mainColor);
    font-size: 45px;
    margin-bottom: 10px;
}

.heading_s3 h4 {
    font-weight: 700;
    margin: 10px 0;
    text-transform: capitalize;
    color: #292b2c;
}

.btn-continue-shopping, .btn-go-cart {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    color: #fff;
    transition: all 0.8s ease 0s;
    z-index: 1;
    margin-top: 10px;
    border-radius: 40px;
    padding: 8px 10px;
    font-size: 14px;
}

.btn-go-cart {
    border: 1px solid var(--mainColor);
    background-color: var(--mainColor);
}

.btn-go-cart:hover {
    color: var(--mainColor);
    background-color: var(--white);
}

.btn-continue-shopping {
    border: 1px solid #C5A87C;
    background-color: #C5A87C;
}

.btn-continue-shopping:hover {
    color: #C5A87C;
    background-color: var(--white);
}

.removeItem {
    width: 35px;
    height: 35px;
    padding: 0;
    line-height: 35px;
    background-color: #e74c3c;
    border: 1px solid #e74c3c;
    color: #fff;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.btn.removeItem i {
    margin-left: 0;
    line-height: 35px;
}

.removeItem:hover {
    background-color: transparent;
    color: #e74c3c;
}

.msg_qty_pro {
    display: inline-block;
    line-height: 15px;
    margin-top: 5px;
}

.btn-verify {
    padding: 5px 10px;
    border-radius: 8px;
    color: #555;
    background: #eee;
    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: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;;
    -webkit-transition: all 0.3s ease-in-out;;
    -moz-transition: all 0.3s ease-in-out;;
    -o-transition: all 0.3s ease-in-out;;
}

.btn-verify:hover {
    background: var(--mainColor);
    color: #fff !important;
}

/*** 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: var(--mainColor);
}

.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: var(--mainColor);
    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: var(--mainColor);
    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: var(--mainColor);
    margin-top: 12px;
    font-size: 14px;
}

.dashboard__user-billing-editaddress:hover {
    color: var(--mainColor);
}

.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;
    margin-bottom: 10px;
}

.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;
    position: relative;
}

.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: var(--mainColor);
}

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 .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 {
    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 , p.label-bg-transferred {
    background: #2ecc71;
}

p .label-bg-paid {
    background: #4E1E70;
}

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

p .label-bg-refund {
    background: #2c3e50;
}

p .label {
    display: inline-block;
    border-radius: 5px;
    font-size: 13px;
    padding: 2px 8px;
    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-left: 4px solid transparent;
    border-right: 0;
}

.dashboard__nav-item-link:hover, .dashboard__nav-item-link.active {
    background-color: var(--mainColor);
    border-color: var(--goldMainColor);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.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;
}

.dashboard__nav-item-link a i {
    font-size: 19px;
    margin-right: 18px;
}

::marker {
    content: '' !important;
}

.table-image img {
    width: 54px;
    height: 54px;
    border-radius: 5px;
    border: 1px solid #eeeeee;
}

.table-action a {
    width: 35px;
    height: 35px;
    padding: 0;
    line-height: 35px !important;
    color: #fff !important;
    border-radius: 0.25rem;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}

.table-action .cat-wish {
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor);
}

.table-action .cat-wish:hover {
    background-color: transparent;
    color: var(--mainColor) !important;
}

.table-action .trash {
    background-color: #e74c3c;
    border: 1px solid #e74c3c;
}

.table-action .trash:hover {
    background-color: transparent;
    color: #e74c3c !important;
}

.table-action .trash.btn i {
    margin-right: unset;
    margin-left: unset;
}

.dashboard .table td, .dashboard .table th {
    line-height: 22px;
}

.table td, .table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.dashboard tbody tr {
    border-bottom: 1px solid #e8e8e8;
}

.product-price del {
    color: #e3342f;
    margin-left: 10px;
}

.product-price span {
    white-space: nowrap;
    color: var(--mainColor);
    font-weight: 600;
}

.add-address-user a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
    border-radius: 50%;
    float: right;
    text-align: center;
    color: var(--white);
    background: var(--mainColor);
}


.add-address-user a i {
    margin-left: 11px;
}

/*********************************/
.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: var(--mainColor);
    -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: var(--mainColor);
    -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: var(--mainColor);
    -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%);
    right: 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: var(--mainColor);
    -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: right;
}

.add-address-user a i {
    margin-left: 0;
}

.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: "\f12c";
    font-family: "Ionicons";
    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: var(--mainColor);
    border-color: var(--mainColor);
}

.password-user .btn-security {
    color: var(--white);
    background: var(--mainColor);
    border-radius: 6px;
    border: 2px solid var(--mainColor);
    transition: all .3s ease-in-out;
}

.password-user .btn-security:hover {
    color: var(--mainColor);
    background: var(--white);
}

.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 #e8e8e8;
}

.account-title::before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--mainColor);
}

.account-title h4 {
    text-transform: capitalize;
    font-size: 20px;
    line-height: 28px;;
}

.payment-card {
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 25px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    position: relative;
    cursor: pointer;
}

.payment-card.active {
    background: #e0d0b8;
    border-color: #C5A87C;
}

.active {
    color: var(--mainColor);
}

.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 i {
    padding-right: 15px;
    font-size: 24px;
    line-height: 20px;
}

.payment-card h4 {
    font-size: 18px;
    margin-bottom: 0;
}

.account-card {
    border-radius: 8px;
    background: var(--white);
}

.overlayAddress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .8);
    z-index: 9;
    cursor: not-allowed;
}

.account-title button, .account-title a {
    border: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    padding: 5px 15px;
    text-transform: capitalize;
    color: var(--mainColor) !important;
    background: #C5A87C;
    text-shadow: 2px 3px 8px 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;
}

.account-title button:hover, .account-title a:hover {
    color: #C5A87C !important;
    background: var(--mainColor);
}

.profile-card {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    position: relative;
    cursor: pointer;
}

.profile-card.active {
    background: #e0d0b8;
    border-color: #C5A87C;
}

.account-content .row .col-md-12:last-of-type .profile-card {
    margin-bottom: 0;
}

.profile-card i {
    margin-right: 10px;
    color: var(--mainColor);
}

.profile-card p {
    margin-bottom: 10px;
}

.profile-card.active p {
    color: var(--mainColor);
}

.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%;
    right: 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 .edit {
    color: var(--mainColor);
}

.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;
    font-size: 20px;
    border: white;
}

.profile-card ul .edit:hover {
    color: var(--white);
    background: var(--mainColor);
}

.profile-card:hover ul {
    visibility: visible;
    opacity: 1;
}

.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;
}

.chekout-coupon {
    margin: 20px auto 5px;
    text-align: center;
}

.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 #e8e8e8;;
    -webkit-box-shadow: 0 7px 13px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 7px 13px 0 rgb(0 0 0 / 10%);
    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 input {
    width: 100%;
    height: 38px;
    padding: 0 15px;
    border: 0;
    font-size: 13px;
}

.btn-coupon {
    padding: 3px 14px;
    color: var(--white);
    background: var(--mainColor);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 6px;
    border: 2px solid var(--mainColor)
}

.btn-coupon:hover {
    color: var(--mainColor);
    background: var(--white);
}

.bill-card {
    position: relative;
    width: 100%;
    padding: 24px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.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;
}

.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;
}

.img-wrapper img {
    padding: 5px;
    border: 1px solid #eeeeee;
    display: inline-block;
    border-radius: 7px;
}

.bill-card__product-item-content .title-product {
    margin-left: 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%;
}

.font-body--md-400 {
    font-size: 14px;
    font-weight: 400;
}

.text-dark {
    color: #343a40 !important;
}

.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;
}

.ltr_bill_card {
    direction: ltr;
    display: inline-block;
}

.quantity-product {
    position: absolute;
    left: 80px;
    top: -26px;
}

.bill_card_price {
    position: absolute;
    right: 35px;
    top: -26px;
}

a.text-dark:focus, a.text-dark:hover {
    color: #121416 !important;
}

.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;
    margin-bottom: 16px;
}

.bill-card__memo-item span {
    color: #1a1a1a;
    text-transform: capitalize;
}

.submit-btn {
    color: var(--white);
    background: var(--mainColor);
    border: 2px solid var(--mainColor);
    padding: 10px 32px;
}

.submit-btn:hover {
    color: var(--mainColor);
    background: var(--white);
}

.modal_address .modal-dialog {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.modal_address .modal-content {
    border: none;
    background: none;
    border-radius: 0;
}

.modal_address .modal-close {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 1;
    width: 35px;
    height: 35px;
    font-size: 18px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    background: var(--white);
    -webkit-box-shadow: 0 5px 12px 0 rgb(0 0 0 / 20%);
    box-shadow: 0 5px 12px 0 rgb(0 0 0 / 20%);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.modal_address .modal-close:hover {
    color: var(--white);
    background: var(--mainColor);
}

.modal_address .modal-form {
    width: 400px;
    padding: 30px;
    border-radius: 8px;
    background: var(--white);
}

.modal_address .modal-form {
    width: 600px;
}

.modal_address .bootstrap-select.selectCountry .dropdown-menu li {
    width: 100%;
    text-align: left;
}

.modal_address .input-group-btn {
    width: 100%;
}

.modal_address .bootstrap-select .btn {
    padding: 8px 15px;
}

.modal_address .input-group-btn .bootstrap-select > .dropdown-toggle:after {
    right: 15px;
}

.dashboard__nav-item-link:hover a, .dashboard__nav-item-link.active a {
    color: #fff !important;
}

.breadcrumb.small-breadcrumb {
    justify-content: left;
    padding: 0.75rem 0;
}

.profile-card ul .trash:hover {
    color: var(--white);
    background: #e3342f;
}

.user_address_list .profile-card ul {
    visibility: visible;
    opacity: 1;
}

.profile-card ul .trash {
    color: #e3342f;
}

.btn-inlines {
    color: var(--white);
    background: var(--mainColor);
}

.btn-inlines:hover {
    color: var(--mainColor);
    background: var(--white);
}

.selection_box .dropdown-item {
    text-align: left;
}
.selection_box .btn {
    padding: 8px 15px;
}
.countryList .input-group-btn {
    width: 100%;
}

.countryList .input-group-btn .bootstrap-select > .dropdown-toggle:after {
    right: 15px;
}
.countryList .btn {
    padding: 12px 15px;
}
.add-trash .custom-btn, .add-info .custom-btn {
    position: absolute;
    left: 27px;
    top: 16px;
    padding: 5px 15px;
    font-size: 14px;
}
.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-trash .custom-btn .ion-trash-a {
    margin-top: -3px;
}
.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;
}
