* {
   margin: 0;
   padding: 0;
   font-family: 'Georama', 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;
   color: #fff;
}

.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; 
}
/*=================header=========================*/

.header {
   background-color: #20202d;
   box-shadow: 0 0 10px #0003;
   position: relative;
   padding: 15px 0;
}

nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   grid-gap: 200px;
}

.navigation {
   display: flex;
   flex-direction: column;
   grid-gap: 20px;
}

.logo_container {
   height: 60px;
   display: block;
   position: relative;
   z-index: 99;
   flex: 0 0 130px;
   padding: 10px 0;
}

.search_container {
   display: flex;
   justify-content: flex-end;
   flex: 1;
   position: relative;
}

.search_container input {
   width: 100%;
   padding: 10px 20px;
   border-radius: 5px;
   border: 0;
   outline: 0;
   background: #fff;
   font-size: 15px;
   font-weight: 500;
   color: #606060;
}

.search_container .search_icon {
   padding: 10px 20px;
   position: absolute;
   right: 0;
   border-radius: 0 5px 5px 0;
   top: 0;
   bottom: 0;
   border: 0;
   outline: none;
   background-color: #9cc623;
   cursor: pointer;
}

.search_container i {
   font-size: 15px;
   color: #fff;
}

.search_container span {
   font-size: 14px;
   color: #fff;
   line-height: 1;
   font-weight: 500;
   text-transform: capitalize;
}

.serach_result_container {
    position: absolute;
    background: #fff;
    top: 100%;
    margin-top: 10px;
    left: 0;
    z-index: 10;
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 10px #0001;
}

.active_search_result {
   display: block;
}

.search_content {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px;
    border-bottom: 1px dashed #0001;
}

.serach_result_wrapper {
    grid-gap: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-height: 300px;
    padding: 0px 15px;
    overflow: auto;
}
.serach_result_item {
   display: flex;
   align-items: center;
   grid-gap: 10px;
   border-radius: 5px;
   color: #000;
   padding: 5px;
   position: relative;
}
.serach_result_item:before{
   position: absolute;
   content: '';
   height: 70%;
   box-shadow: 0 0 0 1px #e2e9ed;
   width: 100%;
   bottom: 0;
   transition: 0.3s ease;
   left: 0;
   border-radius: 5px;
}
.serach_result_item:hover:before {
   background: #0001;
}

.serach_result_item:hover,
.serach_result_item:focus {
   color: #000;
}

.search_result_img {
   width: 50px;
   height: 50px;
   border-radius: 5px;
   overflow: hidden;
   background: #fff;
}

.serach_result_item:hover .search_result_img img {
   transform: scale(1.3);
}

.search_result_img .web_imagebox {
   height: 100%;
   width: 100%;
}

.search_result_img .web_imagebox img {
   max-height: 100%;
   transition: 0.3s ease;
   max-width: 100%;
}
.search_result_content {
    padding-top: 19px;
    display: flex;
    align-items: center;
    flex-direction: column;
    grid-gap: 3px;
}
.search_result_content h2{
   font-size: 16px;
   font-weight: 500;
   line-height: 1;
}
.search_result_content p {
    font-size: 14px;
    color: #000000a3;
    line-height: 1;
}
.menu {
   display: flex;
   align-items: center;
   grid-gap: 30px;
   list-style: none;
   z-index: 9;
}

.close_btn {
   display: none;
}

.menu li {
   height: 35px;
}

.menu li a {
    height: 100%;
    width: auto;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.menu li a:before {
   position: absolute;
   bottom: 0;
   left: 50%;
   transform: translate(-50%, 0);
   height: 2px;
   width: 0;
   background: #9cc623;
   content: '';
   transition: 0.3s ease;
}

.menu li a:hover:before,
.menu li.active a:before {
   width: 100%;
}
.menu_toggler{
   display: none;
}
.menu_toggler i {
   font-size: 25px;
   font-weight: 500;
   color: #ffffff;
}

.nav_container {
   display: flex;
   position: relative;
   justify-content: space-between;
}

.categories {
   grid-gap: 5px;
   align-items: center;
   display: flex;
   font-weight: 500;
   background: #9cc623;
   border-radius: 5px;
   padding: 10px 20px;
   text-transform: capitalize;
}

.categories i {
   font-size: 13px;
   color: #fff;
   padding-left: 5px;
}

.categories .svg_icon {
   fill: #fff;
}

.categories p {
   font-size: 15px;
   font-weight: 500;
   color: #fff;
}

.categories_mainwrapper {
   position: absolute;
   align-items: flex-start;
   top: calc(100% + 15px);
   left: 0px;
   display: flex;
   width: 100%;
}

.categories_container {
   display: none;
   flex: 0 0 250px;
   border-radius: 5px;
   box-shadow: 0 0 10px #0001;
   padding: 5px 0;
   background: #fff;
   z-index: 10;
   list-style: none;
}

.categories_container_items {
   display: flex;
   justify-content: space-between;
   align-items: center;
   color: #7a7a7a;
   text-transform: capitalize;
   padding: 10px 20px;
   font-size: 16px;
   font-weight: 500;
   margin: 2px 0;
}

.categories_container li:hover .categories_container_items {
   background: #f7f7f7;
   color: #9cc623;
}

.categories_container_items i {
   font-size: 13px;
   color: #0005;
}

.categories_container li:hover .categories_container_items i {
   color: #9cc623;
}

.categories_dropdown {
   background: white;
   border-radius: 5px;
   z-index: 10;
   padding: 15px;
   flex: 1;
   box-shadow: 0 0 5px #0001;
   display: none;
   grid-template-columns: repeat(4, 1fr);
   grid-gap: 15px;
   max-height: 300px;
   overflow: auto;
}

.categories_dropdown.active {
   display: grid;
}

.categories_dropdown_items {
   display: flex;
   flex-direction: column;
   grid-gap: 5px;
   text-transform: capitalize;
}

.categories_dropdown_title {
   color: #000;
   font-weight: 600;
   display: inline-block;
}

.categories_dropdown_title:hover {
   color: #9cc623;
}

.categories_dropdown_text {
   color: #0008;
   font-size: 14px;
   font-weight: 400;
   padding-top: 10px;
}

.categories_dropdown_text:hover {
   display: inline-block;
   color: #9cc623;
}


/*=======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;
}


/*==================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;
}