* {
   margin: 0;
   padding: 0;
   font-family: 'Noto Sans Display', Arial, sans-serif;
   scroll-behavior: smooth;
}

section {
   padding: 30px 0px;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6,
label {
   margin: 0px;
}

a,
a:hover,
a:focus,
a:active {
   text-decoration: none;
}

.web_imagebox {
   display: block;
   min-height: 20px;
   width: 100%;
   overflow: hidden;
   position: relative;
}

.web_imagebox img {
   margin-left: auto;
   margin-right: auto;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   margin: auto;
   max-height: 100%;
   max-width: 100%;
}

.main_heading {
    margin-bottom: 20px;
    position: relative;
}
.main_heading h3 {
   font-size: 30px;
   position: relative;
   font-weight: 600;
   display: inline-block;
   text-transform: capitalize;
   color: #20202d;
}
.shimmering {
   background: #f6f7f8;
   background-image: linear-gradient(to right, #f6f7f8 0, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
   background-repeat: no-repeat;
   background-size: cover;
   display: inline-block;
   position: relative;
   -webkit-animation-duration: 1s;
   -webkit-animation-fill-mode: forwards;
   -webkit-animation-iteration-count: infinite;
   width: 100%;
   -webkit-animation-name: placeholderShimmer;
   -webkit-animation-timing-function: linear;
}

@-webkit-keyframes placeholderShimmer {
   0% {
      background-position: -468px 0
   }
   100% {
      background-position: 468px 0
   }
}

.swiper {
   cursor: pointer;
   user-select: none;
}

.store_heading {
   color: #103178;
   font-size: 18px;
   font-weight: 500;
   text-transform: capitalize;
}

.arrows {
   height: 40px !important;
   background: #9cc623;
   border-radius: 50%;
   width: 40px !important;
}

.arrows:after {
   color: #fff;
   font-size: 15px !important;
   font-weight: 600;
}

.arrows.swiper-button-next {
   right: -40px !important;
   transition: 0.3s ease;
}

.arrows.swiper-button-prev {
   left: -40px !important;
   transition: 0.3s ease;
}

.swiper:hover .arrows.swiper-button-prev {
   left: 15px !important;
}

.swiper:hover .arrows.swiper-button-next {
   right: 15px !important;
}

body {
   position: relative;
}
/* width */
::-webkit-scrollbar {
  width: 5px;
      height: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff; 
 
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #9cc623; 
}
/*=========================================================
  MODERN HEADER STYLES
=========================================================*/

/* ---------- CSS Variables ---------- */
:root {
    --header-top-bg: #0f0f1a;
    --header-main-bg: #1a1a2e;
    --header-nav-bg: #141425;
    --header-accent: #54c9ea;
    --header-accent-hover: #8ab51e; /* A slightly darker shade of the accent */
    --header-text: #ffffff;
    --header-text-muted: rgba(255,255,255,0.65);
    --header-text-dim: rgba(255,255,255,0.45);
    --header-border: rgba(255,255,255,0.08);
    --header-shadow: 0 4px 20px rgba(0,0,0,0.15);
    --header-radius: 8px;
    --header-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Top Bar ---------- */
.header-top-bar {
    background: var(--header-top-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 6px 0;
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-text {
    color: var(--header-text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}
.top-bar-text i {
    color: var(--header-accent);
    font-size: 12px;
}
.top-bar-links {
    display: flex;
    align-items: center;
    gap: 18px;
}
.top-bar-link {
    color: var(--header-text-dim);
    font-weight: 500;
    transition: color var(--header-transition);
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}
.top-bar-link:hover {
    color: var(--header-accent);
}

/* ---------- Main Header ---------- */
.header-main {
    background: var(--header-main-bg);
    padding: 12px 0;
    position: relative;
    z-index: 100;
    box-shadow: var(--header-shadow);
}
.header-main-inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Logo */
.header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
}
.header-logo-img {
    max-height: 100%;
    width: auto;
    display: block;
    transition: opacity var(--header-transition);
}
.header-logo:hover .header-logo-img {
    opacity: 0.85;
}

/* Search */
.header-search {
    flex: 1;
    max-width: 580px;
    margin: 0 auto;
}
.header-search-form {
    width: 100%;
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border: 2px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    transition: all var(--header-transition);
    overflow: visible;
}
.search-input-wrapper:focus-within {
    border-color: var(--header-accent);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 4px rgba(156,198,35,0.15);
}
.search-input-wrapper .search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--header-text);
    min-width: 0;
}
.search-input-wrapper .search-input::placeholder {
    color: var(--header-text-dim);
    font-weight: 400;
}
.search-submit-btn {
    flex: 0 0 auto;
    background: var(--header-accent);
    border: none;
    outline: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 4px;
    transition: background var(--header-transition);
    color: #fff;
    font-size: 15px;
}
.search-submit-btn:hover {
    background: var(--header-accent-hover);
}

/* Search Results Dropdown */
.search_result_box {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--header-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.20);
    padding: 16px;
    display: none;
    z-index: 200;
    max-height: 360px;
    overflow-y: auto;
}
.search_result_box .search-heading {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    text-transform: capitalize;
}
.cubes-block.searched {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}
.nrf-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    font-weight: 500;
    padding: 20px;
    font-size: 14px;
}

/* Search result items (rendered by AJAX) */
.cubes-block.searched .item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    transition: background 0.2s;
    color: #333;
}
.cubes-block.searched .item:hover {
    background: #f5f5f5;
}
.cubes-block.searched .item .img-box {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
    flex: 0 0 40px;
}
.cubes-block.searched .item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cubes-block.searched .item .text-box h4 {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    margin: 0;
}
.cubes-block.searched .item .text-box span {
    font-size: 12px;
    color: #888;
}

/* Actions */
.header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--header-border);
    border-radius: 50px;
    color: var(--header-text);
    font-size: 13px;
    font-weight: 500;
    transition: all var(--header-transition);
    text-decoration: none;
}
.header-action-btn i {
    font-size: 15px;
    color: var(--header-accent);
}
.header-action-btn:hover {
    background: var(--header-accent);
    border-color: var(--header-accent);
    color: #fff;
}
.header-action-btn:hover i {
    color: #fff;
}

/* ---------- Blog Single Page Styles ---------- */
.blog-single-article {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
    margin-bottom: 40px;
}
.blog-single-header {
    padding: 36px 40px 0;
}
.blog-single-header .blog-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(84, 201, 234, 0.12);
    color: #54c9ea;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.blog-single-header h1 {
    font-size: 40px;
    line-height: 1.1;
    color: #121127;
    margin-bottom: 18px;
    font-weight: 800;
}
.blog-single-header .blog-single-excerpt {
    max-width: 780px;
    color: #5a5a7b;
    font-size: 17px;
    line-height: 1.8;
}
.blog-single-image {
    position: relative;
    display: block;
    overflow: hidden;
}
.blog-single-image .web_imagebox {
    width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    background: #f7fbff;
}
.blog-single-image .web_imagebox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.blog-single-body {
    padding: 32px 40px 36px;
    color: #44446a;
    font-size: 16px;
    line-height: 1.9;
}
.blog-single-body h2,
.blog-single-body h3,
.blog-single-body h4 {
    color: #131327;
    margin-top: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}
.blog-single-body p {
    margin-bottom: 20px;
}
.blog-single-body ul,
.blog-single-body ol {
    margin: 24px 0 24px 22px;
    padding-left: 14px;
}
.blog-single-body li {
    margin-bottom: 14px;
}
.blog-single-body blockquote {
    padding: 24px 28px;
    background: #f1f8ff;
    border-left: 4px solid #54c9ea;
    color: #24334a;
    font-style: italic;
    margin: 30px 0;
}
.blog-single-footer {
    padding: 0 40px 40px;
}
.blog-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #54c9ea;
    color: #fff;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
}
.blog-primary-btn:hover {
    transform: translateY(-1px);
    background: #3fb0d2;
}
.blog-single-sidebar {
    display: grid;
    gap: 30px;
}
.blog-side-panel {
    background: #fff;
    border-radius: 24px;
    padding: 26px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.blog-side-panel .section-header {
    color: #131327;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}
.pill-list--category {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.pill-list--category li a {
    display: inline-block;
    padding: 10px 16px;
    color: #45506d;
    background: #f5faff;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease;
}
.pill-list--category li a:hover {
    background: #e0f4ff;
    color: #054b6f;
}
.blog-store-list {
    display: grid;
    gap: 12px;
}
.blog-store-item {
    display: block;
    padding: 16px 18px;
    background: #fdf7ef;
    border-radius: 18px;
    color: #2b2b3f;
    border: 1px solid rgba(249, 157, 27, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}
.blog-store-item:hover {
    transform: translateY(-1px);
    background: #fff4e4;
}
.blog-store-item span {
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
}
.blog-store-item small {
    color: #7a7a96;
}
.blog-related-list {
    display: grid;
    gap: 12px;
}
.blog-related-item {
    display: block;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f6fbff;
    color: #1c2740;
    border: 1px solid rgba(84, 201, 234, 0.2);
    transition: background 0.2s ease;
    text-decoration: none;
}
.blog-related-item:hover {
    background: #e8f7ff;
}
.blog-related-item span {
    font-weight: 600;
}
@media (max-width: 991px) {
    .blog-single-article,
    .blog-side-panel {
        box-shadow: none;
    }
    .blog-single-header,
    .blog-single-body,
    .blog-single-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    .blog-single-image .web_imagebox {
        height: 320px;
    }
}

/* ---------- Mobile Toggle ---------- */
.header-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--header-border);
    border-radius: var(--header-radius);
    cursor: pointer;
    padding: 10px 8px;
    transition: background var(--header-transition);
}
.header-mobile-toggle:hover {
    background: rgba(255,255,255,0.15);
}
.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--header-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ---------- Navigation ---------- */
.header-nav {
    background: var(--header-nav-bg);
    border-top: 1px solid var(--header-border);
    position: relative;
    z-index: 99;
}
.header-nav-list {
    justify-content: center;
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.nav-item {
    position: relative;
    margin: 0;
}
.nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 14px 22px;
    color: var(--header-text-muted);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    transition: color var(--header-transition), background var(--header-transition);
    white-space: nowrap;
}
.nav-item .nav-link i {
    font-size: 14px;
    color: var(--header-text-dim);
    transition: color var(--header-transition);
}
.nav-item .nav-link .dropdown-icon {
    font-size: 10px;
    margin-left: 2px;
    transition: transform 0.3s ease;
}
.nav-item:hover .nav-link .dropdown-icon {
    transform: rotate(180deg);
}
.nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--header-accent);
    border-radius: 3px 3px 0 0;
    transition: width var(--header-transition);
}
.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: var(--header-text);
    background: rgba(255,255,255,0.04);
}
.nav-item:hover .nav-link i,
.nav-item.active .nav-link i {
    color: var(--header-accent);
}
.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    width: 60%;
}

/* Submenu (Dropdown) - no Bootstrap conflicts */
.nav-item.has-submenu {
    position: relative;
}
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 var(--header-radius) var(--header-radius);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 300;
}
.nav-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu .submenu-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.submenu .submenu-link i {
    font-size: 15px;
    color: #aaa;
    width: 18px;
    text-align: center;
    transition: color 0.2s;
}
.submenu .submenu-link:hover {
    background: #f5f7fa;
    color: var(--header-accent);
}
.submenu .submenu-link:hover i {
    color: var(--header-accent);
}
.submenu .submenu-link.active {
    color: var(--header-accent);
    font-weight: 600;
}

/* Mobile support info (hidden on desktop) */
.mobile-support-info {
    display: none;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/*=======banner=============*/

.banner {
   background-image: url(../images/banner_img_1.png);
   background-repeat: no-repeat;
   background-position: center right;
   background-size: 400px;
   display: flex;
   background-color: #f6f8fc;
}

.banner_container {
   display: flex;
   flex-direction: column;
   grid-gap: 30px;
}

.banner_items {
   display: flex;
   flex-direction: column;
   grid-gap: 30px;
}

.banner_items_content {
   display: inline-block;
   padding-right: 350px;
}

.banner_heading {
   font-weight: 600;
   font-size: 24px;
   color: #000c;
   text-transform: uppercase;
}

.banner_about {
   margin-top: 10px;
   text-shadow: 2px 2px 4px #0001;
   color: #0005;
   font-weight: 600;
   font-size: 16px;
}

.banner_items_slider {
   padding: 10px !important;
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 0 10px #0001;
   width: calc(100% - 350px);
   margin-left: 0px !important;
}

.store_slide_img {
    height: 100px;
    border-radius: 10px;
    padding: 0 10px;
}

.store_slide_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.store_slide_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.store_slide_name {
    font-weight: 500;
    padding-top: 10px;
    color: #000;
    line-height: 1;
    text-align: center;
    text-transform: capitalize;
    font-size: 18px;
}
.store_slide{
   border-radius: 10px;
   padding: 10px;
}
.store_slide:nth-child(6n+1) {
   background: #ffd5d5;
}

.store_slide:nth-child(6n+2) {
   background: #fffad5;
}

.store_slide:nth-child(6n+3) {
   background: #d5efff;
}

.store_slide:nth-child(6n+4) {
   background: #dfd5ff;
}

.store_slide:nth-child(6n+5) {
   background: #ffba0070;
}

.store_slide:nth-child(6n+6) {
   background: #e240ff45;
}


/*====================Featured Blogs ========*/

.featured_blogs_container {
    display: flex;
    padding: 3px;
    overflow: auto;
    grid-gap: 20px;
}
.featured_blogs_coupon {
    background: #fff;
    box-shadow: 0 0 10px #0002;
    /* padding: 10px; */
    position: relative;
    overflow: hidden;
    min-width: 260px;
    border-radius: 10px;
}
.featured_blogs_coupon_header {
    background: url(../images/coupn_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 5px;
    border-radius: 0 0 70% 0;
    position: relative;
    height: 140px;
    box-shadow: 0 0 5px #b044721a;
}

.featured_blogs_coupon_img {
    margin: 0 auto;
    height: 80px;
    position: absolute;
    width: 80px;
    display: block;
    box-shadow: 0 0 10px #0002;
    right: 15px;
    bottom: 0;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 50%;
}

.featured_blogs_coupon_img .web_imagebox {
    height: 100%;
    background: #fff;
    width: 100%;
}
.featured_blogs_coupon_img .web_imagebox img {
    border-radius: 50px;
    max-height: 90%;
    max-width: 90%;
}



.featured_blogs_coupon_body {
    padding: 10px;
}
.coupon_title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
    margin-top: 8px;
}
.read_container {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.coupon_discription {
    display: flex;
    align-items: center;
}
.read_more {
    flex: 0 0 auto;
    font-size: 13px;
    color: #ec2c36;
    font-weight: 700;
}

a.read_more i {
   font-size: 10px;
}

.read_more:hover,
.read_more:focus {
   color: #cd3f3c;
}

.badge {
    padding: 5px 15px !important;
    box-shadow: 0 0 5px #0001;
    display: inline-flex;
    align-items: center;
    grid-gap: 5px;
    border-radius: 5px !important;
    text-transform: capitalize;
}

.uses {
    background: #00a7cb;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.verified {
    color: #fff;
    background: #4caf50;
    font-weight: 500;
    position: absolute;
    left: 10px;
    bottom: -10px;
}
.end {
    font-weight: 600;
    background: transparent;
    color: #d30500;
    box-shadow: none;
    justify-content: flex-end;
    margin-top: 5px;
    padding-left: 0 !important;
}
.update {
   font-weight: 600;
   padding: 0 !important;
   background: transparent;
   color: #ababab;
   box-shadow: none;
}

.featured_blogs_coupon_btn {
   display: block;
   height: 40px;
   width: 180px;
   overflow: hidden;
   border-radius: 5px;
   margin-top: 10px;
   margin-left: auto;
}

.featured_blogs_coupon_btn p {
   height: 100%;
   text-align: center;
   line-height: 40px;
   font-size: 14px;
   text-transform: capitalize;
   font-weight: 500;
   text-indent: -5px;
}

.featured_blogs_coupon_btn p i {
   padding-right: 5px;
   font-size: 16px;
   font-weight: 300;
}

.featured_blogs_coupon_btn.get_deal p:nth-child(1) {
   background: #00a8cc;
}

.featured_blogs_coupon_btn p:nth-child(1) {
    background: #ec2c36;
    box-shadow: inset 0 0 10px #0001;
    color: #fff;
}

.featured_blogs_coupon_btn p:nth-child(2) {
   background: #f6f8fc;
   box-shadow: inset 0 0 10px #ddd;
   color: #0009;
}
.codes{
   transition: 0.3s cubic-bezier(0, 0.43, 0.69, 1.65);
}
.featured_blogs_coupon_btn:not(.get_deal):hover .codes {
   margin-top: -40px;
}


/*====================categories_section========*/

.discount_section {
   background: #f6f8fc;
}

.discount_section_container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   grid-gap: 30px;
}

.discount_section_items {
   display: flex;
   align-items: center;
   padding: 20px;
   border-radius: 10px;
   overflow: hidden;
   flex: 1;
   grid-gap: 10px;
   justify-content: space-between;
}
.discount_section_items:nth-child(2){
}
.discount_section_items_content {
    z-index: 1;
    display: flex;
    grid-gap: 10px;
    flex-direction: column;
}     

.discount_section_items_content h2 {
   font-size: 30px;
   color: #fff;
   font-weight: 600;
   line-height: 1;
   text-transform: capitalize;
}

.discount_section_items_content p {
    font-size: 18px;
    font-weight: 500;
    color: #f9f9f9;
    text-transform: capitalize;
}

.discount_section_items_content_btn {
    padding: 5px;
    border-radius: 5px;
    text-transform: capitalize;
    width: 100px;
    text-align: center;
    font-size: 16px;
    border: 2px solid #fff;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease;
}

.discount_section_items_content_btn:hover {
   background: #fff;
   color: #000;
}

.discount_section_items_img {
   height: 190px;
   width: 220px;
}

.discount_section_items_img .web_imagebox {
   height: 100%;
   width: 100%;
   overflow: inherit;
}

.discount_section_items_img img {
   transition: 0.5s ease;
   max-height: 100%;
   max-width: 100%;
}

.discount_section_items:hover .discount_section_items_img img {
   transform: rotate(-10deg) scale(1.3);
}


/*====================categories========*/

.categories_main {
   background: #fff;
}

.main_heading.categories_section_heading {
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.categories_section_nav {
   display: flex;
   align-items: center;
   list-style: none;
   grid-gap: 50px;
}

.categories_section_nav a {
   color: #858585;
   text-transform: capitalize;
   font-size: 16px;
   font-weight: 500;
   position: relative;
   padding-bottom: 5px;
   display: block;
}

.categories_section_nav a:before {
   position: absolute;
   content: '';
   height: 2px;
   width: 0%;
   background: #c34e80;
   bottom: 0;
   left: 0;
   transition: 0.5s cubic-bezier(0.47, -0.24, 0.66, 1.4);
}

.categories_section_nav a:hover:before,
.categories_section_nav a.categories_nav_item_active:before {
   width: 100%;
}

.categories_main_items {
   padding: 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   grid-gap: 20px;
   box-shadow: 0 0 10px #0001;
   border-radius: 10px;
}

.categories_main_items:hover .categories_main_img {
   transform: scale(1.2);
}

.categories_main_content {
   flex: 1;
}

.categories_offer {
   font-size: 13px;
   font-weight: 500;
   color: #fffc;
   text-transform: uppercase;
}

.categories_title {
   color: #fff;
   font-size: 25px;
   font-weight: 600;
}

.categories_main_img {
   transition: 0.5s ease;
   flex: 0 0 100px;
   height: 100px;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center;
}

.arrows_2 {
   background: #3bb77a;
}


/*=========popular stores===========*/

.popular_stores {
   background-image: url(../images/store_bg.jpg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.popular_stores_container {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   grid-gap: 20px;
}

.main_heading_store {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    grid-gap: 5px;
}

.store_icon {
   display: block;
   height: 30px;
   width: 30px;
}

.store_icon img {
   height: 100%;
   filter: grayscale(0.3);
}

.stores_heading {
   font-size: 35px;
   font-weight: 700;
   text-transform: uppercase;
   color: #333;
}

.store_text {
   font-size: 25px;
   text-transform: uppercase;
   color: #0008;
}

.store_btn {
   padding: 10px 15px;
   border-radius: 30px;
   border: 2px solid #a2c04e;
   width: 180px;
   text-align: center;
   color: #747474;
   font-size: 14px;
   text-transform: capitalize;
   font-weight: 600;
   transition: 0.3s ease;
}

.store_btn:hover {
   background: #a2c04e;
}

.stores_product {
   flex: 1;
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   grid-gap: 20px;
}

.stores_product_item {
    justify-content: center;
    padding: 5px;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
}

.stores_product_img {
   height: 100px;
   width: 100px;
   overflow: hidden;
   background: #fff;
   margin: auto;
}

.stores_product_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.stores_product_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
   border-radius: 5px;
}

.stores_product_content {
   width: auto;
}

.store_title {
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    padding: 5px 0;
    display: -webkit-box;
    line-height: 1;
    -webkit-line-clamp: 1;
    overflow: hidden;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
/*====================usage========*/

.usage {
   background: #f6f8fc;
}

.usage_container {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 30px;
}

.usage_items {
   padding: 20px;
   display: flex;
   align-content: center;
   justify-content: center;
   background: #c8ebff;
   flex-direction: column;
   box-shadow: 0 0 10px #0002;
   border-radius: 10px;
}

.usage_items:nth-child(2) {
   background: #91ffc8;
}

.usage_items:nth-child(3) {
   background: #f8c3ff;
}


.usage_img {
   margin: 0 auto;
   height: 100px;
   width: 100px;
   display: flex;
   justify-content: center;
}

.usage_img img {
   max-height: 100%;
   max-width: 100%;
}

.usage_content {
   text-align: center;
}

.usage_content h3 { display: inline-block; font-weight: 700; font-size: 20px;
 color: #545454; margin: 10px 0 5px; text-transform: capitalize; }

.usage_content p {
   display: inline-block;
   font-size: 15px;
   font-weight: 500;
   color: #6a6a6a;
   padding: 0 30px;
}


/*====================F_A_Q========*/

.f_a_q {
   background-image: url(../images/F_A_Q.svg);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.f_a_q_container {
   align-items: center;
   display: flex;
   grid-gap: 40px;
   justify-content: space-between;
}

.f_a_q_img {
    flex: 0 0 30%;
}

.f_a_q_img img {
   max-width: 100%;
}

.f_a_q_content {
   display: flex;
   flex-direction: column;
   position: relative;
   grid-gap: 15px;
   flex: 0 0 70%;
}

.f_a_q_items_content {
   background: #f6f8fc;
   border-radius: 5px;
   border: 1px solid #0001;
   padding: 15px;
   cursor: pointer;
}

.question {
   color: #0008;
   font-size: 18px;
   grid-gap: 20px;
   align-items: center;
   display: flex;
   justify-content: space-between;
   user-select: none;
   font-weight: 600;
}

.question i {
   font-size: 15px;
}

.answer {
   margin-top: 10px;
   display: none;
   border-top: 1px dashed #0002;
   padding-top: 10px;
}

.answer p {
   padding-left: 10px;
   border-left: 3px solid #2d6891;
   font-size: 14px;
   font-weight: 500;
   color: #0007;
}


/*================disclaimer==============*/

.disclaimer {
   background: #f6f8fc;
   padding-bottom: 100px;
}

.disclaimer_container {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   grid-gap: 30px;
   justify-content: center;
}

.disclaimer_items {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 10px #0001;
    padding: 30px;
    background: #fff;
    padding-top: 20px;
    position: relative;
    grid-gap: 10px;
}

.disclaimer_btn {
    height: 35px;
    text-align: right;
    position: absolute;
    display: flex;
    top: 0;
    right: 20px;
    z-index: 1;
    grid-gap: 10px;
}
.disclaimer_btn .button {
    display: inline-block;
    /* line-height: 40px; */
    display: flex;
    height: 100%;
    padding: 0 10px;
    border: 0;
    outline: none;
    border-radius: 0 0 10px 10px;
    text-transform: capitalize;
    font-size: 15px;
    color: #0006;
    background: #efefef;
    font-weight: 600;
    transition: 0.2s ease;
    align-items: center;
}

.disclaimer_btn .button:hover,
.disclaimer_btn .button.disclaimer_btn_active {
   background: #9cc623;
   color: #fff;
   box-shadow: 0 0 5px #0002;
}

.content_div {
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.disclaimer_content {
   background-image: url(../images/disclaimer.jpg);
}

.about_content {
   background-image: url(../images/about_us.jpg);
   display: none;
}

.content_div h3 {
   color: #9cc623;
   font-size: 23px;
   font-weight: 700;
   text-transform: capitalize;
}

.content_div p {
   margin-top: 10px;
   font-size: 15px;
   font-weight: 500;
   color: #0008;
   line-height: 1.5;
}


/*====================store list========*/

.store_list {
   background: #f6f8fc;
   padding-bottom: 100px;
}
.allStore {
    padding: 30px 0;
    background-color: #fff;
}
.allStore .storeHeading {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: center;
}
.store_breadcrumbs {
    list-style: none;
    display: flex;
    margin-bottom: 0;
}
ul.store_breadcrumbs.storelist {
    margin-bottom: 0px;
}
.store_breadcrumbs.storelist li.active a {
    font-weight: 600;
    color: #20202d;
}
.storeHeading h3 span {
    color: #240046;
    font-weight: 600;
    font-size: 30px;
}
.store_list_container {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   grid-gap: 20px;
}
.btnContainer {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* grid-gap: 10px; */
    justify-content: space-between;
    margin-bottom: 20px;
}
.btnContainer .btns {
    padding: 5px 13px;
    width: auto;
    font-size: 15px;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.2s;
}
.store_list_item {
   width: 100%;
}

.store_list_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px #0001;
}
.store_list_heading {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
}

.store_list_filter {
   display: flex;
   align-content: center;
   justify-content: center;
   grid-gap: 60px;
}

.store_list_filter p {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
}

.store_list_dropdown {
    font-size: 13px;
    color: #fff;
}

.store_list_body {
   box-shadow: 0 10px 10px #0001;
   border-radius: 5px;
   overflow: hidden;
   display: none;
}

.store_list_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #ededed;
    border-top: 1px dashed #0001;
}

.store_list_img {
    height: 50px;
    background: #ededed;
    width: 50px;
}
.store_list_img .web_imagebox {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.store_list_img .web_imagebox img {
   max-width: 100%;
   max-height: 100%;
}

.store_filter {
   padding-right: 74px;
}
.store_filter p{
   color: #000;
}
.store {
   display: flex;
   align-items: center;
   justify-content: space-between;
   grid-gap: 15px;
}

.store_list_title h5 {
   color: black;
   display: -webkit-box;
   font-size: 15px;
   font-weight: 600;
   line-height: 1.5;
   -webkit-line-clamp: 1;
   overflow: hidden;
   width: 150px;
   -webkit-box-orient: vertical;
}

.store_list_title p {
   font-size: 14px;
   font-weight: 500;
   color: #0005;
}

.switchers {
   display: flex;
   flex-wrap: wrap;
   grid-gap: 10px;
}

a.switchers_items {
   padding: 8px 15px;
   background: #ec2c36;
   border-radius: 5px;
   fonts: 14px;
   font-weight: 500;
   font-size: 14px;
   position: relative;
}
a.switchers_items:hover,
a.switchers_items.active{
   background: #cc0033;
}
a.switchers_items:before {
   position: absolute;
   content: '';
   height: 10px;
   width: 10px;
   background: #c82129;
   top: 99%;
   right: 15px;
   clip-path: polygon(50% 50%, 0 0, 100% 0);
}


/*====================single store========*/

.single_store {
   padding-bottom: 100px;
   background: #f6f8fc;
}

.single_store_container {
   display: flex;
   grid-gap: 30px;
   align-items: flex-start;
   justify-content: center;
   position: relative;
}

.side_bar {
   flex: 0 0 300px;
   display: flex;
   flex-direction: column;
   grid-gap: 20px;
}

.side_bar_items {
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 0 10px #0001;
   padding: 15px;
}

.side_bar_heading {
    font-size: 18px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    font-weight: 600;
    text-transform: capitalize;
    border-bottom: 2px solid #0001;
    padding-bottom: 10px;
    /* margin-bottom: 10px; */
}

.side_bar_heading i {
   font-size: 15px;
   color: #9cc623;
}

.side_bar_filter_main {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    align-items: flex-start;
    justify-content: center;
}

.side_bar_filter {
   display: flex;
   justify-content: space-between;
   width: 100%;
   align-items: center;
   margin: 5px 0;
}

.filter_label {
   cursor: pointer;
   font-size: 15px;
   font-weight: 500;
   text-transform: capitalize;
   user-select: none;
   flex: 1;
}

.side_bar_filter input[type="checkbox"] {
   cursor: pointer;
   appearance: none;
   height: 15px;
   width: 15px;
   margin: 0;
   display: flex;
   align-items: center;
   outline: none;
   position: relative;
   border: 0.15em solid #0003;
   -webkit-appearance: none;
}

input[type="checkbox"]::before {
   content: "";
   position: absolute;
   width: 9px;
   height: 9px;
   transform: scale(0);
   transition: 0.2s;
}

input[type="checkbox"]:checked:before {
   transform: scale(1);
   background: #ff6a00;
}

.r_c_container {
    display: flex;
    align-items: center;
    grid-gap: 10px;
    max-height: 200px;
    margin-top: 10px;
    overflow: auto;
    flex-direction: column;
}

.s_c_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
    grid-gap: 10px   ;
}
.s_c_list_item{
   padding: 5px 10px;
   background: #0002;
   border-radius: 5px;
   box-shadow: inset 0 0 5px #0001;
   text-transform: capitalize;
   font-size: 14px;
   color: #000;
   font-weight: 500;
}
/* width */

.r_c_container::-webkit-scrollbar {
   width: 5px;
}


/* Track */

.r_c_container::-webkit-scrollbar-track {
   background: #f1f1f1;
}


/* Handle */

.r_c_container::-webkit-scrollbar-thumb {
   background: #0005;
}

.r_c_item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    grid-gap: 10px;
    border-radius: 5px;
    background: #00000007;
    border: 1px solid #0001;
    padding: 10px;
}

.r_c_item:hover {
   background: #0001;
}

.r_c_img {
   width: 45px;
   background: #fff;
   height: 45px;
}

.r_c_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.r_c_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.c_r_title {
   font-size: 16px;
   font-weight: 500;
   text-transform: capitalize;
   color: #000;
}

.c_r_offer {
   font-size: 14px;
   font-weight: 500;
   color: #0009;
   text-transform: capitalize;
}

.stars {
    display: flex;
    grid-gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
p.rating {
    text-align: center;
}

.stars i {
   font-size: 30px;
   color: #0002;
   cursor: pointer;
}

.rating_dis {
   text-align: center;
   padding-top: 5px;
   color: #0009;
   font-weight: 500;
   text-transform: capitalize;
}

.stars i:hover {
   color: #ffb100;
}

.coupons_container_main {
   flex: 1;
   display: flex;
   flex-direction: column;
   grid-gap: 30px;
}

.store_list_header {
   background: #fff;
   border-radius: 10px;
   padding: 15px;
   box-shadow: 0 0 10px #0002;
   display: flex;
   grid-gap: 20px;
}

.store_list_header_img {
   height: 90px;
   flex: 0 0 90px;
   background: #fff;
   clip-path: polygon(100% 0, 100% 70%, 70% 100%, 0 100%, 0 0);
   overflow: hidden;
}

.store_list_header_img .web_imagebox {
   height: 100%;
   width: 100%;
   border-radius: 50%;
   overflow: hidden;
}

.store_list_header_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.store_list_header_content {
   display: flex;
   flex-direction: column;
   grid-gap: 10px;
}

.store_list_header_content h2 {
   font-size: 20px;
   font-weight: 600;
   text-transform: capitalize;
}
.store_breadcrumbs {
    display: flex;
    grid-gap: 10px;
    align-items: center;
    list-style: none;
    justify-content: center;
}

.store_breadcrumbs a {
   font-size: 14px;
   font-weight: 600;
   color: #0009;
}

.store_breadcrumbs a.store_breadcrumbs_active {
   color: #9cc623;
   cursor: default;
}

.store_breadcrumbs i {
   font-size: 15px;
   font-weight: 600;
   color: #0009;
}

.store_list_header_content p {
   font-size: 14px;
   font-weight: 600;
   color: #000000ad;
   display: flex;
   align-items: center;
   grid-gap: 5px;
}

.store_list_header_content p i {
   font-size: 20px;
   color: #5ec963;
}

.coupons_container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   grid-gap: 20px;
}

.coupon {
   background: #fff;
   border-radius: 10px;
   box-shadow: 0 0 10px #0002;
   grid-gap: 15px;
   /* overflow: hidden; */
   flex-direction: column;
   display: flex;
   position: relative;
}

.ribbon2 {
   width: 20px;
   padding: 10px 0;
   position: absolute;
   top: -6px;
   left: 5px;
   font-size: 10px;
   color: #fff;
   text-align: center;
   border-top-left-radius: 3px;
   background: #74dd78;
}

.ribbon2:before {
   height: 0;
   width: 0;
   right: -5.5px;
   top: 0.1px;
   border-bottom: 6px solid #55a758;
   border-right: 6px solid transparent;
}

.ribbon2:before,
.ribbon2:after {
   content: "";
   position: absolute;
}

.ribbon2:after {
   height: 0;
   width: 0;
   bottom: -8.5px;
   left: 0;
   border-left: 10px solid #74dd78;
   border-right: 10px solid #74dd78;
   border-bottom: 10px solid transparent;
}

.ribbon2:before,
.ribbon2:after {
   content: "";
   position: absolute;
}

.coupon_head {
   display: flex;
   grid-gap: 20px;
   padding: 15px 15px 0 35px;
}

.coupon_head_title {
   display: flex;
   flex-direction: column;
   flex: 1;
   grid-gap: 10px;
}

.coupon_badges {
   display: flex;
   justify-content: flex-end;
   align-items: center;
}

.coupon_badge {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    border-radius: 5px;
    padding: 3px 20px;
    justify-content: center;
    box-shadow: inset 0 0 5px #0001;
    flex: 1;
    background: #ebffec;
}

.coupon_badge p {
   font-size: 13px;
   font-weight: 600;
   text-transform: capitalize;
   color: #3e8541;
}

.coupon_badge i {
   color: #3e8541;
   font-size: 14px;
}

.coupons_img {
   height: 80px;
   width: 80px;
}

.coupons_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.coupons_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.cut_icon {
   color: #000;
   font-size: 20px;
   left: -20px;
}

.coupon_content_title {
   font-size: 20px;
   font-weight: 600;
   color: #000;
}

.coupon_content_about {
   font-size: 14px;
   font-weight: 500;
   display: -webkit-box;
   color: #0008;
   -webkit-line-clamp: 1;
   overflow: hidden;
   width: 60%;
   -webkit-box-orient: vertical;
}

.single_store_btn {
    /* margin-bottom: 15px; */
    margin-top: 0;
}

.coupon_content {
    display: flex;
    padding: 0 15px;
    margin-bottom: 10px;
    align-items: center;
}

.coupon_btn p {
   font-size: 15px;
   text-transform: capitalize;
   font-weight: 600;
   grid-gap: 5px;
}

.coupon_content_body p {
   font-size: 14px;
   font-weight: 500;
   color: #0008;
}

.coupon_content_badge {
   display: flex;
   justify-content: space-between;
   border-bottom: 1px dashed #0002;
   padding-bottom: 10px;
   padding: 0 15px 17px 35px;
}

.coupon_content_badge p {
   display: flex;
   align-items: center;
   line-height: 1;
   grid-gap: 5px;
   font-size: 13px;
   font-weight: 500;
   text-transform: capitalize;
}


/*====================category========*/

.categoy_list_container {
   padding-bottom: 100px;
   display: flex;
   flex-direction: column;
   grid-gap: 20px;
}

.categoy_list {
   padding: 30px 0px;
   background: #f6f8fc;
}
.categoy_list_items {
    background: #fff;
    box-shadow: 0 0 10px #0001;
    border-radius: 10px;
    overflow: hidden;
}
.categoy_list_header {
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
}

.category_title {
    display: inline-flex;
    padding: 10px 30px;
    justify-content: center;
    align-items: center;
    background: #fff;
    grid-gap: 10px;
    /* border-radius: 10px 10px 0 0; */
    /* box-shadow: 0 0 10px #d9d9d9; */
}
.categoy_list_header_img {
   height: 70px;
   width: 70px;
}

.categoy_list_header_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.categoy_list_header_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.view_all {
    font-size: 15px;
    text-transform: capitalize;
    /* box-shadow: 0 0 10px #d9d9d9; */
    font-weight: 600;
    color: #000;
    background: #fff;
    /* border-radius: 10px 10px 0 0; */
    padding: 10px 20px;
}

.view_all:hover {
   color: #000;
}

.categoy_list_header_title {
   font-size: 25px;
   padding-top: 5px;
   font-weight: 700;
   text-transform: uppercase;
   color: #333;
}

.categoy_list_body {
   background: #fff;
   border-radius: 0 0 10px 10px;
   box-shadow: 0 10px 10px #00000008;
   padding: 20px !important;
}

.category_list_body_item {
   display: flex;
   flex-direction: column;
   background: #f6f8fc;
   padding: 10px;
   border-radius: 5px;
   box-shadow: inset 0 0 10px #d9d9d9;
   grid-gap: 5px;
   justify-content: center;
   align-items: center;
}

.categoy_list_body_img {
   height: 40px;
   width: 40px;
}

.categoy_list_body_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.categoy_list_body_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.categoy_list_body_title {
   font-size: 15px;
   font-weight: 600;
   color: #333;
   display: -webkit-box;
   overflow: hidden;
   -webkit-line-clamp: 1;
   width: 100%;
   text-align: center;
   -webkit-box-orient: vertical;
}


/*====================single category========*/

.single_category_header {
   margin-bottom: 40px;
}

.single_category_container {
   flex-direction: row-reverse;
}

/*====================modern stores page====================*/

.stores-page {
   --stores-ink: #18243a;
   --stores-muted: #68758b;
   --stores-accent: #e4572e;
   --stores-blue: #2764d8;
}

.stores-page-popular {
   background: #f3f7fb !important;
   padding: 22px 0 34px;
}

.stores-page-directory {
   background: #f3f7fb !important;
   padding: 0 0 72px;
}

.stores-page .container {
   max-width: 1180px;
}

.stores-page .store-lst-bread-main {
   align-items: flex-start;
   margin-bottom: 18px;
}

.stores-page .breadcrumb {
   margin-bottom: 0;
}

.stores-page .breadcrumb li,
.stores-page .breadcrumb li a {
   color: var(--stores-muted);
   font-size: 13px;
}

.stores-page .breadcrumb li + li:before {
   color: #aeb8c8;
}

.stores-page .breadcrumb li a.active {
   color: var(--stores-ink);
   font-weight: 700;
}

.stores-page-intro {
   align-items: center;
   background: linear-gradient(115deg, #18243a 0%, #23446d 64%, #2f76a4 100%);
   border-radius: 18px;
   color: #fff;
   display: flex;
   justify-content: space-between;
   margin-bottom: 30px;
   min-height: 205px;
   overflow: hidden;
   padding: 34px 50px;
   position: relative;
}

.stores-page-intro:after {
   border: 1px solid rgba(255,255,255,.15);
   border-radius: 50%;
   content: '';
   height: 320px;
   position: absolute;
   right: 66px;
   top: -190px;
   width: 320px;
}

.stores-page-intro > div:first-child {
   max-width: 640px;
   position: relative;
   z-index: 1;
}

.stores-eyebrow {
   color: var(--stores-accent);
   display: block;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 1.4px;
   text-transform: uppercase;
}

.stores-page-intro .stores-eyebrow {
   color: #ffd4a8;
   margin-bottom: 11px;
}

.stores-page-intro h1 {
   font-size: clamp(30px, 4vw, 45px);
   font-weight: 800;
   line-height: 1.08;
   margin-bottom: 12px;
}

.stores-page-intro p {
   color: rgba(255,255,255,.78);
   font-size: 15px;
   line-height: 1.6;
   max-width: 520px;
}

.stores-intro-mark {
   align-items: center;
   background: rgba(255,255,255,.11);
   border: 1px solid rgba(255,255,255,.18);
   border-radius: 50%;
   color: #ffd4a8;
   display: flex;
   font-size: 58px;
   height: 136px;
   justify-content: center;
   margin-right: 32px;
   position: relative;
   width: 136px;
   z-index: 1;
}

.stores-section-heading {
   align-items: flex-end;
   display: flex;
   justify-content: space-between;
   margin: 0 0 16px;
}

.stores-section-heading h2 {
   color: var(--stores-ink);
   font-size: 27px;
   font-weight: 800;
   margin-top: 6px;
   text-transform: capitalize;
}

.stores-section-heading > i {
   color: #a9b5c7;
   font-size: 17px;
   padding-bottom: 5px;
}

.stores-directory-heading {
   margin-bottom: 24px;
}

.stores-page .swiper-parent-str-lst {
   height: 174px;
}

.stores-page .swiper-slide {
   height: auto;
}

.stores-page .swiper-slide > a.click {
   background: #fff;
   border: 1px solid #e2e9f2;
   border-radius: 13px;
   box-shadow: 0 8px 22px rgba(28, 54, 89, .06);
   height: 145px;
   padding: 16px;
   transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.stores-page .swiper-slide > a.click:hover {
   border-color: #c8d8ee;
   box-shadow: 0 13px 26px rgba(28, 54, 89, .1);
   transform: translateY(-2px);
}

.stores-page .click .web_imagebox {
   height: 78px;
   width: 100%;
}

.stores-page .merchant {
   color: var(--stores-ink);
   font-size: 14px;
   margin-top: 9px;
}

.stores-page .swiper-button-next,
.stores-page .swiper-button-prev {
   color: var(--stores-blue);
   transform: scale(.7);
}

.stores-page .store-lst-mainwrapper {
   gap: 24px;
   grid-template-columns: minmax(0, 1fr) 290px;
}

.stores-page .str-lst-main,
.stores-page .str-lst-side {
   background: #fff;
   border: 1px solid #e2e9f2;
   border-radius: 14px;
   box-shadow: 0 8px 22px rgba(28, 54, 89, .06);
}

.stores-page .str-lst-main {
   gap: 18px;
   padding: 22px;
}

.stores-page .str-lst-side {
   padding: 22px;
}

.stores-page .str-lst-alpha-main {
   background: #f5f8fc;
   border: 1px solid #e6edf5;
   border-radius: 10px;
   padding: 12px;
}

.stores-page .pill-list.f-18 {
   gap: 7px;
   grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
}

.stores-page .pill-alpha {
   background: #fff;
   border: 1px solid #e1e8f1;
   border-radius: 7px;
   color: #526176;
   font-size: 13px;
   padding: 8px 4px;
   width: 100% !important;
}

.stores-page .pill-alpha:hover,
.stores-page .pill-alpha.active {
   background: var(--stores-blue);
   border-color: var(--stores-blue);
   color: #fff;
}

.stores-page .store_list_main_title {
   border-bottom: 1px solid #e8eef5;
   border-top: 0;
   margin: 9px 0 0;
   padding: 13px 0;
}

.stores-page .sub_heading_main_store {
   color: var(--stores-ink);
   font-size: 17px;
   text-transform: none;
}

.stores-page .about_read_more {
   color: var(--stores-blue);
   font-size: 13px;
}

.stores-page .str-lst-stores-mainwrapper {
   gap: 12px;
   grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.stores-page .str-lst-stores-main {
   align-items: center;
   background: #f7f9fc;
   border: 1px solid #e7edf4;
   border-radius: 11px;
   box-shadow: none;
   gap: 11px;
   min-width: 0;
   padding: 12px;
   transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.stores-page .str-lst-stores-main:hover {
   background: #fff;
   border-color: #c9d9fb;
   transform: translateY(-2px);
}

.stores-page .str-lst-stores-main-img {
   box-shadow: 0 4px 10px rgba(28, 54, 89, .1);
   flex: 0 0 58px;
   height: 58px;
   padding: 9px;
   width: 58px;
}

.stores-page .str-lst-stores-main-name {
   min-width: 0;
}

.stores-page .stores-lst-main-name-title {
   color: var(--stores-ink);
   font-size: 14px;
   line-height: 1.35;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.stores-page .stores-lst-main-name-uses {
   color: var(--stores-muted);
   font-size: 12px;
   margin-top: 3px;
}

.stores-page .str-lst-side .section-header {
   color: var(--stores-ink);
   font-size: 17px;
   font-weight: 800;
   margin-bottom: 18px;
}

.stores-page .str-lst-side .pill-list--category {
   gap: 7px;
}

.stores-page .str-lst-side .pill-cat {
   background: #f4f7fb;
   border: 1px solid #e6edf5;
   border-radius: 7px;
   color: #526176;
   display: block;
   font-size: 13px;
   padding: 8px 10px;
   transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.stores-page .str-lst-side .pill-cat:hover {
   background: #edf3ff;
   border-color: #c9d9fb;
   color: var(--stores-blue);
}

@media (max-width: 900px) {
   .stores-page-intro {
      padding: 32px;
   }

   .stores-intro-mark {
      margin-right: 0;
   }

   .stores-page .store-lst-mainwrapper {
      grid-template-columns: 1fr;
   }
}

@media (max-width: 600px) {
   .stores-page-popular {
      padding-bottom: 26px;
   }

   .stores-page-directory {
      padding-bottom: 44px;
   }

   .stores-page-intro {
      border-radius: 14px;
      min-height: 0;
      padding: 28px 22px;
   }

   .stores-intro-mark {
      display: none;
   }

   .stores-page-intro h1 {
      font-size: 32px;
   }

   .stores-page-intro p {
      font-size: 14px;
   }

   .stores-section-heading h2 {
      font-size: 24px;
   }

   .stores-page .str-lst-main {
      padding: 15px;
   }

   .stores-page .str-lst-stores-mainwrapper {
      gap: 9px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }

   .stores-page .str-lst-stores-main {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
      padding: 12px;
   }

   .stores-page .str-lst-stores-main-img {
      flex-basis: 52px;
      height: 52px;
      width: 52px;
   }

   .stores-page .stores-lst-main-name-title {
      font-size: 13px;
   }

   .stores-page .stores-lst-main-name-uses {
      font-size: 11px;
   }
}

.categories-page {
   --categories-ink: #18243a;
   --categories-muted: #68758b;
   --categories-accent: #e4572e;
   --categories-blue: #2764d8;
   --categories-surface: #ffffff;
   background: #f3f7fb !important;
   padding: 22px 0 72px;
}

.categories-page .container {
   max-width: 1180px;
}

.categories-breadcrumb {
   margin-bottom: 18px;
}

.categories-page .breadcrumb {
   background: transparent;
   padding: 0;
}

.categories-page .breadcrumb li,
.categories-page .breadcrumb li a {
   color: var(--categories-muted);
   font-size: 13px;
}

.categories-page .breadcrumb li + li:before {
   color: #aeb8c8;
}

.categories-page .breadcrumb li a.active {
   color: var(--categories-ink);
   font-weight: 700;
}

.categories-hero {
   align-items: center;
   background: linear-gradient(115deg, #18243a 0%, #23446d 64%, #2f76a4 100%);
   border-radius: 18px;
   color: #fff;
   display: flex;
   justify-content: space-between;
   margin-bottom: 34px;
   min-height: 218px;
   overflow: hidden;
   padding: 38px 52px;
   position: relative;
}

.categories-hero:after {
   background: rgba(255,255,255,.08);
   border: 1px solid rgba(255,255,255,.16);
   border-radius: 50%;
   content: '';
   height: 340px;
   position: absolute;
   right: 72px;
   top: -190px;
   width: 340px;
}

.categories-hero-copy {
   max-width: 620px;
   position: relative;
   z-index: 1;
}

.categories-eyebrow {
   color: var(--categories-accent);
   display: block;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 1.5px;
   text-transform: uppercase;
}

.categories-hero .categories-eyebrow {
   color: #ffd4a8;
   margin-bottom: 12px;
}

.categories-hero h1 {
   font-size: clamp(32px, 4vw, 48px);
   font-weight: 800;
   line-height: 1.05;
   margin-bottom: 14px;
}

.categories-hero p {
   color: rgba(255,255,255,.78);
   font-size: 16px;
   line-height: 1.6;
   max-width: 510px;
}

.categories-hero-mark {
   align-items: center;
   background: rgba(255,255,255,.11);
   border: 1px solid rgba(255,255,255,.18);
   border-radius: 50%;
   color: #ffd4a8;
   display: flex;
   font-size: 62px;
   height: 142px;
   justify-content: center;
   margin-right: 34px;
   position: relative;
   width: 142px;
   z-index: 1;
}

.categories-content.category-lst-mainwrapper {
   align-items: flex-start;
   flex-direction: row;
   gap: 34px;
}

.categories-page .category-lst-main {
   gap: 18px;
}

.categories-section-heading {
   align-items: flex-end;
   display: flex;
   justify-content: space-between;
   margin-bottom: 3px;
}

.categories-section-heading h2 {
   color: var(--categories-ink);
   font-size: 28px;
   font-weight: 800;
   margin-top: 7px;
}

.categories-section-heading > i {
   color: #a9b5c7;
   font-size: 18px;
   padding-bottom: 5px;
}

.categories-page .category-lst-main-ct {
   align-items: stretch;
   background: var(--categories-surface);
   border: 1px solid #e2e9f2;
   border-radius: 14px;
   box-shadow: 0 8px 22px rgba(28, 54, 89, .06);
   gap: 26px;
   padding: 24px;
   transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.categories-page .category-lst-main-ct:hover {
   border-color: #c8d8ee;
   box-shadow: 0 14px 28px rgba(28, 54, 89, .1);
   transform: translateY(-2px);
}

.categories-page .cat-lst-pill-area {
   gap: 14px;
}

.categories-page .cat-lst-pill-area > .section-header {
   color: var(--categories-ink);
   font-size: 20px;
   font-weight: 800;
}

.categories-page .pill-list--category {
   gap: 8px;
}

.categories-page .pill-list--category li a {
   background: #f4f7fb;
   border: 1px solid #e6edf5;
   border-radius: 7px;
   color: #526176;
   display: block;
   font-size: 13px;
   padding: 8px 11px;
   transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.categories-page .pill-list--category li a:hover {
   background: #edf3ff;
   border-color: #c9d9fb;
   color: var(--categories-blue);
}

.categories-page .cat-lst-view-all-btn a {
   color: var(--categories-blue);
   font-size: 13px;
   font-weight: 800;
}

.categories-page .visible-lg-flex {
   align-self: center;
   background: #fff7f1;
   border: 1px solid #ffe4d0;
   box-shadow: none;
   flex: 0 0 96px;
   height: 96px;
   padding: 16px;
}

.categories-page .visible-lg-flex .web_imagebox {
   height: 62px;
   width: 62px;
}

.categories-page .category-lst-sidebar {
   flex: 0 0 290px;
   gap: 18px;
}

.categories-page .category-lst-sidebar-main {
   background: var(--categories-surface);
   border: 1px solid #e2e9f2;
   border-radius: 14px;
   box-shadow: 0 8px 22px rgba(28, 54, 89, .06);
   padding: 22px;
}

.categories-card-heading {
   align-items: center;
   display: flex;
   gap: 11px;
   margin-bottom: 18px;
}

.categories-card-heading h2 {
   color: var(--categories-ink);
   font-size: 17px;
   font-weight: 800;
}

.categories-card-icon {
   align-items: center;
   background: #fff1e8;
   border-radius: 9px;
   color: var(--categories-accent);
   display: flex;
   font-size: 14px;
   height: 32px;
   justify-content: center;
   width: 32px;
}

.categories-card-icon--stores {
   background: #edf3ff;
   color: var(--categories-blue);
}

.categories-page .category-lst-sidebar .pill-list--category {
   gap: 7px;
}

@media (max-width: 900px) {
   .categories-hero {
      padding: 34px;
   }

   .categories-hero-mark {
      margin-right: 0;
   }

   .categories-content.category-lst-mainwrapper {
      flex-direction: column;
   }

   .categories-page .category-lst-main,
   .categories-page .category-lst-sidebar {
      width: 100%;
   }

   .categories-page .category-lst-sidebar {
      flex-direction: row;
   }
}

@media (max-width: 600px) {
   .categories-page {
      padding-bottom: 44px;
   }

   .categories-hero {
      border-radius: 14px;
      margin-bottom: 26px;
      min-height: 0;
      padding: 30px 24px;
   }

   .categories-hero-mark {
      display: none;
   }

   .categories-hero h1 {
      font-size: 34px;
   }

   .categories-hero p {
      font-size: 14px;
   }

   .categories-section-heading h2 {
      font-size: 24px;
   }

   .categories-page .category-lst-main-ct {
      gap: 18px;
      padding: 18px;
   }

   .categories-page .visible-lg-flex {
      display: none;
   }

   .categories-page .category-lst-sidebar {
      flex-direction: column;
   }
}


/*==================about us========*/
.about{
   padding-bottom: 100px;
}
.about_container {
    display: flex;
    box-shadow: 0 0 10px #0001;
    border-radius: 10px;
    overflow: hidden;
}
.about_sidebar {
    flex: 0 0 300px;
    background: #ebebeb;
    padding: 20px 15px;
    position: relative;
}
.about_tabs{
   list-style: none;
}
.about_sub_heading {
    color: #000;
    margin-bottom: 20px;
    font-size: 22px;
}
.about_tabs li a {
    color: #0008;
    font-size: 15px;
    font-weight: 600;
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    text-transform: capitalize;
    margin: 5px 0;
    transition: 0.2s ease;
}
.about_tabs li:hover a, .about_tabs li.active a {
    color: #8b6a5e;
    background: #fff;
}
.about_sub_heading.social {
    margin-top: 15px;
}
.footer_social_icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    grid-gap: 12px;
    margin-top: 30px;
}
.footer_social_icon.about-page {
    margin-top: 20px;
}
.footer_social_icon_items {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    border-radius: 50%;
    transition: .3s ease;
}
.footer_social_icon_items.fb {
    background: #3b5998;
}
.footer_social_icon_items.twtr {
    background: #1DA1F2;
}
.footer_social_icon_items.intgrm {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}  
.footer_social_icon_items.pntrst {
    background: #c8232c;
}
.main_about {
    background: #fff;
    flex: 1;
    padding: 20px;
    min-height: 400px;
}
.content_wrapper p {
    line-height: 1.7;
    font-weight: 400;
    color: #545454;
    font-size: 15px;
    word-break: break-word;
}

/*============contact==============*/

.contact_us_container {
   display: flex;
   justify-content: safe center;
   flex-direction: column;
}

.contact_text {
   padding-top: 10px;
   font-size: 15px;
   color: #0008;
   font-weight: 500;
}

.contact_social_icons {
    margin-top: 20px;
    padding: 20px !important;
}

.contact_us {
   display: flex;
   align-items: center;
   justify-content: center;
   background: #fff;
   position: relative;
   grid-gap: 10px;
   padding-bottom: 100px;
}

.container_wrapper {
   width: 100%;
   border-radius: 12px;
}

.container_wrapper .content {
    display: flex;
    grid-gap: 30px;
}

.image-box {
   height: 400px;
   flex: 0 0 400px;
}
.image-box .web_imagebox{
   height: 100%;
   width: 100%;
}
.image-box .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.content .topic {
   font-size: 22px;
   font-weight: 600;
   color: #7070a9;
   text-transform: capitalize;
}

.content form {
    flex: 1;
}
.content .input-box {
   height: 50px;
   width: 100%;
   margin: 16px 0;
   position: relative;
}

.content .input-box input {
   position: absolute;
   height: 100%;
   width: 100%;
   border-radius: 6px;
   font-size: 16px;
   outline: none;
   padding: 16px;
   background: #f9f9f9;
   border: 2px solid transparent;
   transition: all 0.3s ease;
}

.content .input-box input:focus,
.content .input-box input:valid {
   border-color: #bbc3ff;
   background-color: #fff;
}

.content .input-box label {
   position: absolute;
   left: 18px;
   top: 50%;
   color: #20202d;
   font-size: 15px;
   pointer-events: none;
   transform: translateY(-50%);
   transition: all 0.3s ease;
   font-size: 14px;
   font-weight: 600;
}

.content .input-box input:focus~label,
.content .input-box input:valid~label {
   top: 0;
   left: 12px;
   display: 14px;
   color: #929ffd;
   background: #fff;
}

.content .message-box {
   min-height: 100px;
   position: relative;
}

.content .message-box textarea {
   position: absolute;
   width: 100%;
   border-radius: 6px;
   height: 100px;
   font-size: 16px;
   resize: none;
   outline: none;
   padding: 16px;
   background: #f9f9f9;
   border: 2px solid transparent;
   transition: all 0.3s ease;
}

.content .message-box textarea:focus {
   border-color: #bbc3ff;
   background-color: #fff;
}

.content .input-box textarea:focus~label,
.content .input-box textarea:valid~label {
   top: 0;
   left: 12px;
   display: 14px;
   color: #929ffd;
   background: #fff;
}

.content .message-box label {
   position: absolute;
   font-size: 16px;
   color: #20202d;
   left: 18px;
   top: 6px;
   pointer-events: none;
   transition: all 0.3s ease;
   font-size: 14px;
   font-weight: 600;
}

.content .message-box textarea:focus~label {
   left: 12px;
   top: -10px;
   color: #929ffd;
   font-size: 14px;
   background: #fff;
}

.content .input-box input[type="submit"] {
   color: #fff;
   background: #9cc623;
   font-size: 18px;
   border: 0;
   display: flex;
   line-height: 0;
   justify-content: center;
   align-items: center;
   font-weight: 500;
   cursor: pointer;
   width: 180px;
}

.content .input-box input[type="submit"]:hover {
   background-color: #86ab1e;
}

@media (max-width:1000px) {
   .content .image-box {
      max-width: 70%;
   }
   .content {
      padding: 10px 0;
   }
}

@media (max-width:900px) {
   .content .image-box {
      display: none;
   }
   .content form {
      width: 100%;
   }
}


/*==================footer========*/

.footer {
   background: #212121;
}

.subs {
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    box-shadow: 0 0 10px #0001;
    margin-top: -91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}

.subs_content {
   display: flex;
   flex-direction: column;
   grid-gap: 5px;
}

.subs_heading {
   font-size: 30px;
   font-weight: 600;
   color: #363636;
}

.subs_about {
   font-size: 15px;
   color: #0009;
   font-weight: 500;
}

.sub_form_wrapper {
    border-radius: 5px;
    width: 500px;
    display: flex;
    background: #0001;
    position: relative;
    height: 45px;
    align-items: center;
    padding-right: 5px;
}

.sub_input {
   flex: 1;
   border: none;
   background: transparent;
   outline: 0;
   padding: 0 10px;
   font-size: 15px;
   font-weight: 500;
}

.sub_btn {
   background: #28324c;
   color: #fff;
   border: none;
   grid-gap: 5px;
   outline: none;
   font-size: 15px;
   font-weight: 600;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 5px;
   padding: 10px;
   height: 80%;
}

.footer_links {
    padding: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.footer_logo{
   float: inherit !important;
   padding: 0;
}

.footer_links_heading {
   font-size: 20px;
   font-weight: 600;
   color: #fff;
   text-transform: uppercase;
   margin-bottom: 15px;
}

.footer_links p {
   font-size: 15px;
   color: #fff8;
   font-weight: 400;
}

.footer_menu {
   display: flex;
   flex-direction: column;
   grid-gap: 10px;
   list-style: none;
}

.footer_menu li a {
   font-size: 15px;
   font-weight: 500;
   color: #fff8;
}

.footer_menu li a:hover {
   color: #fff;
}

.footer_stores {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 10px;
}

.footer_links_img {
    height: 80px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    position: relative;
}
.footer_links_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.footer_links_img .web_imagebox img {
   max-height: 100%;
   max-width: 100%;
}

.discription {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-top: 15px;
}

.social_icons {
   display: flex;
   align-content: center;
   grid-gap: 10px;
}

.icon_item {
   height: 45px;
   width: 45px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: red;
   border-radius: 50%;
   border: 3px solid #282828;
   box-shadow: 0 0 10px #121212;
}

.icon_item:nth-child(1) {
   background: #1877f2;
}

.icon_item:nth-child(2) {
   background: #d54a3f;
}

.icon_item:nth-child(3) {
   background: #5da9dd;
}

.icon_item:nth-child(4) {
   background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}

.icon_item i {
   font-size: 16px;
   color: #fff;
}


/*=================copy_right=================*/

.copy_right {
   padding: 15px 0;
   background: #1a1a1a;
}

.copy_right_text {
   color: #fff8;
   font-size: 15px;
   font-weight: 500;
}

.modal-content {
   overflow: hidden;
   border: 0;
}

.card_img {
   display: flex;
   justify-content: center;
}

.card_img .web_imagebox {
   width: 90px;
   flex: 0 0 auto;
   height: 90px;
   display: flex;
   justify-content: center;
}

.card_img img {
   border-radius: 10px;
   border: 5px solid #fff;
}





.modal-header {
          padding: 0 !important;
      }
      .modal-title {
          background: #9cc623;
          display: inline-block;
          position: relative;
          left: 250px;
          border-radius: 0 0 5px 5px;
          box-shadow: -3px 3px 0px #0002;
          color: #fff;
          top: -10px;
          padding: 5px 30px;
      }

      .modal-title:before {
          position: absolute;
          content: '';
          height: 10px;
          width: 10px;
          background: #7fa513;
          top: 0;
          right: 100%;
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
      }

      .modal-content {
          overflow: inherit;
          border: 0;
          display: flex;
          border-radius: 10px;
      }

      .store_title_modal {
          display: flex;
          grid-gap: 20px;
          padding-bottom: 20px;
          align-items: center;
          margin-top: -10px;
          padding: 0 20px;
          padding-bottom: 15px;
      }
      .store_modal {
          font-size: 20px;
          font-weight: 600;
          color: #4d6603;
      }
      .modal_title_img {
          height: 80px;
          flex: 0 0 auto;
          width: 80px;
          /* border: 5px solid #fff; */
          box-shadow: 0 0 10px #0001;
          background: #fff;
          border-radius: 50%;
          overflow: hidden;
      }
      .modal_title_img .web_imagebox {
         height: 100%;
         width: 100%;
      }

      .modal_title_img .web_imagebox img {
         max-height: 100%;
         max-width: 100%;
         border-radius: 5px;
      }

      .close_modal {
         height: 30px;
         width: 30px;
         background: #9cc623 !important;
         opacity: 1;
         border-radius: 50%;
         position: absolute;
         top: -15px;
         right: -15px;
      }

      .close_modal:hover,
      .close_modal:focus {
         opacity: 1;
      }

      .close_modal span {
         font-size: 25px;
         font-weight: 600;
         text-shadow: none;
         color: #fff;
      }
      .modal-body {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          overflow: hidden;
          padding: 0 !important;
      }
      .modal_body_main {
          padding: 20px;
          display: flex;
          flex-direction: column;
          grid-gap: 10px;
          align-items: center;
      }
      .modal_body_main p {
          font-size: 14px;
          font-weight: 500;
          color: #0009;
          text-align: center;
      }
      .modal_code {
          padding: 8px 0;
          max-width: 200px;
          width: 100%;
          border: 2px dashed #9cc623;
          background: #f7ffdf;
          font-weight: 600;
          border-radius: 5px;
          display: flex;
          font-size: 15px;
          align-items: center;
          justify-content: center;
      }
      .visit_site {
          font-size: 14px;
          font-weight: 500;
          color: #ffffff;
          padding: 8px 15px;
          /* padding: 2px 5px; */
          display: inline-block;
          text-transform: capitalize;
          letter-spacing: 1px;
          border-radius: 10px 0;
          background: #87a72c;
          transition: 0.3s ease;
      }
      .visit_site i{
         font-size: 15px;
      }
      .visit_site:hover{
          border-radius: 5px;
      }
      .modal_body_sidebar {
          flex: 0 0 200px;
          background: #87a72c;
          box-shadow: 0 0 10px #0001;
          display: flex;
          justify-content: center;
          border-radius: 0 10px 10px 0;
          flex-direction: column;
      }

      .modal_badge {
          display: flex;
          align-items: flex-start;
          grid-gap: 10px;
         justify-content: center;
         align-items: center;
          padding: 10px;
          border-bottom: 1px solid #fff3;
      }
      .modal_badge:last-of-type{
         border: 0;
      }
      .modal_badge_content{
         display: flex;       
         grid-gap: 2px;
         flex-direction: column;
      }
      .modal_badge_content_title{
         font-size: 14px;
         font-weight: 400;
         text-transform: capitalize;
         color: #fff;
      }
      .modal_badge_content_title ~ p {
          font-weight: 500;
          color: #fff9;
          font-size: 13px;
      }
      .modal_badge .stars i{
         font-size: 20px;
         color: #fff8;
      }
      .modal_badge .stars i:hover{
         color: #ffc107;
      }
      .svg_icon{
         height: 15px;
         width: 15px;
         fill: #fff;
         filter: drop-shadow(0 1px 2px rgba(0,0,0,.25);
      }
/*--------------------------shoe hide css----------------------------*/

.hide_992 {
   display: flex;
}

.show_992 {
   display: none !important;
}