/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */

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

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

a {
    text-decoration: none !important;
}

/*
   * Allow only vertical resizing of textareas.
   */

textarea {
    resize: vertical;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #ffffff;
}

:root {
    --primary: #066fd1;
    --secondary: #1e2734;
}

.form-control {
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 400;
}

.form-control::placeholder {
    color: #ddd;
}

.bg_primary {
    background: var(--primary);
}

.btn_success {
    background: #3bb54a !important;
}

.btn_success:hover {
    background: #2d9439 !important;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
}

.breadcrumb-item {
    font-size: 14px;
}


/* =============================  Header  ================================= */
.logo img {
    max-height: 70px;
}

.top-nav-right ul li a {
    font-size: 14px;
    color: #212121;
}

.top-nav-right ul li a:hover {
    color: var(--primary);
}

.seach_option .form-control {
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 400;
}

.middle_header {
    padding: 12px 0px;
}

.header_menu {
    background: #f8fafc;
}

.header_menu .nav-item .active {
    color: var(--primary) !important;
}

.header_menu .nav-item:first-child .nav-link {
    padding-left: 0 !important;
}

.header_menu .nav-item:last-child .nav-link {
    padding-right: 0 !important;
}

.header_menu .nav-link {
    padding: 12px 18px !important;
    font-size: 14px;
    font-weight: 500;
    color: #5b5b5b;
}

.header_menu .nav-link:hover {
    color: var(--primary) !important;
}

.banner_carousel_sec .swiper-prev {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #e8e8e8;
    color: var(--primary);
    background: #ffffff;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 5;
}

.banner_carousel_sec .swiper-next {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #e8e8e8;
    color: var(--primary);
    background: #ffffff;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 5;
}

.sec_heading .title {
    font-size: 18px;
    font-weight: 500;
    color: #212121;
}

.product-cat {
    border: 1px solid #EEE;
    border-radius: 6px;
    overflow: hidden;
}

.product-cat-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
}

.product-cat-title a {
    color: #2a2a2a;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-cat-count {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-cat-content {
    background: #066fd11a;
    padding: 6px 0px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product-cat:hover .product-cat-content {
    background: var(--primary);
}

.product-cat:hover .product-cat-title a {
    color: #ffffff;
}

.product-cat:hover .product-cat-count {
    color: #ffffff !important;
}


/* =============================  Footer  ================================= */

.footer_sec {
    background: #0b0b0b;
    padding: 15px 0px;
}

.footer_copyright {
    background: #000000;
    padding: 12px 0px;
    color: #fff;
    font-size: 14px;
}

.widget_title h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.about_us {
    font-size: 14px;
    color: #ddd;
    line-height: 25px;
}

.footer_links ul li a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 8px 0px;
    font-weight: 400;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer_links ul li a:hover {
    color: var(--primary)
}

.footer_contact ul li {
    padding: 8px 0px;
}

.footer_contact ul li a {
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.footer_contact ul li a:hover {
    color: var(--primary);
}


/* register */

.dropshiper_register {
    background: #f5f6fa;
    max-width: 33rem;
    width: 100%;
    padding: 20px;
    margin: auto;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.dropshiper_register h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.form-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary);
}

.dropshiper_register .btn-primary {
    width: 100% !important;
}

.address_map iframe {
    height: 450px;
    width: 100%;
}

.accordion-button {
    border-bottom: 1px solid transparent !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #f8fafc;
    border-bottom: 1px solid #EEE !important;
}

.accordion-body {
    padding: 24px 15px;
    font-size: 15px;
    color: #666;
}


.shop_sidebar .section-title {
    margin-bottom: 15px;
    padding-bottom: 13px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    position: relative;
}

.shop_sidebar .section-title:after {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 42px;
    border-bottom: 2px solid var(--primary);
    left: 0;
}



.categories-wrap ul li a {
    font-size: 14px;
    color: #666;
    padding: 5px 0px;
    display: block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.categories-wrap ul li a:hover {
    color: var(--primary);
}

.categories-wrap .category_items {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgb(197, 197, 197) transparent;
}

.categories-wrap .category_items::-webkit-scrollbar {
    width: 5px;
}

.categories-wrap .category_items::-webkit-scrollbar-track {
    background: transparent;
}

.categories-wrap .category_items::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}


.product_content h5 a {
    font-weight: 600;
    letter-spacing: 0px;
    text-transform: none;
    font-size: 14px;
    line-height: normal;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    color: #212121;
}

.product_content h5 a:hover {
    color: var(--primary);
}

.rating i {
    color: orange;
    font-size: 10px;
}

.product_content p {
    font-size: 13px;
    padding: 2px 0px;
    color: #666;
    font-weight: 500;
}

.product_item {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product_item:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.product_item:hover .product_content h5 a {
    color: var(--primary);
}

.desc_info {
    font-size: 15px;
    font-weight: 400;
    line-height: 32px;
    color: #444;
}


.user_reviews .star {
    font-size: 11px;
    color: orange;
}

.user_reviews {
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

.custom_tabs .nav-pills .nav-link {
    font-size: 15px;
    color: var(--secondary);
    box-shadow: none !important;
    position: relative;
    padding: 0;
}

.custom_tabs .nav-pills .nav-link.active:before {
    border-bottom: 1px solid #ddd;
    position: absolute;
    bottom: -18px;
    left: 0;
    content: "";
    height: 3px;
    background: var(--primary);
    width: 100%;
    z-index: 4;
}

.custom_tabs .nav-pills .nav-link.active,
.custom_tabs .nav-pills .show>.nav-link {
    background: transparent;
    color: var(--primary);
    font-weight: 500;
}


.product_info .product-name {
    font-size: 28px;
    color: #212121;
    margin-bottom: 12px;
}

.product_info .star {
    font-size: 12px;
    color: orange;
}

.product_info .star small {
    color: #212121;
    font-size: 12px;
}

.product_info .short_desc {
    font-size: 15px;
    color: #666;
}


.shop_pagination .page-link {
    border: 1px solid #EEE;
    padding: 3px 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary);
    outline: none !important;
    box-shadow: none !important;
}


.product_item .btn_success {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.product_item:hover .btn_success {
    opacity: 1;
    transform: translateY(0px);
}




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

.qty_option .input {
    font-size: 15px;
    height: 45px;
    width: 100px;
    text-align: center;
}


.input-group-quantity {
    position: absolute;
    width: 30px;
    padding: 0;
    line-height: 18px;
    background: none;
    border: 1px solid var(--color-gray-lite);
    border-radius: 0;
    top: 0;
    right: 0;
}

.input-group-quantity button {
    border: 1px solid #ddd;
    width: 30px;
    border-radius: 0px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0px 6px 0px 0px;
}

.qty-minus {
    border-radius: 0px 0px 6px 0px !important;
}




.active>.page-link,
.page-link.active {
    color: #fff;
    background: var(--primary) !important;
}








.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.close-offcanvas {
    font-size: 28px;
    cursor: pointer;
    font-weight: 600;
    color: #3c3b3b;
}

.offcanvas-backdrop.show {
    display: block;
}

.offcanvas-header {
    display: flex;
    padding: 15px 15px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}

.offcanvas-header {
    margin: 0;
    font-weight: bold;
}

.offcanvas-body {
    padding: 15px;
    height: 75vh;
    overflow: auto;
}

.cart-item {
    display: flex;
    border-bottom: 1px solid #f2f2f2;
    padding: 8px 0px;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-item-details {
    flex: 1;
    margin-left: 15px;
    font-size: 14px;
    color: var(--secondary);
}

.cart-item-details h6 {
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--secondary);
}

.cart-item-details .price {
    font-weight: 500;
}

.cart-item-remove {
    color: #dc3545;
    cursor: pointer;
}

.cart-footer {
    border-top: 1px solid #ddd;
    padding: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: white;
}

.cart-footer .subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 1rem;
}


.carousel-indicators [data-bs-target] {
    padding: 0;
    width: 10px;
    height: 10px;
    border: 0;
}

.order_summery {
    background: #f9f9f9;
    border-radius: 8px;
}


.order_summery td {
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 300;
    padding: 10px 0px !important;
}

.cart_table {
    border: 1px solid #EEE;
    border-radius: 8px !important;
    max-height: 500px;
}

.cart_table th {
    border: none;
    background: #f7f7f7 !important;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    padding: 15px 15px;
}

.cart_table .table-light {
    border-bottom: 1px solid #EEE;
}

.cart_table td {
    font-size: 14px;
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #f4f4f4;
}

.cart_img {
    width: 100px;
    margin-right: 20px;
}

.checkout-product {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

.toast-message {
    font-size: 13px;
    font-weight: 400;
    font-family: 'Poppins';
}

.active>.page-link,
.page-link.active {
    background: var(--primary);
    color: #fff !important;
}

.btn-wishlist.added {
    background: #ef7782;
    color: #fff;
    border-color: #ef7782;
}

.user_account_menu .nav-link:hover,
.user_account_menu .nav-link.active {
    color: var(--primary) !important;
}

th {
    border: none;
    background: transparent !important;
    font-size: 15px;
    font-weight: 400;
    padding: 15px 15px !important;
}

td {
    font-size: 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f4f4f4;
    padding: 15px 15px !important;
}

.border {
    border: 1px solid #EEE;
}

.table-light {
    border-bottom: 1px solid #EEE;
}


.top-nav-right ul li .count_num {
    position: absolute;
    top: -18px;
    right: -5px;
    font-size: 15px;
}


.dashboard_btn {
    background: var(--primary);
    padding: 14px 10px !important;
    color: #fff !important;
    border-radius: 8px;
}

.dashboard_btn:hover{
     background: var(--primary);
     opacity: 0.9;
}






























































/* ==========================================================================
     Helper classes
     ========================================================================== */

/*
   * Hide visually and from screen readers
   */

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */

.invisible {
    visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */

@media print {

    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}