/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Meddon&family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --theme_color: #dbad6a;
    --heading_color: #ffffff;
    --Very_dark_gray: #222;
    --white: #ffffff;
    --bg_color1: #242222;
    --bg_color2: #1B1B1B;
    --bg_color3: #141414;
    --body_color: #7f7d7d;
    --border_color1: #e2e2e2;
    --border_color2: #444444;
    --shadow1: 0 2px 10px rgb(0 0 0 / 60%);
}

::-moz-selection {
    color: #fff;
    background: #dbad6a;
}

::selection {
    color: #fff;
    background: #dbad6a;
}

/* preloader-start */
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 999999;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-container {
    position: relative;
    display: flex;
    height: 200px;
    width: 100%;
    justify-content: center;
    align-items: center;
    -webkit-box-reflect: below 0 linear-gradient(transparent, transparent, #0005);
}

.loader {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: animate 2s linear infinite;
}

.loader:nth-child(2),
.loader:nth-child(4) {
    filter: hue-rotate(290deg);
    animation-delay: -1s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader:nth-child(1)::before,
.loader:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to top, transparent, #dbad6a);
    background-size: 100px 180px;
    background-repeat: no-repeat;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
}

.loader i {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 20px;
    height: 20px;
    background: #dbad6a;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 100px #dbad6a, 0 0 100px #dbad6a, 0 0 30px #dbad6a, 0 0 40px #dbad6a, 0 0 50px #dbad6a, 0 0 60px #dbad6a, 0 0 70px #dbad6a, 0 0 80px #dbad6a, 0 0 90px #dbad6a, 0 0 100px #dbad6a;
}

.loader span {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: #000;
    border-radius: 50%;
    z-index: 1;
}

/* preloader-end */


/* scroll_up_start */
.scroll_up {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 99999;
}

.rtl .scroll_up {
    left: 50px;
    right: auto;
}

.scroll_up i {
    color: #fff;
    height: 40px;
    width: 40px;
    background: var(--theme_color);
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll_up i:hover {
    color: var(--theme_color);
    background: var(--white);
    border: 2px solid var(--theme_color);
}

/* scroll_up_end */

/* @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1260px;
    }
} */

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.8;
    color: var(--body_color);
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.form-control {
    color: var(--white) !important;
}

.form-select {
    color: var(--body_color);
}

.form-control, .form-select {
    border-radius: 4px;
    height: 45px;
    background-color: var(--bg_color3);
    border: 1px solid transparent;
}

textarea {
    height: initial !important;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border: 1px solid var(--theme_color) !important;
    background-color: var(--bg_color3);
}

.form-check label, .form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--theme_color);
    border-color: var(--theme_color);
}

.form-check-input:focus {
    border-color: var(--theme_color);
    box-shadow: none;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-select {
    background-image: url(../images/user_panel/profile/downward-arrow.png);
    background-repeat: no-repeat;
}

.input-group-text {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

p {
    margin-bottom: 10px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease-in-out !important;
}

a:hover {
    text-decoration: none;
    color: var(--theme_color) !important;
}

button {
    background: none;
    border: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    color: var(--heading_color);
}

h1 {
    font-size: 46px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: capitalize;
}

h2 {
    font-size: 36px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

h3 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
}

h4 {
    font-size: 24px;
    font-weight: 400;
}

h5 {
    font-size: 18px;
    margin-bottom: 0;
}

h6 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

figure {
    margin: 0;
}

.logo {
    max-width: 80px;
    min-width: 60px;
}

.footer_logo {
    max-width: 80px;
    min-width: 60px;
}

.cmn_scroll {
    max-height: 255px;
    overflow-y: scroll;
    padding-right: 5px;
    padding-top: 10px;
    transition: all .3s ease-in-out;
}

.cmn_scroll::-webkit-scrollbar {
    width: 3px;
    height: 0;
    /* background-color: var(--body_color); */
    background-color: transparent;
}

.cmn_scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    /* background: var(--theme_color); */
    background: #2b2929;
    visibility: hidden;
    opacity: 0;
}

.cmn_scroll:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: var(--theme_color);
}

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

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots span {
    background: var(--theme_color);
    width: 30px;
    height: 10px;
}

.owl-theme .owl-dots .owl-dot span {
    transition: all 0.5s ease-in-out;
}

/* ===========reuseble_style_start ===========*/
.animation1 {
    position: relative;
    animation-name: animation1;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes animation1 {
    from {
        top: 0px;
    }

    to {
        top: 20px;
    }
}

.shape1 {
    position: absolute;
    top: -240px;
    z-index: -1;
    left: 35px;
}

.shape2 {
    position: absolute;
    top: 160px;
    z-index: -1;
    width: 260px;
}

.shape3 {
    position: absolute;
    top: 240px;
    left: 365px;
    z-index: -1;
}

.shape4 {
    position: absolute;
    top: 285px;
    left: 385px;
    z-index: -1;
    max-width: 175px;
}

.section_header {
    margin-bottom: 25px;
}

.top-right-radius-0 {
    border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
    border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
    border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
    border-bottom-left-radius: 0 !important;
}

.highlight {
    color: var(--theme_color);
}

.bg_highlight {
    background: var(--theme_color) !important;
}

.cmn_btn {
    font-size: 12px;
    background: transparent;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--theme_color);
    display: inline-block;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
}

.cmn_btn:hover {
    background: var(--theme_color);
    color: var(--white) !important;
}

.cmn_btn2 {
    background: var(--Very_dark_gray);
    border: 1px solid transparent;
    padding: 10px 20px;
    transition: all 0.5s ease-in-out;
    color: var(--white) !important;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 5px;
    display: inline-block;
}

.cmn_btn2:hover {
    color: var(--white);
    border: 1px solid var(--Very_dark_gray);
}

.cmn_box .image_area {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: var(--theme_color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cmn_box i {
    font-size: 48px;
    color: var(--heading_color);
}

.login_btn {
    background: var(--theme_color);
    border: 1px solid transparent;
    padding: 7px 22px !important;
    border-radius: 3px;
    transition: all 0.5s ease-in-out;
    font-size: 18px;
    margin-left: 30px;
    color: var(--heading_color);
}

.login_btn:hover {
    color: var(--heading_color) !important;
    background: var(--black);
    border: 1px solid var(--theme_color);
}

.cmn_box2 i {
    margin-right: 15px;
    font-size: 40px;
    color: var(--theme_color);
}

.video_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video_play_btn i {
    color: var(--white);
    background: var(--theme_color);
    height: 75px;
    width: 75px;
    font-size: 25px;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section {
    padding: 100px 0;
}

.cmn_title {
    max-width: 600px;
}

.para_text {
    max-width: 500px;
}

.section_subtitle {
    font-size: 20px;
    color: var(--theme_color);
    font-weight: 700;
    max-width: 662px;
    position: relative;
    display: inline-block;
    font-family: 'Meddon', cursive;
    margin-bottom: 15px;
}

.social_area ul li a {
    width: 40px;
    height: 40px;
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--white); */
    color: var(--theme_color);
    margin-right: 14px;
    transition: all 0.3s ease-in;
    background: #2e2d2d;
}

.social_area ul li a:hover {
    background: var(--theme_color);
    color: var(--white) !important;
}

.star ul li i {
    color: var(--theme_color);

}

.star_area li .active {
    color: var(--theme_color);
}

.opacity {
    opacity: 0.5;
}

.badge {
    border-radius: 10px;
}

.text-bg-primary {
    color: rgba(13, 110, 253) !important;
    background-color: rgba(13, 110, 253, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
    border-radius: 10px;
}

.text-bg-secondary {
    color: rgba(108, 117, 125) !important;
    background-color: rgba(108, 117, 125, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
}

.text-bg-success {
    color: rgba(25, 135, 84) !important;
    background-color: rgba(25, 135, 84, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
}

.text-bg-danger {
    color: rgba(220, 53, 69) !important;
    background-color: rgba(220, 53, 69, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
}

.text-bg-warning {
    color: rgba(255, 193, 7) !important;
    background-color: rgba(255, 193, 7, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
}

.text-bg-info {
    color: rgba(13, 202, 240) !important;
    background-color: rgba(13, 202, 240, var(--bs-bg-opacity, .1)) !important;
    border: 1px solid;
}

hr.divider {
    margin-top: 50px;
    padding: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid #e0e0e0;
    color: #6e6d7a;
    text-align: center;
}

hr.divider:after {
    content: 'Or';
    display: inline-block;
    position: relative;
    top: -15px;
    padding: 0 16px;
    background: var(--bg_color2);
    color: var(--white);
}

/* reusable_style_end */

/* margin_top */
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

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

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

/* margin_bottom */
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

/* padding_top */
.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-150 {
    padding-top: 150px;
}

/* padding_botton */
.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

/* reuseble_style_end */


/* nav_area_start */
.menu_icon a {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--bg_color2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.menu_icon li {
    margin-right: 10px !important;
}

.menu_icon a:hover i {
    color: var(--theme_color);
}

.menu_icon a:hover .counter {
    color: var(--white);
    background: var(--theme_color);
}

.menu_icon .counter {
    font-size: 12px;
    position: absolute;
    height: 16px;
    width: 16px;
    border-radius: 5px;
    background: var(--theme_color);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -3px;
    transition: all .3s;
}

nav.active {
    background-color: var(--bg_color2);
    box-shadow: var(--shadow1);
    z-index: 9999;
}

nav.active .desktop_view {
    padding: 20px 0;
}

.desktop_view {
    padding: 50px 0;
}

.main_menu ul li {
    display: inline-block;
    position: relative;
    margin-right: 26px;
}

/* submenu */
.main_menu ul li ul.submenu {
    background: #171a21 none repeat scroll 0 0;
    border-top: 3px solid #4272d7;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 225px;
    left: 0;
    top: 110%;
    z-index: 2;
}

.main_menu ul li:hover ul.submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.main_menu ul li ul.submenu li {
    border-bottom: 2px solid #1e2128;
    display: block;
    margin: 0;
}

.main_menu ul li ul.submenu li:last-child {
    border: 0
}

.main_menu ul li ul.submenu li a {
    color: #fff;
    font-size: 12px;
    padding: 15px 20px;
}

.main_menu ul li ul.submenu li:hover > a {
    background: #4272d7
}

.main_menu ul li ul.submenu li ul.submenu {
    left: 100%;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

.main_menu ul li ul.submenu li:hover > ul.submenu {
    visibility: visible;
    opacity: 1
}

/* mega menu */
.main_menu ul li .mega-menu {
    background: var(--white);
    left: -250px;
    position: absolute;
    top: 110%;
    width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 2;
    padding: 20px;
    scale: 0;
    box-shadow: 0 0 5px rgb(12 10 10);
}

.main_menu ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    scale: 1;
    border-radius: 5px;
    background: var(--bg_color2);
}

.main_menu ul li .mega-menu ul {
    float: left;
    padding-right: 10px;
    width: 33.33%;
}

.main_menu ul li .mega-menu ul:last-child {
    padding-right: 0;
}

.main_menu ul li .mega-menu ul:last-child {
    padding-right: 0;
}

.main_menu ul li .mega-menu ul h5 {
    margin-bottom: 15px;
    padding: 0 15px;
    font-weight: 600;
}

.main_menu ul li .mega-menu ul li {
    display: block;
}

.main_menu ul li .mega-menu ul li a {
    color: var(--white);
    font-size: 16px;
    padding: 10px 15px !important;
}

.main_menu ul li .mega-menu ul li a:hover {
    background: var(--theme_color);
    color: var(--white) !important;
}

.main_menu ul li:hover a {
    color: var(--theme_color);
}

.mean-container .mean-nav {
    max-height: 360px;
    overflow-y: scroll;
    background: var(--bg_color2);
}

.mean-container a.meanmenu-reveal {
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg_color2);
}

.mean-container .mean-nav ul li a {
    padding: 12px 5% !important;
    border-top: none !important;
    text-transform: capitalize;
}

.mean-container .mean-nav ul li a.mean-expand {
    padding: 10px !important;
}

.mean-container .mean-nav ul li a.mean-expand {
    border: none !important;
    border-left: none !important;
    border-bottom: none !important;
    height: 26px;
    width: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 12px 0 !important;
    text-transform: capitalize;
}

.nav-link.active {
    color: var(--theme_color);
}

.nav-link.selected {
    color: var(--theme_color);
}


/* shopping_cart_start */
.shopping-cart {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

.shopping-cart:hover .cart-dropdown {
    top: 46px;
    transform: scale(1);
}

.shopping-cart .dropdown-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    margin-right: 10px;
    background: var(--bg_color2);
    border-radius: 5px;
}

.shopping-cart .dropdown-toggle:hover i {
    color: var(--theme_color);
}

.shopping-cart .dropdown-toggle i {
    color: var(--white);
    transition: all .3s ease-in-out;
}

.shopping-cart .dropdown-toggle::after {
    display: none;
}

.shopping-cart .dropdown-toggle .count {
    display: flex;
    background: var(--theme_color);
    min-width: 16px;
    height: 16px;
    border-radius: 5px;
    color: var(--white);
    position: absolute;
    top: -2px;
    right: -3px;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}

.shopping-cart .dropdown-box .menu-cart-top {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px 25px;
    border-bottom: 1px solid var(--border_color2);
}

.shopping-cart .dropdown-box .dropdown-item small {
    color: var(--body_color);
}

.shopping-cart .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 328px;
    padding-bottom: 62px;
}

.shopping-cart .dropdown-box::-webkit-scrollbar {
    width: 0px;
    height: 100%;
}

.shopping-cart .dropdown-box::-webkit-scrollbar-track {
    background: var(--ghostColor);
}

.shopping-cart .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

.shopping-cart .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.shopping-cart .cart-dropdown {
    background: var(--bg_color2);
    width: 390px;
    box-shadow: var(--shadow1);
    max-height: 430px;
    overflow: hidden;
    padding-bottom: 102px;
    padding-top: 0px;
    padding-left: 0;
    position: absolute;
    right: -90px;
    top: 70px;
    border-radius: 3px;
    /* visibility: hidden; */
    transition: 0.4s;
    /* opacity: 0; */
    z-index: 151;
    transform: scale(0);
}

.shopping-cart .cart-dropdown li {
    border-bottom: 1px solid var(--border_color2);
}

.shopping-cart .cart-dropdown li a {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    color: var(--Very_dark_gray);
    white-space: normal;
}

.shopping-cart .cart-dropdown li h6:active,
.shopping-ch5rt .cart-dropdown li h6:focus,
.shopping-cart .cart-dropdown li h6:hover {
    color: var(--theme_color) !important;
}

.shopping-cart .cart-dropdown li a img {
    width: 100px;
    height: 70px;
    border-radius: 3px;
}

.shopping-cart .cart-dropdown li a .text {
    width: calc(100% - 100px);
    padding: 0 10px;
    position: relative;
}

.shopping-cart .cart-dropdown li a .close {
    color: var(--body_color);
    transition: 0.4s;
}

.shopping-cart .cart-dropdown li a .close:hover {
    color: var(--theme_color);
}

.shopping-cart .cart-dropdown .cart-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: var(--bg_color2);
}

.shopping-cart .cart-dropdown .cart-bottom p {
    margin-bottom: 0;
    padding: 20px 30px;
    background: var(--bg_color3);
    color: var(--white);
}

.shopping-cart .cart-dropdown .cart-bottom .cmn_btn {
    width: 120px;
    height: 40px;
}

.shopping-cart .cart-dropdown .cart-bottom .btn_area {
    padding: 30px 25px;
}

.rtl .shopping-cart .cart-dropdown {
    left: -138px;
    right: auto;
}


.rtl .navbar .dropdown .dropdown-menu {
    text-align: right;
}

.rtl .navbar .shopping-cart .cart-dropdown li a .text .close {
    right: auto;
    left: 0;
}

.rtl .navbar .shopping-cart .cart-dropdown {
    right: auto;
    left: 0;
}

.rtl .navbar .shopping-cart .cart-dropdown .cart-bottom p span {
    float: left;
}

.rtl .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -60px;
}

.rtl .navbar .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 5px;
}

@media (max-width: 575px) {
    .shopping-cart .cart-dropdown {
        width: 290px;
        right: -150px;
    }

    .shopping-cart .cart-dropdown li a {
        padding: 15px;
    }

    .shopping-cart .cart-dropdown .cart-bottom .btn_area {
        padding: 15px;
    }
}

/* shopping_cart_end */
/* nav_area_end */


/* Hero_area_start */

.hero_area h1 {
    color: var(--white);
    text-transform: capitalize;
}

.hero_area h3 {
    color: var(--white);
    font-weight: 500;
    text-transform: capitalize
}

.hero_area .image_area img {
    max-width: 450px;
    margin: auto;
}

.hero_area .owl-nav button span {
    background: transparent;
}

.skitter .box_clone {
    width: 100% !important;
}

/* .hero_area .container_skitter, */
.hero_area .skitter {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 800px;
}

.hero_area .image_main,
.hero_area .image {
    height: 100% !important;
}

.hero_area .skitter.with-dots {
    margin-bottom: 0;
}

.hero_area .label_skitter .text-box {
    padding: 200px 0 200px 0;
    max-width: 500px;
}

.hero_area .label_skitter .text-box p {
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 50px;
}

.hero_area .label_skitter .text-box h1 {
    font-size: 60px;
}

.rtl .hero_area .skitter .info_slide_dots {
    right: auto !important;
    left: 0 !important;
    transform: translate(100px, -50%) !important;
}

/* Hero_area_end */


/* trendy_products_area_start */
.trendy_products_area {
    background: var(--bg_color3);
}

.product_box {
    position: relative;
}

.product_box:hover.product_box .image_area .img1 {
    visibility: hidden;
    opacity: 0;
}

.product_box:hover.product_box .image_area .img2 {
    visibility: visible;
    opacity: 1;
}

.product_box:hover.product_box .discount_percent {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.product_box:hover .product_content {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50px);
}

/* .product_box:hover.product_box .text_area{
    visibility: hidden;
    opacity: 0;
} */
.product_action_btn a {
    background: var(--bg_color3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: var(--white);
}

.product_box .image_area {
    border-radius: 4px;
    background: var(--bg_color2);
}

.product_box .image_area .img1 {
    transition: all .3s ease-in-out 0s;
}

.product_box .image_area .img2 {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out 0s;
}

.product_box .text_area {
    transition: all .3s ease-in-out 0s;
    padding: 0 5px;
}

.new_price {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.old_price {
    font-size: 14px;
    text-decoration: line-through;
}

.carousel_area2 button {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
}

.carousel_area2 .owl-nav button:hover {
    background: transparent;
}

.owl-nav button span {
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme_color);
    font-size: 35px;
    cursor: pointer;
    color: var(--theme_color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 5px;
}

.owl-nav button span:hover {
    background: var(--theme_color);
    color: var(--white);
}

.carousel_area2 .owl-nav .owl-prev {
    left: 200px;
    position: absolute;
}

.carousel_area2 .owl-nav .owl-next {
    right: 160px;
    position: absolute;
}

.discount_percent {
    position: absolute;
    padding: 0px 16px;
    background: var(--bg_color2);
    color: var(--white);
    border-radius: 15px;
    font-size: 12px;
    right: 15px;
    top: 15px;
    transition: all 0.3s ease-in-out 0s;
    border: 1px solid var(--theme_color);
    font-weight: 500;
}

.product_action_btn {
    margin-bottom: 30px;
}

.product_content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-in-out 0s;
}

.product_action_btn .cart_btn {
    background: var(--bg_color3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: var(--white);
}

.product_action_btn a:hover {
    background: var(--theme_color);
    color: var(--white) !important;
}

.product_action_btn a:not(:last-child) {
    margin-right: 15px;
}

.cart_btn {
    padding: 4px 12px;
    border: 1px solid var(--theme_color);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.cart_btn:hover {
    background: var(--theme_color);
    color: var(--white) !important;
}


/* trendy_products_area_end */

/* deal_outlet_area_start */
.deal_outlet_box1 {
    position: relative;
    background: url(../images/deal_outlet/2.jpg);
    background-position: center center;
    background-size: cover;
}

.deal_outlet_box2 {
    position: relative;
    background: url(../images/deal_outlet/5.jpg);
    background-position: center center;
    background-size: cover;
}

.deal_outlet_box::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0) 31%, rgba(255, 255, 255, 0) 100%);
    left: 0;
    top: 0;
}

.deal_outlet_box .deal_product_content {
    z-index: 2;
    position: relative;
    margin: 0;
    padding: 36px 40px;
    color: var(--white);
}

.deal_outlet_box .deal_product_content h4 a {
    color: var(--theme_color);
}

.deal_outlet_box .deal_product_content h4 a:hover {
    color: var(--white) !important;
}

.deal_outlet_box .deal_product_content .para_text {
    max-width: 450px;
}

.deal_outlet_area {
    background: var(--bg_color2);
}

.single-coundown {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
}

.single-coundown h5 {
    background: var(--bg_color2);
    padding: 10px;

}

.single-coundown span {
    font-size: 12px;

}

/* deal_outlet_area_end */

/* company_policy_area_start */
.company_policy_area {
    background: var(--bg_color3);
}

.company_policy_box {
    background: var(--bg_color2);
    padding: 20px 10px;
    align-items: center;
    display: flex;
}

.company_policy_box .content_area h5 {
    margin-bottom: 8px;
}

.company_policy_box .icon_area i {
    font-size: 35px;
    color: var(--theme_color);
    margin-right: 20px;
}

/* company_policy_area_end */

/* category_area_start */
.category_area {
    background: url(../images/category/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.category_box .category_thum {
    position: relative;
}

.category_box .category_thum::after {
    position: absolute;
    content: "";
    background: rgb(0 0 0 / 70%);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

.category_box .category_thum img {
    transition: all .3s ease-in-out;
}

.category_box:hover .category_thum img {
    transform: scale(1.02);
}

.category_box:hover .category_title {
    background: var(--theme_color);
}

.category_box .cmn_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* category_area_end */


/* gallery_area_start */
.gallery_area {
    background: var(--bg_color3);
}

.nav-pills .nav-link {
    border: 2px solid transparent;
    border-radius: 50px;
    margin: 5px 10px;
    padding: 5px 30px !important;
    font-weight: 500;
    color: var(--theme_color);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background: transparent;
    border: 2px solid var(--theme_color);
}

/* gallery_area_end */

/* deal_section_area_start */
.deal_section_area {
    background: url(../images/category/bg-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.deal_section_area .product_box {
    background: var(--bg_color3);
}

.deal_section_area .product_box:hover.product_box .image_area .img1 {
    visibility: visible;
    opacity: 1;
}

.deal_section_area .product_box .image_area {
    background: var(--bg_color3);
}

.deal_product_content {
    padding: 0 15px 0 30px;
    margin: 30px 0;
}

.cmn_carousel_nav .owl-nav button.owl-prev span {
    position: absolute;
    left: calc(0px - 18px);
    top: 50%;
    transform: translateY(-50%);
}

.cmn_carousel_nav .owl-nav button.owl-next span {
    position: absolute;
    right: calc(0px - 18px);
    top: 50%;
    transform: translateY(-50%);
}

/* deal_section_area_end */


/* best_saller_area_start */
.best_saller_area {
    background: var(--bg_color3);
}

.owl-theme .owl-dots {
    margin-top: 50px !important;
}

.carousel_area5 .owl-dots {
    margin-top: -20px !important;
}

/* best_saller_area_end */


/* about_area_start */
.about_area {
    background: var(--bg_color3);
}

.about_area .section_right .image_area img {
    border-radius: 5px;
}

/* about_area_end */


/* why_choose_use_start */
.why_choose_us_area {
    background: var(--bg_color2);
}

.why_choose_us_area .section_header {
    text-align: start;
}

.why_choose_us_area .image_area img {
    border-radius: 5px;
}

.why_choose_us_area .single_item:last-child {
    margin-bottom: 0;
}

.number {
    background: var(--theme_color);
    color: var(--white);
    min-width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    font-weight: 700;
    border-radius: 4px;
}

/* why_choose_use_end */

/* faq_area_start */
.faq_area {
    background: var(--bg_color2);
}

.faq_area .accordion-button {
    color: var(--white);
    font-weight: 400;
    font-size: 18px;
    background: var(--bg_color3);
    border-radius: 0 !important;
}

.faq_area .accordion-button:focus {
    box-shadow: none;
    border-radius: 0;
}

.faq_area .accordion-button:not(.collapsed) {
    box-shadow: none;
    border-radius: 0;
    color: var(--theme_color);
}

.faq_area .accordion-body {
    background: var(--bg_color2);
    color: var(--white);
}

.accordion-item:last-of-type .accordion-collapse {
    border-radius: 0;
}

.accordion-item {
    border: none;
}

.accordion_title {
    background: var(--white);
    width: 100%;
    border: none;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: start;
    padding: 20px;
    font-size: 18px;
    color: var(--heading_color);
    font-weight: 700;
    text-align: start;
}

.accordion-button::after {
    background: url(../images/accordion/plus.png);
    width: 35px;
    height: 35px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

.accordion-button:not(.collapsed)::after {
    background: url(../images/accordion/minus2.png);
    width: 35px;
    height: 35px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
}

/* faq_area_end */

/* blog_area_start */
.blog_area {
    background: var(--bg_color3);
}

.blog_content {
    box-shadow: var(--shadow1);
    padding: 50px 15px 20px;
    position: relative;
    margin: -40px 20px 0;
    z-index: 1;
    background: var(--bg_color2);
}

.blog_content h4 {
    color: var(--white);
}

.blog_content p:first-child {
    color: var(--white);
}

.blog_content .date .month {
    text-transform: uppercase;
}

.blog_box {
    position: relative;
    height: 100%;
    background: var(--bg_color3);
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.blog_box:hover {
    box-shadow: none;
}

.blog_box .thum_inner {
    position: relative;
}

.thum_inner .date {
    position: absolute;
}

.blog_box img {
    height: 270px;
    width: 100%;
}

.blog_box .date {
    position: absolute;
    width: 70px;
    height: 65px;
    background: var(--theme_color);
    top: -35px;
    left: 50%;
    text-align: center;
    padding: 5px;
    transform: translateX(-50%);
}

.blog_box .text_area h4 a {
    text-transform: capitalize;
}

.blog_box .btn_area a {
    font-size: 12px;
    font-weight: 400;
    color: var(--white);
}

/* blog_area_end */

/* newsletter_area */
.newsletter_area {
    background: var(--Very_dark_gray);
    border-bottom: 1px solid #3e3e3e;
}

.newsletter_area h3 {
    margin-bottom: 0;
    font-size: 30px;
    color: var(--white);
    text-transform: capitalize;
}

.subscribe_form {
    position: relative;
    width: 100%;
    height: 55px;
    border-radius: 50px;
}

.subscribe_form input {
    height: 100%;
    border-radius: 50px;
    padding: 0 200px 0 40px;
    font-size: 18px;
    width: 100%;
    outline: 0;
    border: 2px solid transparent;
    background: #2e2d2d;
    caret-color: var(--white);
    color: var(--white);
}

.subscribe_form input:focus {
    border: 2px solid var(--theme_color);
}

.subscribe_form button {
    background: var(--theme_color);
    color: var(--white);
    font-size: 18px;
    height: 100%;
    border: none;
    padding: 0 45px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    outline: 0;
}

.subscribe_form button:hover {
    background: var(--linear_bg3);
}

/* newsletter_end */

/* footer_area_start */
.footer_area {
    background: var(--Very_dark_gray);
}

.footer_widget p {
    color: var(--white);
    font-weight: 300;
}

.footer_widget ul li {
    line-height: 2.5;
}

.footer_widget a {
    transition: all 0.3s ease;
    color: var(--white);
    font-weight: 300;
}

.footer_widget a:hover {
    color: var(--theme_color) !important;
}

.footer_area .footer_widget h5 {
    position: relative;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 300;
    text-transform: capitalize;
    font-size: 20px;
}

.footer_area .footer_widget h5::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 50px;
    background: var(--theme_color);
    bottom: -12px;
    left: 0;
}

.footer_area form input {
    border-radius: 0;
    border: none;
    width: 100%;
    margin-bottom: 15px;
    height: 50px;
}

.footer_area .cmn_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    border-radius: 0;
    height: 50px;
}

/* footer_area_end */

/* copy_right_area */
.copy_right_area {
    padding: 25px 0;
    background: var(--Very_dark_gray);
    border-top: 1px solid var(--border_color2);
}

.copy_right_area p {
    margin-bottom: 0;
    font-weight: 300;
    color: var(--white);
    opacity: 0.8;
}

.language a {
    color: var(--white);
}

.language a:not(:last-child) {
    margin-right: 10px;
}

/* copy_right_end */

/* banner_area_start */
.banner_area h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.breadcrumb_area {
    color: var(--white);
}

.breadcrumb_area .breadcrumb-item.active {
    color: var(--theme_color);
}

/* .breadcrumb-item+.breadcrumb-item {
    color: var(--white);

} */
.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: var(--white);
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

/* banner_area_END */


/* shipment_details_page_start */
/* ride_details_area_start */
.progress_box .number {
    width: 60px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 22px;
    background: var(--body_color);
}

/* ride_details_area_end */
/* cmn_form_area_start */
.cmn_form .section_header {
    background: var(--theme_color);
    padding: 10px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading_color);
}

.cmn_form .form-select,
.cmn_form .form-control {
    height: 50px;
    border-radius: 5px;
}

.cmn_form .form-select:focus {
    box-shadow: none;
}

.cmn_form .form-select:focus,
.cmn_form .form-control:focus,
.cmn_form .form-select:hover,
.cmn_form .form-control:hover {
    border-color: var(--theme_color);
}

.costing_box {
    padding: 20px 0px;
    position: relative;
    color: var(--white);
    background: var(--bg_color1);
    border-radius: 5px;
}

.costing_box p {
    color: var(--white);
}

.costing_box:last-child span {
    font-size: 25px;
    font-weight: 600;
}

.costing_box i {
    font-size: 35px;
    margin-bottom: 10px;
}

/* cmn_form_area_end */

/* prev_next_btn_area_start */
.prev_next_btn_area .cmn_btn {
    width: 150px;
    display: flex;
    justify-content: center;
}

/* prev_next_btn_area_end */

/* cmn_form_form2_area_start */

.cmn_form.form2 .form-check-input:checked {
    background-color: var(--theme_color);
    border-color: var(--theme_color);
}

.cmn_form.form2 .form-check-input {
    border-color: var(--theme_color);
}

.cmn_form.form2 .form-check-input:focus {
    border-color: var(--theme_color);
    box-shadow: none;
}

/* cmn_form_form2_area_end */
/* shipment_success_icon_section_start */
.shipment_success_icon_section .icon_area i {
    font-size: 150px;
    color: var(--lime_green);
}

/* shipment_success_icon_section_end */
/* shipment_details_page_end */

/* BLOG_DETAILS_PAGE_START */
.blog_details_area {
    background: var(--bg_color3);
}

.blog_details .thum_inner {
    position: relative;
}

.blog_details .date {
    position: absolute;
    width: 80px;
    height: 90px;
    background: var(--theme_color);
    top: 10px;
    left: 10px;
    text-align: center;
    padding: 15px 5px 15px 5px;
    color: var(--white);
}

.blog_details .blog_image img {
    width: 100%;
    max-height: 450px;
}

.blog_details_area .blog_header h3 {
    margin-bottom: 0;
    font-weight: 500;
}

.blog_details_area .blog_header span {
    margin-right: 15px;
}

.blog_details_area .blog_header span i {
    margin-right: 10px;
    color: var(--theme_color);
}

.blog_details .date .month {
    text-transform: uppercase;
}

.blog_sidebar .section_header {
    margin-bottom: 30px;
}

.blog_sidebar {
    /* padding: 25px; */
    background: var(--bg_color3);
}

.blog_sidebar .search_area {
    padding: 0;
    margin-bottom: 60px;
    border-radius: 0;
}

.blog_sidebar .form-control {
    background-color: var(--bg_color2);
    border-radius: 0;
}

.blog_sidebar .input-group-text {
    font-size: 18px;
    color: var(--theme_color);
    width: 50px;
    border: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    background: var(--bg_color2);
}

.blog_sidebar input[type="text"]:focus {
    border: none;
}

.blog_sidebar .blog_widget_area {
    background-color: var(--bg_color2);
    margin: 20px 0;
    padding: 20px;
}

.blog_sidebar .blog_widget_area ul li:hover .blog_title {
    color: var(--theme_color);
}

.blog_date {
    /* transition: all 0.3s ease-in-out; */
    color: var(--theme_color);
}

.blog_sidebar .blog_widget_image img {
    width: 100%;
    height: 85px;
}

.blog_details_area .blog_widget_image {
    width: 30%;
}

.blog_details_area .blog_widget_content {
    margin-left: 10px;
    width: 70%;
}

.blog_details_area .blog_widget_content .blog_title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    transition: all ease 0.3s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    color: var(--white);
}

.categories_area {
    padding: 20px;
    background: var(--bg_color2);
}

.blog_details_area .categories_area li a {
    display: flex;
    justify-content: space-between;
}

.blog_details_area .categories_area li a:hover {
    color: var(--theme_color) !important;
}

/* pagination_area */
.pagination_area .page-link:focus {
    background-color: var(--theme_color);
    outline: 0;
    box-shadow: none;
}

.pagination_area ul li a {
    width: 40px;
    height: 40px;
    border-radius: 0 !important;
    color: var(--theme_color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border: none;
    background: var(--bg_color2);
    box-shadow: none;
}

.pagination_area2 ul li a {
    width: 90px;
    border-radius: 0 !important;
    color: var(--theme_color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    border: none;
    background: var(--bg_color3);
}

.pagination_area ul li i {
    display: flex;
}

.pagination_area ul li a:hover {
    background-color: var(--theme_color);
    color: var(--white) !important;
}

.pagination_area2 ul li a:hover {
    background-color: var(--theme_color);
    color: var(--white) !important;
}

.pagination_area ul .active a {
    background-color: var(--theme_color);
    color: var(--white);
    border-color: var(--theme_color);
}

/* BLOG_DETAILS_PAGE_END */

/* CONTACT_PAGE_START */
.contact_page {
    background: var(--bg_color2);
}

.contact_message_area {
    padding: 20px 0;
    border-radius: 10px;
}

.contact_message_area .form-control {
    border: 0;
    border-radius: 0;
    border: 1px solid transparent;
}

.map_area {
    margin-bottom: -15px;
}

/* contact_erea_end */
/* CONTACT_PAGE_END */

/* LOGIN_SIGNUP_PAGE_START */
.login_signup_page {
    background: var(--bg_color2);
}

.login_signup_logo {
    max-width: 250px;
}

.login_signup_page .form-control {
    border: none;
    border: 1px solid transparent;
    border-radius: 0;
}

.login_signup_page .form-check-input:checked {
    background-color: var(--theme_color);
    border-color: var(--theme_color);
}

.login_signup_page .form-check-input {
    border-color: var(--theme_color);
}

.login_signup_page .form-check-input:focus {
    border-color: var(--theme_color);
    box-shadow: none;
}

.login_signup_page .custom_btn {
    padding: 10px 20px !important;
}

.login_signup_page .form-select {
    border: none;
    background: var(--bg_color3);
    border: 1px solid transparent;
    border-radius: 0;
}

.login_signup_form .social-btn {
    border: none;
    background: var(--bg_color1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login_signup_form .social-btn img {
    width: 16px;
    margin-right: 10px;
}

/* LOGIN_SIGNUP_PAGE_END */

/* product_area_start */
.product_area {
    background: var(--bg_color3);
}

.product_sidebar .search_area .form-control, .search_area .input-group-text {
    border-radius: 0;
}

.product_sidebar .search_area .form-control {
    background: var(--bg_color2);
}

.product_sidebar .search_area .input-group-text {
    font-size: 18px;
    color: var(--theme_color);
    background: var(--bg_color2);
    width: 50px;
    border: none;
    display: flex;
    justify-content: center;
}

.product_sidebar .search_area .input-group-text:hover {
    color: var(--white) !important;
}

.product_sidebar .section_header {
    padding: 10px 15px;
    margin-bottom: 0;
}

.product_sidebar .section_inner {
    padding: 10px 15px;
}

.price_filter_area {
    background: var(--bg_color2);
    padding: 5px;
}

.price_filter_area .range_area .irs--flat .irs-bar {
    height: 3px;
    background-color: var(--theme_color);
}

.price_filter_area .range_area .irs--flat .irs-line {
    height: 3px;
}

.price_filter_area .range_area .irs--flat .irs-from, .irs--flat .irs-to, .irs--flat .irs-single {
    background: var(--theme_color);
}

.price_filter_area .range_area .irs--flat .irs-from:before, .irs--flat .irs-to:before, .irs--flat .irs-single:before {
    border-top-color: var(--theme_color);
}

.price_filter_area .range_area .irs--flat .irs-handle > i:first-child {
    width: 12px;
    height: 12px;
    border-radius: 7px;
    background-color: var(--white);
    border: 4px solid var(--theme_color);
}

.price_filter_area .range_area .irs--flat .irs-handle > i:first-child {
    top: -3px;
    left: 0;
    margin-left: 0;
}

.irs--flat .irs-min, .irs--flat .irs-max {
    display: none;
}

.irs--flat .irs-line {
    background-color: #7f7d7d;
}

.categories_list li a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.categories_list .form-check {
    margin: 10px 0;
}

.categories_list .form-check-input {
    cursor: pointer;
    border-radius: 5px;
}

.categories_list .form-check-label {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.Product_header .form-select {
    height: 45px;
    border-radius: 0;
    background-color: var(--bg_color2);
    color: var(--white);
}

/* product_area_end */

/* PRODUCT_DETAILS_PAGE_START */
/* product_details_area_start */
.product_details_area {
    background: var(--bg_color3);
}

.exzoom_img_box ul li {
    background: var(--bg_color2);
}

.product_details_content .review {
    margin-left: 10px;
}

.product_details_content .form-select {
    width: auto;
    height: 40px;
}

.product_details_content .product_action_btn .cart_btn {
    width: auto;
    height: auto;
}

.exzoom .exzoom_btn a {
    background: none;
    border: none;
    font-size: 50px;
    margin: 0 -10px;
    top: -70px;
    color: var(--white);
}

.exzoom .exzoom_btn a:hover {
    color: var(--theme_color);
    background: none;

}

.exzoom .exzoom_nav .exzoom_nav_inner span {
    border: none;
}

.exzoom .exzoom_nav .exzoom_nav_inner span.current {
    border: 1px solid var(--theme_color);
}

.exzoom .exzoom_nav {
    display: flex;
    justify-content: center;
}

.exzoom .exzoom_nav .exzoom_nav_inner {
    position: initial;
}

.product_description_tab_area .pagination_area ul li a {
    width: 70px;
}

/* product_details_area_end */

/* product_description_tab_start */
.product_description_tab_area {
    background: var(--bg_color2);
}

.product_description_tab_area .nav-tabs {
    border-bottom: 1px solid var(--border_color2);
}

.product_description_tab_area .tabs_area ul li .nav-link {
    width: 153px;
    height: 54px;
    color: var(--white);
    background-color: var(--bg_color2);
    border: none;
    font-weight: 500;
    border-radius: 0;
    padding: initial !important;
    border-bottom: 1px solid var(--border_color2) !important;
}

.product_description_tab_area .tabs_area ul li .nav-link.active {
    color: var(--theme_color);
    border-bottom: 1px solid var(--theme_color) !important;
    background: var(--bg_color3);
}

.product_description_tab_area .tabs_area .description_area {
    padding: 30px;
}

.comment_area .comment {
    padding: 0 30px;
}

.comment_area .comment2 {
    padding: 40px 30px;
}

.comment_area .comment .image_area img {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
}

.comment_area .comment .text_area {
    margin-left: 30px;
}

.reply_box .form-control {
    height: initial;
}

.comment_area .comment .text_area .reply_box .form-control {
    background-color: var(--bg_color3);
    border: 1px solid transparent;
}

.comment_area .comment .text_area .reply_box .form-control:focus {
    border-color: var(--theme_color);
}

.tabs_area .comment_area .comment .text_area .common_btn {
    padding: 20px 35px;
}

.comment_area .comment .text_area .common_btn {
    padding: 17px 35px;
}

.start_review_area {
    padding: 40px 30px;
}

.start_review_area .raitng_review .review {
    margin-right: 10px;
}

.form_area {
    padding: 40px 30px;
    background: var(--bg_color3);
}

.form_area .form-label {
    color: var(--white);
}

.form_area .form-control {
    border-radius: 0;
    border: 1px solid transparent;
    padding: 12px 15px;
    height: initial;
    background: var(--bg_color2);
}

.form_area .form-control:focus {
    border-color: var(--theme_color);
}

.form_area .common_btn {
    padding: 17px 35px;
}

.single_description ul {
    margin-top: 10px;
    padding-left: 15px;
    list-style: disc;
}

/* product_description_tab_end */
/* PRODUCT_DETAILS_PAGE_END */

/* CART_PAGE_START */
.cart_area {
    background: var(--bg_color2);
}

.cart_table .table thead {
    background: var(--bg_color3);
}

tbody, td, tfoot, th, thead, tr {
    border: none !important;
    /* border-bottom: 1px solid var(--border_color2) !important; */
    color: var(--white);
    font-weight: 500;
}

.cart_table .product_thum {
    max-width: 120px;
}

.cart_table .product_quantity {
    margin-right: 0px;
    margin-top: 0px;
}

.cart_table tbody tr {
    border-bottom: 1px solid var(--border_color2) !important;
}

.cart_table tbody tr td {
    padding-right: 20px;
    color: var(--white);
}

.cart_sidebar .sidebar_title {
    border-bottom: 1px solid var(--border_color2);
    padding: 10px 0;
}

.cart_sidebar .cart_subtotal, .cart_total {
    padding: 10px;
    border-bottom: 1px solid var(--border_color2);
}

.border_bottom {
    border-bottom: 1px solid var(--border_color2);
}

.cart_sidebar .continue_shipping {
    border: 1px solid var(--theme_color);
    background: var(--theme_color);
}

.cart_sidebar .continue_shipping:hover {
    border: 1px solid var(--theme_color);
    color: var(--theme_color) !important;
    background: var(--bg_color2);
}

.cart_sidebar .proceed_to_checkout {
    border: 1px solid var(--theme_color);
    background: var(--theme_color);
}

.cart_sidebar .proceed_to_checkout:hover {
    border: 1px solid var(--theme_color);
    color: var(--theme_color) !important;
    background: var(--bg_color2);
}


.cart_sidebar .form-select, .cart_sidebar .form-control {
    border-radius: 0;
}

/* CART_PAGE_END */

/* CHECKOUT_PAGE_START */
.checkout_area {
    background: var(--bg_color2);
}

.checkout_area .form-control, .checkout_area .form-select {
    border-radius: 0;
}

.coupon_area .coupon_input .form-control {
    max-width: 350px;
    margin: auto;
}

.checkout_area .billing_information {
    background-color: var(--bg_color1);
    padding: 15px 30px 30px 30px;
}

.checkout_area .billing_list_area li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    color: var(--white);
}

.checkout_area .billing_list_area li:not(:last-child) {
    border-bottom: 1px solid var(--border_color2);
}

.checkout_area .billing_list_area .product_info li {
    border-bottom: 1px solid var(--border_color2);
}

.checkout_area .billing_form_area a {
    text-decoration: underline;
    font-weight: 500;
    color: var(--theme_color);
}

.checkout_area .payment-box h5 {
    text-transform: uppercase;
    margin-bottom: 30px;
}

.checkout_area .payment-box .btn-check + .btn-primary {
    background: var(--white);
    border: 2px solid var(--border_color1);
    border-radius: 5px;
    padding: 8px;
    color: #212529;
    position: relative;
    transition: 0.4s;
}

.checkout_area .payment-box .paymentCheck {
    background: var(--white);
    border: 2px solid var(--border_color1);
    border-radius: 5px;
    padding: 8px;
    color: #212529;
    position: relative;
    transition: 0.4s;
}

.checkout_area .payment-box .custom___check {
    position: absolute;
    width: 25px;
    padding: 0 3px;
    left: 0px;
    top: 6px;
    border-radius: 50%;
}

.checkout_area .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: 4px;
    top: 5px;
    opacity: 0;
    width: 18px;
}

.checkout_area .payment-box .btn-check + .btn-primary::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    top: 0;
    left: 0;
}

.checkout_area .payment-box label img {
    border-radius: 3px;
}

.checkout_area .payment-box .btn-check:checked + .btn-primary {
    background: var(--white) !important;
    border: 2px solid var(--theme_color);
}

.checkout_area .payment-box .btn-check:checked + .btn-primary .check {
    opacity: 1;
}

.checkout_area .payment-box .btn-check:checked + .btn-primary::after {
    background: none;
}

.checkout_area .payment-box .btn-check:focus + .btn-primary,
.checkout_area .payment-box .btn-primary:focus {
    color: var(--white);
    background-color: var(--white);
    border-color: var(--theme_color);
    box-shadow: 0 0 0 0rem rgba(49, 132, 253, 0.5);
}

.checkout_area .payment-box .payment-options {
    height: 260px;
    overflow-y: auto;
    overflow-x: hidden;
}

.order_summery {
    margin-top: 100px;
}

.rtl .checkout_area .side-bar .side-box ul li span {
    float: left;
}

.rtl .checkout_area .payment-box .btn-check + .btn-primary .check {
    position: absolute;
    left: auto;
    right: 15px;
    top: 15px;
}

/* CHECKOUT_PAGE_END */


/*============================== Responsive_area_start ============================*/

@media (max-width: 1399px) {
    .hero_area .skitter {
        min-height: 700px;
    }
}

@media (max-width: 1199px) {
    .hero_area .label_skitter .text-box h1 {
        font-size: 50px;
    }

    .company_policy_box .content_area h5 {
        font-size: 16px;
    }

    .category_box .cmn_btn {
        padding: 8px 10px;
    }
}

@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 18px;
    }

    .banner_area {
        padding: 200px 0 40px 0;
    }

    section {
        padding: 50px 0;
    }

    .section_subtitle {
        font-size: 16px;
    }

    .desktop_view {
        padding: 20px 0;
    }

    .carousel_area1 .owl-nav {
        display: none;
    }

    .header-area.fixed-top {
        position: relative;
    }

    .about_area .section_header {
        margin-bottom: 25px !important;
    }

    .checkout_area .billing_information {
        padding: 15px;
    }

}


@media (max-width: 767px) {
    h2 {
        font-size: 28px;
    }

    h5 {
        font-size: 16px;
    }

    .banner_area h3 {
        font-size: 30px;
    }

    .hero_area {
        text-align: center;
    }

    .hero_area .skitter {
        min-height: 600px;
    }

    .hero_area .label_skitter .text-box {
        padding: 200px 0 150px 0;
    }

    .about_area .image_area img {
        display: none;
    }

    .why_choose_us_area .image_area img {
        display: none;
    }

    .section_header.mb-50 {
        margin-bottom: 25px;
    }

    .subscribe_form {
        height: 45px;
    }

    .subscribe_form button {
        padding: 0 15px;
    }

    .subscribe_form input {
        padding: 0 120px 0 20px;
    }

    .single_item.mb-50 {
        margin-bottom: 20px;
    }

    .order_summery {
        margin-top: 0;
    }

    /* responsive_table */
    .table-responsive .table thead {
        display: none;
    }

    .table-responsive .table tbody tr {
        display: block;
    }

    .table-responsive .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 10px 15px;
    }

    .table-responsive .table tbody tr td::before {
        content: attr(data-label);
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        color: var(--black);
        font-weight: 500;
        text-transform: capitalize;
    }

    .table-responsive .table tbody > tr:nth-of-type(even) > * {
        --bs-table-accent-bg: var(--bgDark) !important;
    }

    /* responsive-table-end*/
}


@media (max-width: 575px) {
    .hero_area .label_skitter .text-box h1 {
        font-size: 40px;
    }

    .banner_area {
        padding: 150px 0 40px 0;
    }

    .comment_inner {
        flex-direction: column;
        align-items: center;
    }

    .reply_area {
        flex-direction: column;
        align-items: center;
    }

    .comment.comment2 {
        flex-direction: column;
        align-items: center;
    }

    .comment_area .comment {
        padding: 0;
    }

    .start_review_area {
        padding: 0;
        margin-top: 30px;
    }

    .about_area {
        text-align: center;
    }

    .cmn_box2 i {
        font-size: 35px;
    }

    .blog_details .date {
        width: 60px;
        height: 70px;
    }

    .why_choose_us_area .section_header {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .mean-container a.meanmenu-reveal {
        right: 7px !important;

    }

    .about_area .cmn_box2 {
        margin: 10px 0;
    }

    .prev_next_btn_area .cmn_btn {
        width: 125px;
    }

    .banner_area h3 {
        font-size: 25px;
    }


}

/*============================== Responsive_area_end ============================*/

/*============================== RTL_area_start ============================*/
.rtl {
    direction: rtl;
}

.rtl .deal_outlet_box::after {
    background: linear-gradient(to left, rgb(0, 0, 0) 31%, rgba(255, 255, 255, 0) 100%);
}

.rtl .cmn_box2 i {
    margin-left: 20px;
    margin-right: 0;
}

.rtl .number {
    margin-right: 0;
    margin-left: 25px;
}

.rtl .subscribe_form button {
    left: 0;
    right: auto;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.rtl .subscribe_form input {
    padding: 0 40px 0 200px;
}

.rtl .product_details_content .review {
    margin-right: 10px;
    margin-left: 0;
}

.rtl .product_details_content .form-check {
    padding-right: 1.5rem;
    padding-left: 0;
}

.rtl .product_action_btn a:not(:last-child) {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .comment_area .comment .text_area {
    margin-right: 30px;
    margin-left: 0;
}

.rtl .comment_area .comment .text_area h5 i {
    transform: rotate(180deg);
}

.rtl .start_review_area .raitng_review .review {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .login_signup_form .social-btn img {
    margin-right: 0;
    margin-left: 10px;
}


.rtl .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
}

.rtl .faq_area .accordion-button {
    text-align: right;
}

.rtl .blog_box .btn_area a i {
    transform: rotate(180deg);
}

.rtl .footer_area .footer_widget h5::after {
    right: 0;
}

.rtl .breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    transform: rotate(180deg);
}

.rtl .tracking_id_area .cmn_btn {
    left: 8px;
    right: auto;
}

.rtl .tracking_id_area .form-control {
    padding: 10px 20px 10px 175px;
}

.rtl .shipment_info_area .table_area {
    text-align: right !important;
}

.rtl .shipment_details_area ul:last-child {
    margin-left: 0;
    margin-right: 80px;
}

.rtl .form-check .form-check-input {
    float: right;
    margin-left: 10px;
}

.rtl .section_subtitle::before {
    left: 0;
    right: 0;
    margin: auto;
}

.rtl .contact_page .form_title {
    text-align: right !important;
}

.rtl .blog_details .date {
    right: 10px;
    left: auto;
}

.rtl .blog_details_area .blog_header span i {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .pagination_area ul li i {
    transform: rotate(180deg);
}

.rtl .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0;
}

.rtl .blog_details_area .blog_widget_content {
    margin-left: 0;
    margin-right: 10px;
}

@media (max-width: 991px) {
    .rtl .mean-container a.meanmenu-reveal {
        left: 15px !important;
        right: auto !important;
    }

}

@media (max-width: 767px) {
    .rtl .subscribe_form input {
        padding: 0 20px 0 120px;
    }

}


/*============================== RTL_area_end ==============================*/

/*=================================== user_panel_start ================================*/
.dashboard-wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    overflow: hidden;
}

#sidebar {
    background: var(--bg_color2);
    box-shadow: var(--shadow1);
    position: fixed;
    width: 300px;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1031;
    transition: 0.4s;
}

#sidebar.active {
    left: -310px;
}

#sidebar::-webkit-scrollbar {
    width: 5px;
    height: 100%;
}

#sidebar::-webkit-scrollbar-track {
    background: var(--white);
}

#sidebar::-webkit-scrollbar-thumb {
    background: var(--borderColor);
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

#sidebar .sidebar-top {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border_color2);
    position: relative;
}

#sidebar .sidebar-top .navbar-brand img {
    width: 80px;
}

#sidebar .sidebar-top .sidebar-toggler {
    position: absolute;
    right: 20px;
    top: 15px;
    background: var(--theme_color);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebar .sidebar-top .sidebar-toggler i {
    font-size: 16px;
}

#sidebar .sidebar-top .sidebar-toggler:focus {
    box-shadow: 0 0 0 0rem;
}

#sidebar .search_area {
    margin: 40px 0 20px 0;
    padding: 0 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#sidebar .search_area .form-control {
    position: relative;
    height: 50px;
    border-radius: 5px;
    background: var(--bg_color3);
    padding: 10px 30px 10px 10px;
}

#sidebar .search_area .form-control:focus {
    border: 2px solid var(--theme_color);
}

#sidebar .search_area .icon_area {
    position: absolute;
    right: 30px;
}

#sidebar ul.main {
    margin-top: 20px;
}

#sidebar ul.main::-webkit-scrollbar {
    width: 5px;
    height: 100%;
}

#sidebar ul.main::-webkit-scrollbar-track {
    background: var(--white);
}

#sidebar ul.main::-webkit-scrollbar-thumb {
    background: var(--border_color1);
    border-radius: 3px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

#sidebar ul.main::-webkit-scrollbar-thumb:hover {
    background: var(--theme_color);
}

#sidebar ul {
    list-style: none;
    padding-left: 0;
    padding: 20px;
    padding-top: 0;
    height: 100%;
    overflow-y: auto;
}

#sidebar ul li {
    margin-bottom: 5px;
}

#sidebar ul li a {
    position: relative;
    color: var(--heading_color);
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: block;
    border-radius: 50px;
    padding: 10px 15px 10px 20px;
    font-size: 16px;
    transition: 0.4s;
}

#sidebar ul li .selected {
    color: var(--theme_color);
}

#sidebar ul li a i {
    width: 30px;
    text-align: left;
    position: relative;
    top: 0;
    transition: 0.4s;
}

#sidebar ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 80%;
    border-top-right-radius: 10px;
    background: var(--theme_color);
    top: 0;
    bottom: 0;
    left: -20px;
    margin: auto;
    transition: 0.4s;
    border-bottom-right-radius: 10px;
}

#sidebar ul li a.active i,
#sidebar ul li a:hover i {
    color: var(--theme_color);
}

#sidebar ul li a.active::before, #sidebar ul li a:hover::before {
    width: 10px;
}

#sidebar #dropdownCollapsible ul {
    height: 100%;
    padding: 0;
    overflow: initial;
    margin-left: 30px;
}

.rtl #sidebar {
    left: auto;
    right: 0;
}

.rtl #sidebar.active {
    right: -310px;
}

.rtl #sidebar #dropdownCollapsible ul {
    margin-right: 30px;
    margin-left: 0;
}

.rtl #sidebar .search_area .form-control {
    padding: 10px 10px 10px 30px;
}

.rtl #sidebar ul li a i {
    text-align: right;
}

.rtl #sidebar ul li a::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

#content .dashboard-box .icon_area::before {
    right: 5px;
}

.rtl #sidebar ul li a::before {
    right: auto;
    left: -24px;
}

.rtl #sidebar .sidebar-top .sidebar-toggler {
    right: auto;
    left: 20px;
}

.rtl #sidebar .search_area .icon_area {
    left: 30px;
    right: auto;
}

#content {
    width: calc(100% - 300px);
    margin-left: auto;
    transition: 0.4s;
}

#content .overlay {
    background: var(--bg_color3);
    padding: 15px 0;
    min-height: 100vh;
}

#content.active {
    width: 100% !important;
}

#content .navbar {
    background: var(--bg_color2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    padding: 10px;
    height: 80px;
    margin: 15px 20px;
    border-radius: 10px;
}

#content .navbar .navbar-brand {
    display: none;
}

#content .navbar .sidebar-toggler {
    position: relative;
    background: var(--theme_color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border-color: transparent;
}

#content .navbar .sidebar-toggler i {
    font-size: 16px;
}

#content .navbar .sidebar-toggler:focus {
    box-shadow: 0 0 0 0rem;
}

#content .navbar .navbar-text {
    display: flex;
}

#content .navbar .navbar-text .btn-custom {
    width: 120px;
    height: 40px;
    padding: 9px;
}

#content .navbar .profile {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#content .navbar .profile img {
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

#content .navbar .user-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

#content .navbar .user-panel:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: 48px;
}

#content .navbar .user-panel .user-dropdown {
    background: var(--bg_color2);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: -22px;
    top: 74px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 3;
    box-shadow: var(--shadow1);
}

#content .navbar .user-panel .user-dropdown li {
    border-bottom: 1px solid var(--bgLight);
    list-style: none;
}

#content .navbar .user-panel .user-dropdown li a {
    background: var(--bg_color2);
    color: var(--body_color);
    font-size: 14px;
    font-weight: 400;
    padding: 10px;
    display: flex;
    transform: 0.4s;
}

#content .navbar .user-panel .user-dropdown li a:active,
#content .navbar .user-panel .user-dropdown li a:focus,
#content .navbar .user-panel .user-dropdown li a:hover {
    background: var(--bg_color2);
}

#content .navbar .user-panel .user-dropdown li a i {
    color: var(--theme_color);
    margin: 0 5px;
    margin-top: 4px;
    font-size: 16px;
}

#content .navbar .notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

#content .navbar .notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 50px;
}

#content .navbar .notification-panel .dropdown-toggle {
    width: 40px;
    height: 40px;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
    padding-top: 4px;
    border: none;
    background: transparent;
}

#content .navbar .notification-panel .dropdown-toggle i {
    color: var(--theme_color);
    font-size: 24px;
}

#content .navbar .notification-panel .dropdown-toggle::after {
    display: none;
}

#content .navbar .notification-panel .dropdown-toggle .count {
    background: var(--theme_color);
    min-width: 18px;
    height: 18px;
    border-radius: 50px;
    color: var(--white);
    font-family: "Jost", sans-serif;
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 11px;
    font-weight: 400;
    padding-top: 1px;
}

#content .navbar .notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 278px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0;
    height: 100%;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
    background: black;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 5px;
}

#content .navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--theme_color);
}

#content .navbar .notification-panel .notification-dropdown {
    background: var(--bg_color2);
    width: 290px;
    max-height: 324px;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: -62px;
    top: 74px;
    border-radius: 5px;
    visibility: hidden;
    transition: 0.4s;
    opacity: 0;
    z-index: 10;
    box-shadow: var(--shadow1);
}

#content .navbar .notification-panel .notification-dropdown li {
    border-bottom: 1px solid var(--bg_color2);
}

#content .navbar .notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    color: var(--body_color);
    white-space: normal;
    transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown li a:active,
#content .navbar .notification-panel .notification-dropdown li a:focus,
#content .navbar .notification-panel .notification-dropdown li a:hover {
    background: var(--bg_color2);
}

#content .navbar .notification-panel .notification-dropdown li a i {
    background: var(--theme_color);
    border-radius: 2px;
    padding: 0;
    width: 30px;
    height: 30px;
    text-align: center;
    margin-right: 10px;
    color: var(--white);
    font-size: 16px;
    padding-top: 8px;
}

#content .navbar .notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

#content .navbar .notification-panel .notification-dropdown li a .text p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

#content .navbar .notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 500;
    color: var(--theme_color);
}

#content .navbar .notification-panel .notification-dropdown .clear-all {
    background: var(--bg_color3);
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a {
    color: var(--theme_color);
    transition: 0.4s;
}

#content .navbar .notification-panel .notification-dropdown .clear-all a:hover {
    color: var(--primary);
}

#content .main {
    padding: 8px;
}

#content .dashboard-box .text_area {
    padding: 25px 20px;
}

#content .dashboard-box .text_area h3 {
    margin-bottom: 0;
}

#content .dashboard-box .icon_area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

#content .dashboard-box .icon_area i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

#content .dashboard-box-wrapper .dashboard-box .icon_area i {
    background: rgb(130, 49, 211, 0.1);
}

#content .dashboard-box-wrapper .box:nth-child(2) .dashboard-box .icon_area i {
    background: rgb(88, 64, 255, 0.1);
}

#content .dashboard-box-wrapper .box:nth-child(3) .dashboard-box .icon_area i {
    background: rgb(1, 184, 26, 0.1);
}

#content .dashboard-box-wrapper .box:nth-child(4) .dashboard-box .icon_area i {
    background: rgb(0, 170, 255, 0.1);
}

#content .dashboard-box-wrapper .dashboard-box i {
    font-size: 30px;
}

#content .dashboard-box-wrapper .box:nth-child(1) .dashboard-box i {
    color: #8231D3;
}

#content .dashboard-box-wrapper .box:nth-child(2) .dashboard-box i {
    color: #5840ff;
}

#content .dashboard-box-wrapper .box:nth-child(3) .dashboard-box i {
    color: #01b81a;
}

#content .dashboard-box-wrapper .box:nth-child(4) .dashboard-box i {
    color: #00AAFF;
}

#content .dashboard-box {
    background-color: var(--bg_color2);
    box-shadow: var(--shadow1);
    border-radius: 10px;
    overflow: hidden;
}

#content .dashboard-box h5 {
    font-size: 16px;
}

.small_icon {
    font-size: 15px !important;
}

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

#content .table-parent {
    padding: 15px;
    background: var(--bg_color2);
    border-radius: 5px;
    border: 1px solid var(--border_color2);
}

#content .table {
    color: var(--fontColor);
    background: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
    border-radius: 10px;
}

#content .table tbody > tr:nth-of-type(even) > * {
    --bs-table-accent-bg: var(--bg_color3);
    color: var(--heading_color);
}

#content .table tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bg_color2);
    color: var(--heading_color);
}

#content .table thead {
    font-weight: 600;
    text-transform: capitalize;
}

#content .table tbody {
    border: none;
}

#content .table tr {
    border: none;
}

#content .table tr th {
    font-weight: 500;
    border: none !important;
    vertical-align: middle;
    padding: 10px 20px;
    font-size: 18px;
    background: var(--theme_color);
    color: var(--heading_color);
}

#content .table tr th:first-child {
    border-top-left-radius: 5px;
}

#content .table tr th:last-child {
    border-top-right-radius: 5px;
}

#content .table tr td {
    padding: 15px;
    vertical-align: middle;
    border: none !important;
    /* border-bottom: 1px solid var(--border_color2) !important; */
    text-transform: capitalize;
    margin: 5px !important;
    font-size: 16px;
    font-weight: 400;
    /* text-align: center; */
}

#content .table tr td .dropdown button {
    padding: 0px 10px;
}

#content .table tr td .dropdown i {
    font-size: 18px;
    color: var(--white);
}

#content .table tr td .dropdown-menu {
    background: var(--bg_color2);
    box-shadow: var(--shadow1);
}

#content .table tr td .dropdown-item {
    color: var(--body_color);
}

#content .table tr td .dropdown-item:hover {
    background: var(--bg_color3);
}

.rtl #content {
    margin-left: 0;
    margin-right: auto;
}

.rtl #content .navbar .navbar-brand {
    margin-right: 0;
}

.rtl #content .navbar .notification-panel .dropdown-toggle {
    margin-right: 0;
    margin-left: 15px;
}

.rtl #content .navbar .notification-panel .dropdown-toggle .count {
    right: auto;
    left: 1px;
}

.rtl #content .navbar .user-panel .user-dropdown {
    right: auto;
    left: 0;
}

.rtl #content .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -62px;
}

.rtl #content .navbar .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 10px;
}

.rtl #content .table tr td.company-logo img {
    margin-right: 0;
    margin-left: 15px;
}

.rtl #content .table tr th:first-child,
.rtl #content .table tr th:last-child {
    border-radius: 0;
}

.rtl #content .dashboard-box {
    background-position: left;
}

.rtl #content .dashboard-box i {
    right: auto;
    left: 50px;
}

.profile-setting .sidebar-wrapper .profile {
    background: var(--bg_color2);
    box-shadow: var(--shadow1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.profile-setting .sidebar-wrapper .profile .img {
    position: relative;
    margin-bottom: 25px;
    height: 100px;
    width: 100px;
}

.profile-setting .sidebar-wrapper .profile .img img {
    border-radius: 120px;
}

.profile-setting .sidebar-wrapper .profile .name {
    font-size: 20px;
    margin-bottom: 5px;
}

.profile-setting .sidebar-wrapper .upload-img {
    padding: 3px 9px;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: -7px;
    background: var(--theme_color);
    transition: 0.4s;
    color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img i {
    font-size: 16px;
}

.profile-setting .sidebar-wrapper .upload-img:hover {
    color: var(--white);
}

.profile-setting .sidebar-wrapper .upload-img input {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer !important;
}

.profile-setting .sidebar-wrapper .profile .cmn_btn {
    padding: 4px 10px;
    margin-top: 10px;
}

.profile-setting .sidebar-wrapper .profile_portfolio {
    background: var(--bg_color2);
    box-shadow: var(--shadow1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.profile-setting .sidebar-wrapper .profile_portfolio .avatar-xs {
    height: 2rem;
    width: 2rem;
}

.profile-setting .sidebar-wrapper .profile_portfolio .avatar-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #6691e7;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.profile-setting .profile_card {
    background: var(--bg_color2);
    border-radius: 10px;
    padding: 16px;
    box-shadow: var(--shadow1);
}

.profile-setting .profile_card button {
    padding: 15px;
}

.profile-setting .profile_card .cmn_btn {
    padding: 8px 20px;
}

.profile-setting .profile_card button.tab.active {
    border-bottom: 2px solid var(--theme_color);
    font-weight: 500;
}

.profile-setting .profile-navigator button.tab {
    color: var(--heading_color);
    text-transform: capitalize;
    font-size: 16px;
}

.profile-setting .profile-navigator button.tab:hover {
    color: var(--theme_color);
}

.profile-setting .content {
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    display: none;
}

.profile-setting .content.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.profile-setting form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.profile-setting form .input-box .form-select, .profile-setting form .input-box .form-control, .profile-setting .profile_portfolio .form-control {
    height: 45px;
    border-radius: 5px;
    background-color: var(--bg_color3);
    border: 1px solid var(--bg_color3);
    padding: 10px;
    padding-left: 15px;
    font-weight: normal;
}

.profile-setting form .input-box .form-select:focus,
.profile-setting form .input-box .form-control:focus, .profile-setting .profile_portfolio .form-control:focus {
    box-shadow: 0 0 0 0rem var(--white);
    border: 2px solid var(--theme_color);
}

.profile-setting form .input-box .form-select {
    background-image: url(../images/user_panel/profile/downward-arrow.png);
}

.profile-setting form .input-box textarea.form-control {
    height: 150px;
    border-radius: 5px;
}

.profile-setting form .attach-file {
    position: relative;
}

.profile-setting form .attach-file span.prev {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 120px;
    background: var(--theme_color);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
    color: var(--white);
    text-transform: capitalize;
    font-weight: 500;
    padding: 12px;
    display: flex;
    align-items: center;
}

.profile-setting .alert {
    background: var(--bg_color3);
    border-radius: 5px;
}

.profile-setting .alert i {
    color: var(--theme_color);
}

.rtl .avatar-xs.d-block.flex-shrink-0.me-3 {
    margin-left: 1rem;
    margin-right: 0 !important;
}

.rtl .profile-setting .sidebar-wrapper .profile .img {
    margin-right: 0;
    margin-left: 20px;
}

.rtl .profile-setting .sidebar-wrapper .sidebar a i {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .profile-setting .sidebar-wrapper .upload-img {
    right: auto;
    left: 0;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab {
    text-align: right;
}

.rtl .profile-setting .sidebar-wrapper .profile-navigator button.tab i {
    text-align: right;
}

.rtl .profile-setting form .attach-file span.prev {
    left: auto;
    right: 0;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.not-found {
    height: 100vh;
    background: var(--black);
}

.not-found .img-box {
    max-width: 500px;
    margin: auto;
}

.not-found .text-box a {
    color: var(--theme_color);
    text-transform: capitalize;
}

/* modal_area_start */
.modal-content {
    background: var(--bg_color2);
}

.modal-header .btn-close {
    background: url(../images/modal/close.png) center/1em auto no-repeat;
}

.modal-header .btn-close:hover {
    color: var(--theme_color);
}

.modal-content .modal-header {
    border-bottom: 1px solid var(--border_color2);
    padding: 15px;
}

.product_modal1 .modal-body .quickview_modal {
    width: 50%;
}

.product_modal1 .modal-dialog {
    max-width: 650px;
}

.product_modal1 .form-select, .product_modal1 .form-control {
    width: auto;
    height: 40px;
}

.product_quantity button {
    width: 40px;
    height: 40px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg_color1);
    color: var(--theme_color);
}

.product_quantity {
    margin-right: 15px;
    margin-top: 30px;
}

.product_quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    outline: 0;
    background: var(--bg_color1);
    color: var(--white);
}


.product_modal1 .product_action_btn a {
    border-radius: 0;
}

.product_modal1 .product_action_btn .add-to-cart {
    background: var(--bg_color3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    margin-right: 15px;
    transition: all 0.3s ease-in-out !important;
}

.product_action_btn .add-to-cart:hover {
    background: var(--theme_color);
    color: var(--white) !important;
    transition: all 0.3s ease-in-out !important;
}

.product_quantity input:focus-visible {
    border: 1px solid var(--theme_color);
}

.cmn_check_box:not(:last-child) {
    margin-bottom: 20px;
}

.cmn_check_box label {
    color: var(--white);
    padding: 3px 10px;
    background: var(--bg_color1);
    font-size: 12px;
    cursor: pointer;
}

/* .product_details_content  */
.cmn_check_box .form-check-input {
    display: none;
}

/* .product_details_content  */
.cmn_check_box input[type="radio"]:checked + label {
    background-color: var(--theme_color);
}


.modal .modal-content .modal-header .close-btn i {
    color: var(--heading_color);
    transition: 0.4s;
}

.modal .modal-content .modal-header .close-btn i:hover {
    color: var(--theme_color);
}

.modal .modal-content .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.modal .btn-custom {
    width: 48%;
    height: 40px;
    background: #26cc8c;
    padding: 10px 15px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
}

.modal form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.modal form .input-box .form-select,
.modal form .input-box .form-control {
    height: 50px;
    border-radius: 5px;
    background-color: var(--white);
    border: 2px solid var(--border_color1);
    padding: 8px;
    padding-left: 15px;
    font-weight: normal;
    caret-color: var(--theme_color);
    color: var(--heading_color);
}

.modal form .input-box .form-select:focus,
.modal form .input-box .form-control:focus {
    color: var(--heading_color);
    box-shadow: 0 0 0 0rem var(--white);
    border: 2px solid var(--theme_color);
}

.modal form .input-box .form-select::-moz-placeholder,
.modal form .input-box .form-control::-moz-placeholder {
    color: var(--heading_color);
}

.modal form .input-box .form-select:-ms-input-placeholder,
.modal form .input-box .form-control:-ms-input-placeholder {
    color: var(--heading_color);
}

.modal form .input-box .form-select::placeholder,
.modal form .input-box .form-control::placeholder {
    color: var(--heading_color);
}

.modal form .input-box .form-select {
    background-image: url(../images/user_panel/profile/downward-arrow.png);
}

.modal form .input-box .form-select option {
    background: var(--white);
    color: var(--heading_color);
}

.modal form .input-box textarea.form-control {
    height: 150px;
    border-radius: 5px;
}

/* modal_area_end */

/*=========================== user_panel_end ==========================*/
@media (max-width: 1366px) {
    .hero_area .img-wrapper .img-box {
        width: 600px;
        height: 600px;
    }

    .hero_area .img-wrapper .img-2 {
        width: 300px;
        height: 300px;
        top: 350px;
        right: 400px;
    }

    .hero_area .img-wrapper .img-3 {
        width: 200px;
        height: 200px;
        top: 530px;
        right: 310px;
    }

    .rtl .hero_area .img-wrapper .img-2 {
        right: auto;
        left: 400px;
    }

    .rtl .hero_area .img-wrapper .img-3 {
        right: auto;
        left: 310px;
    }
}

@media (max-width: 991px) {


    #content .navbar .navbar-text {
        position: absolute;
        right: 15px;
        top: 12px;
    }

    #content .navbar .notification-panel .notification-dropdown {
        left: auto;
        right: -55px;
    }

    #content .navbar .user-panel .user-dropdown {
        left: auto;
        right: -15px;
    }

    .rtl #content .navbar .navbar-text {
        right: auto;
        left: 15px;
    }

    .rtl #content .navbar .notification-panel .notification-dropdown {
        right: auto;
        left: -55px;
    }

    .rtl #content .navbar .user-panel .user-dropdown {
        right: auto;
        left: -15px;
    }
}

@media (max-width: 767px) {
    #sidebar {
        left: -310px;
        position: fixed;
        overflow-y: auto;
    }

    #sidebar.active {
        left: 0;
    }

    #sidebar .level-box {
        display: none;
    }

    .rtl #sidebar {
        right: -310px;
    }

    .rtl #sidebar.active {
        right: 0;
    }

    #sidebar ul {
        overflow: none;
        height: auto;
    }

    #content {
        width: 100%;
        /* responsive table */
    }

    #content .table-responsive {
        border-radius: 10px;
    }

    #content .table thead {
        display: none;
    }

    #content .table tbody tr {
        display: block;
        background: var(--bg_color3);
    }

    #content .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 10px 15px;
        font-weight: 300;
    }

    #content .table tbody tr td::before {
        content: attr(data-label);
        color: var(--black);
        font-weight: 600;
    }

    #content .table tbody > tr:nth-of-type(even) > * {
        --bs-table-accent-bg: var(--bgLight2) !important;
    }

    #content .table tr td:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #content .table tr td:last-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

/**/
.disabled > .page-link, .page-link.disabled {
    background-color: var(--bg_color2);
}

/*Notify*/
#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
    fill: #fff !important;
}

[v-cloak] {
    display: none;
}

.attributesName {
    color: var(--white);
}


.price_box .basic_currency1 {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

.price_box .basic_currency2 {
    font-size: 14px;
}

.modal_old_price {

    font-size: 14px;
    text-decoration: line-through;
}

.modal_new_price {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
}

/* === Order Confirm === */
#order_confirmation {
    padding: 100px 0 !important;
    background: var(--bg_color3) !important;
}

.order-success-text {
    padding: 20px;
    background-color: #ededed;
    border: none;
    border-left: 5px solid #198754;
    color: #444;
}

.payment-order {
    padding: 10px;
    /*background-color: #dbad6a;*/
}

/* Review System */
.start_review_area #half-stars-example .rating-group {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: -13px;
}

.start_review_area #half-stars-example .rating__icon {
    pointer-events: none;
}

.start_review_area #half-stars-example .rating__input {
    position: absolute !important;
    left: -9999px !important;
}

.start_review_area #half-stars-example .rating__label {
    cursor: pointer;
    padding: 0 0.1em;
    font-size: 24px;
}

.start_review_area #half-stars-example .rating__label--half {
    padding-right: 0;
    margin-right: -16px;
    z-index: 0;
    width: 16px;
}

.start_review_area #half-stars-example .rating__icon--star {
    color: var(--theme_color);
}

.start_review_area #half-stars-example .rating__icon--none {
    color: #eee;
}

.start_review_area #half-stars-example .rating__input--none:checked + .rating__label .rating__icon--none {
    color: red;
}

.start_review_area #half-stars-example .rating__input:checked ~ .rating__label .rating__icon--star {
    color: #ddd;
}

.start_review_area #half-stars-example .rating-group:hover .rating__label .rating__icon--star,
.start_review_area #half-stars-example .rating-group:hover .rating__label--half .rating__icon--star {
    color: var(--theme_color);
}

.start_review_area #half-stars-example .rating__input:hover ~ .rating__label .rating__icon--star,
.start_review_area #half-stars-example .rating__input:hover ~ .rating__label--half .rating__icon--star {
    color: #ddd;
}

.start_review_area #half-stars-example .rating-group:hover .rating__input--none:not(:hover) + .rating__label .rating__icon--none {
    color: #eee;
}

.start_review_area #half-stars-example .rating__input--none:hover + .rating__label .rating__icon--none {
    color: red;
}


.comment_area .accordion-button {
    width: 10% !important;
}


.comment_area .accordion-button:not(.collapsed) {
    box-shadow: none;
}

.comment_area .accordion-button::after {
    background-image: none !important;
}

.comment_area .accordion-body {
    padding: 0;
}

.comment_inner {
    position: relative;
}

.reply-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--theme_color) !important;
}

.comment_area .accordion-button.reply-btn:not(.collapsed) {
    /*color: var(--logo_color);*/
}

.comment_area .accordion-button.reply-btn:not(.collapsed) i {
    margin-right: 5px;
}

.search-bar {
    background: var(--bg_color2);
    background-size: cover;
    /*box-shadow: var(--shadow2);*/
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.search-bar form .input-box label {
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.search-bar form .input-box .form-select, .search-bar form .input-box .form-control {
    /*height: 50px;*/
    border-radius: 5px;
    background-color: var(--bg_color3);
    border: 2px solid var(--bg_color3);
    padding: 10px 15px;
    font-weight: normal;
    font-size: 16px;
    caret-color: var(--primary);
    color: #fffffe;
}

.search-bar .cmn_btn {
    margin-bottom: 3px;
}

.w-150px {
    width: 200px;
    height: 150px;
}

/*Promocode modal start*/
.promocode-modal {

}

.promocode-modal .modal-content {
    position: relative;

    background-size: cover;
    background-position: center;
    border: none;
    height: 400px;
}

.promocode-modal .modal-content .btn_close i {
    z-index: 1;
    position: absolute;
    right: 0;
    background: var(--white);
    top: -10px;
    right: -10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.promocode-modal .modal-content .modal-body {
    text-align: center;
}

.promocode-modal .modal-content .modal-body h1 {
    font-weight: 400;
}

.promocode-modal .modal-content .modal-header {
    border-bottom: none;
}

.promocode-modal .modal-content .coupon-code {
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 3px;
    font-size: 20px;
}

.promocode-modal .modal-content .modal-body .btn_area {
    margin-top: 20px;
}

/*Responsive promocode modal start*/
.modal-dialog {
    max-width: 736px;
    max-height: 400px;
    margin-right: auto;
    margin-left: auto;
}

/*Responsive promocode modal end*/
/*Promo Code modal end*/

/* preloader-end */

#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--bg_color3) url(../images/preloader/preloader.gif) no-repeat center;
    z-index: 99999;
    background-size: 200px
}

/* preloader-end */

#add-recipient-form {
    background-color: var(--bg_color3);
}

.user_img_nav img {
    border-radius: 50%;
}

.add-fund h4 {
    color: black;
    font-weight: bold;
}

.check_form_control {
    border: 1px solid var(--theme_color);
}

.baseColorText {
    color: var(--theme_color);
}

#create_ticket .form-control[type=file] {
    padding: 10px !important;
}

.media {
    background-color: var(--bg_color3);
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 10px;
}

.chat-img img {
    min-width: 40px;
}

.chat-content {
    line-height: 24px;
}

.media-right {
    flex-direction: row-reverse;
}

#referralURL {
    border: 1px solid var(--theme_color) !important;
}

.user-modal .form-control {
    background-color: var(--bg_color3) !important;
    border: 1px solid transparent !important;
}

.user-modal .cmn_btn2 {
    padding: 8px 16px !important;
}

.custom-card {
    background: var(--bg_color2);
    background-size: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

#paypal-button-container{
    padding-left: 140px;
    margin-top: 30px;
}
@media (max-width: 1399px) {
    #paypal-button-container{
        padding-left: 50px;
    }
}
@media (max-width: 1199px) {
    #paypal-button-container{
        padding-left: 0;
    }
}

.fileinput .thumbnail {
    text-align: start !important;
}










