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

:root{
  --gray-color: #8E8E8E;
  --text-color: #121212;
  --white-color: #fff;
  --orange-color: #F60;
  --bg-color: #251733;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  font-family: 'Montserrat', sans-serif;
  line-height: normal;
  font-style: normal;
  background: rgba(255, 255, 255, 0.60);
  overflow-x: hidden;
}
.container-fluid{
  max-width: 1320px;
  padding: 0 10px;
  margin: auto;
}
input{
  background-color: transparent;
  box-shadow: none;
  border: 1px solid #E5E5E5;
}
input:focus, input:focus-visible{
  background-color: transparent;
  box-shadow: none;
  border-color: var(--orange-color);
  outline: none;
}
.main-btn, .trans-btn{
  border: 0;
  background: transparent;
  box-shadow: none;
  /* border: 1px solid #E5E5E5; */
  border-radius: 28px;
}
.trans-btn{
  color: var(--text-color);
font-size: 16px;
font-weight: 500;
display: flex;
justify-content: center;
align-items: center;
gap: 8px;
min-height: 52px;
padding: 14px;
border: 1px solid #E5E5E5;
}
.orange-btn{
  background-color: var(--orange-color);
  color: #fff;
}
h1, .heading h2{
  color: var(--text-color);
font-size: 60px;
font-weight: 600;
letter-spacing: -2px;
margin-bottom: 30px;
}
  h2{
    color: var(--text-color);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 30px;
  }
p{
  color: #2F2F2F;
font-size: 16px;
font-weight: 400;
line-height: 26px; /* 162.5% */
letter-spacing: 0.5px;
}
section{
  padding: 80px 0;
}
h6{
  color: var(--text-color);
font-size: 20px;
font-weight: 600;
}
a, a:hover{
  text-decoration: none !important;
  color: var(--text-color);
}
/* header */
.search-box button{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  background: transparent;
  border: 0;
}
.search-box .filter_search{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  left: auto;
  background: transparent;
  border: 0;
}
.search-box input{
  border-radius: 28px;
  max-width: 400px;
  height: 52px;
  padding-left: 47px;
  padding-right: 30px;
}
/* mega header */
.mega-header{
  border-top: 1px solid #E5E5E5;
border-bottom: 1px solid #E5E5E5;
padding: 10px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.dropdown-submenu:hover > .nav-link:after {
  border-left-color: #fff;
}
.mega-header .nav-link {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--text-color);
font-size: 16px;
font-weight: 400;
line-height: 20px;
}
.navbar-nav  .nav-item:hover> .nav-link,.navbar-nav  .nav-item.active> .nav-link{
  /* font-weight: 500; */
  color: var(--orange-color);
}
.mega-header .dropdown-toggle::after {
  border: 0;
  background: url(../images/down-arrow.png) no-repeat;
  width: 20px;
  height: 20px;
}
.mega-header .dropdown-menu[data-bs-popper] {
  top: 46px;
  border: 0;
  border-top: 1px solid #E5E5E5;
  border-radius: 0px 0px 0px 20px;
  background: var(--white-color);
  box-shadow: 0px 10px 14px 0px rgba(18, 18, 18, 0.08);
  padding: 16px 0 16px 16px;
}
.mega-header .dropdown-item {
  display: flex;
 padding: 10px;
 color: var(--text-color);
font-size: 16px;
font-weight: 400;
line-height: 20px; /* 125% */
border-radius: 12px 0px 0px 12px;
transition: all 0.3s ease-in-out;
justify-content: space-between;
}
.mega-header .dropdown-submenu {
  position: initial;
}
.mega-header .dropdown-menu li{
 border-right: 2px solid #e5e5e5;
}
.mega-header .dropdown-item:hover {
  background: var(--orange-color);
  color: var(--white-color);
}
.mega-header  .dropdown-submenu:hover > .dropdown-menu {
  height: 100%;
  top: 6px;
  border-radius: 0 0 20px 0;
  border: 0;
  padding-left: 10px;
}
.mega-header  .dropdown-submenu:hover > .dropdown-menu li{
  border: 0;
}
/* .mega-header .navbar-toggler:focus, .mega-header .navbar-toggler:focus-visible{
  outline: none;
  box-shadow: none;
  border: 0;
}
.mega-header .responsive-menu[aria-expanded="true"]{
  background: none;
  display: none;
} */
.responsive-menu{
  position: relative;
  width: 24px;
  height: 16px;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
 
.responsive-menu span {
  background: black;
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: .5s;
}
 
.responsive-menu span:nth-child(1) {top: 0;}
.responsive-menu span:nth-child(2) {top: 50%;}
.responsive-menu span:nth-child(3) {top: 100%;}
 
.responsive-menu[aria-expanded="true"] span:nth-child(1) {transform: rotate(45deg); top: 50%;}
.responsive-menu[aria-expanded="true"] span:nth-child(2) {opacity: 0;}
.responsive-menu[aria-expanded="true"] span:nth-child(3) {transform: rotate(-45deg); top: 50%}
/* If you want to align the submenu to the left */
.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
}


/* toggle button */

.switch > span {
  position: absolute;
  top: 16px;
  pointer-events: none;
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

input.check-toggle-round-flat:checked ~ .off {
  color: #fff;
}

input.check-toggle-round-flat:checked ~ .on {
  color: #8E8E8E;
}

.switch > span.on {
  left: 10px;
  padding-left: 2px;
  color: #fff;
}

.switch > span.off {
  right: 5px;
  padding-right: 4px;
  color: #8E8E8E;
}

.check-toggle {
  position: absolute;
  visibility: hidden;
  width: 100%;
  height: 100%;
  right: 0;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  user-select: none;
}

input.check-toggle-round-flat + label {
  padding: 2px;
  width: 93px;
  height: 52px;
  background-color: rgba(255, 255, 255, 0.60);
  border-radius: 60px;
  border: 1px solid #e5e5e5;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}

input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: rgba(255, 255, 255, 0.60);
  border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 45px;
  background-color: #000;
  border-radius: 52px;
  transition: margin 0.2s;
}
input.check-toggle-round-flat:checked + label:after {
  margin-left: 44px;
}

/* modal */
.modal-content {
  background-color: #ecedf0;
  border: 0px;
  border-radius: 20px;
  padding: 60px;
}
.modal-dialog button.close {
  position: absolute;
  top: 20px;
  right: 40px;
  border: 0;
}
span.skip {
  height: 25px;
  display: inline-block;
}
span.s-all.btn {
  background: #ff6600;
  margin-top: 0;
  color: #fff !important;
}
.popup-heading h2{
  font-size: 30px;
  font-weight: 800;
}
.facebook-login, .google-login {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  height: 60px;
  border-radius: 10px;
  padding: 16px 30px;
  margin: 15px 0;
  position: relative;
  display: block;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.facebook-login:hover, .google-login:hover{
  color: #ffffff;
}
.facebook-login {
  background: #3b5999;
}
.google-login {
  background: #de4b39;
}
.facebook-login::before, .google-login::before {
  position: absolute;
  font-family: 'Font Awesome 5 Brands';
  left: 60px;
  top: 20px;
  font-size: 22px;
  color: #ffffff;
  
}
.facebook-login::before {
  content: "\f39e";
}
.google-login::before {
  content: "\f1a0";
}
.or-divider {
  font-size: 18px;
  text-align: center;
  position: relative;
}

.or-divider::before {
  content: "";
  position: absolute;
  right: 55%;
  top: 15px;
  width: 152px;
  background: #9aa3af;
  height: 1px;
}
.or-divider::after {
  content: "";
  position: absolute;
  left: 55%;
  top: 15px;
  width: 152px;
  background: #9aa3af;
  height: 1px;
}
a[class*="sign"] {
  background: #fff;
  display: block;
  padding: 16px 30px 16px 80px;
  margin: 15px 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #484646;
  position: relative;
}
.sign-phone::before {
  content: "\f3cd";
  position: absolute;
  top: 18px;
  left: 40px;
  font-family: 'Font Awesome 5 Free';
  font-size: 24px;
  color: #484646;
  font-weight: 700;
}
.sign-email::before {
  content: "\f0e0";
  position: absolute;
  top: 18px;
  left: 40px;
  font-family: 'Font Awesome 5 Free';
  font-size: 24px;
  color: #484646;
  font-weight: 700;
}
.popup-footer h6{
  font-size: 18px;
}
.popup-footer a, .form-fields a {
  color: #484646;
  text-decoration: underline;
  font-weight: 800;
  transition: ease-in-out ;
}
.bounce {
  transition: transform .2s;
  -webkit-transition: transform .2s;
  background-color: var(--orange-color);
  color: #fff;
  padding: 10px;
  min-width: 170px;
}
.bounce:hover {
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  -webkit-box-shadow: 0px 4px 10px -9px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 4px 10px -9px rgba(0,0,0,0.75);
  box-shadow: 0px 4px 10px -9px rgba(0,0,0,0.75);
  background-color: var(--orange-color);
  color: #fff;

}
.popup-body .form-control {
  border-radius: 10px;
  padding: 16px 15px;
  color: #484646;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  outline: 0px;
  min-height: 60px;
}
.input-group {
  padding-left: 26px;
  font-size: 16px;
  color: #484646;
  margin-bottom: 8px;
}
.input-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ffffff;
  border: 1px solid #707070;
  border-radius: 2px;
}
.input-group input:checked ~ .checkmark {
  background-color: var(--orange-color);
  border-color: var(--orange-color);
}
.input-group .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  display: none;
}
.input-group input:checked ~ .checkmark::after {
  display: block;
}
.input-group a {
  font-weight: 700;
  text-decoration: underline;
  padding: 0 5px;
}
.submit-btn{
    background: var(--orange-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 30px;
    border-radius: 10px;
    min-width: 170px;
}
.form-control {
  border-radius: 10px;
  padding: 16px 30px;
  color: #484646;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  outline: 0px;
  min-height: 60px;
}
.form-control, .modal-content .btn {
  margin: 15px 0 0;
  text-decoration: none !important;
}
.popup-body .n-dropdown{
  position: absolute;
  top: 0;
  left: 0;
  max-width: 150px;
  max-height: 60px;
  display: flex;
  align-items: center;
}
.popup-body .n-dropdown:focus, .popup-body .n-dropdown:focus-visible{
  outline: none;
  box-shadow: none;
}
.popup-body .n-dropdown .form-control{
  padding: 16px 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select-form-group .form-control{
  padding-left: 160px;
}
/* hero section */
.hero-content{
  max-width: 1620px;
  display: flex;
  gap: 15px;
  margin-left: auto;
  align-items: center;
}
.hero-left{
  width: 479px;
}
.hero-right{
  width: calc(100% - 479px);
  height: 540px;
}
.hero-right img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-search{
  position: relative;
}
.hero-search input{
  width: 618px;
  height: 80px;
  border-radius: 16px;
background: #FFF;
box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.10);
padding-left: 18px;
}
.hero-search button{
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  border-radius: 12px;
  padding: 16px 24px;
}
/* categries section */
.categries-boxs{
  display: flex;
  /* justify-content: space-around; */
  flex-wrap: wrap;
  gap: 24px;
}
.categries-box{
  width: 195px;
  height: 195px;
  border-radius: 20px;
  border-radius: 20px;
  background: #EBF9F0;
  overflow: hidden;
  padding: 20px 0 0 20px;
  position: relative;
}
.categries-box img{
  position: absolute;
  bottom: -29px;
  width: 100%;
  /* width: 100px; */
  height: 100%;
  object-fit: contain;
  max-width: 155px;
  max-height: 155px;
  right: 0;
}
/* sell-section */

.sell-section .container-fluid{
 position: relative;
}
.bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.sell-section .row.align-items-center{
  padding: 40px;
}
.bg img {
  border-radius: 60px;
  height: 100%;
  width: 100%;
  min-height: 424px;
  object-fit: cover;
    object-position: center;
}
.sell-section .orange-btn{
  border-radius: 16px;
  margin-top: 30px;
}
/* works section */
.works-box{
  text-align: center;
}
.works-box p{
  color: var(--gray-color);
  line-height: 18px;
}
.works-box img{
  margin-bottom: 20px;
  width: 50%;
}
.header .container-fluid{
  padding-left: 0;
}
/* appdownload-section */
.appdownload-section .container-fluid{
  position: relative;
  min-height:424px;
  display: flex;
  padding: 40px;
 }
.appdownload-section .container-fluid .row{
  width: 100%;
 }
 .appdownload-section .container-fluid .row{
  padding: 30px;
 }
.appdownload-section h2{
  margin-bottom: 20px;
}
.store-btn{
  background-color: var(--text-color);
  color: var(--white-color);
  padding: 12px 20px;
}


/* Footer css */
.footer{
  background-color: var(--bg-color);
  padding-top:100px ;
  position: relative;
  z-index: 999;
  margin-top: 100px;
}
.footer::before{
  position: absolute;
  content: "";
  left: 0;
  top: 45%;
  background: url(../images/leftvector.png)no-repeat;
  width: 270px;
  height: 200px;
  background-size: contain;
  z-index: -1;
}
.footer:after{
  position: absolute;
  content: "";
  right: 0;
  top: 50px;
  background: url(../images/rightvector.png) no-repeat;
  width: 270px;
  height: 200px;
  background-size: contain;
  z-index: -1;
}
footer :is(h6){
  color: var(--white-color);
}
footer :is(p,a.nav-link){
  color: var(--gray-color);
}
.socialicon {
  justify-content: center;
}
.socialicon li a{
  width: 50px;
  height: 50px;
  border-radius: 30px;
  border: 1px solid var(--Grey, #8E8E8E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-color);
  text-decoration: none;
  font-size: 20px;
}
.mb30{
  margin: 30px 0;
}
.linefooter{
  border-color: #8E8E8E;
}
.footer .nav-link:hover{
  color: var(--white-color);
}
.country_flag img {
    width: 30px;
    position: absolute;
    z-index: 99;
    top: 37px;
    left: 6px;
}
.header-menu li a .user_name {
  width: 12ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-menu li a{
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-menu li{
  list-style: none;
}

.fmp p{
  font-size: 20px;
  line-height: 35px;
}




/* product detail page css 03-11-2023 */
.pag_Header{
  border-bottom: 1px solid #ECEDF1;
background: #ECEDF1;
padding: 20px 10px ;

}
.pag_Header ul li a,.pag_Header ul li span{
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
}
.productdetail{
  border-radius: 20px;
border: 1px solid var(--Outline, #E5E5E5);
background: var(--white, #FFF);
padding: 30px;
}
.detailtable  table tbody tr td{
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.detailtable  table tbody tr td:last-child{
  text-align: right;
  color: var(--Grey, #8E8E8E);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.btnsblock button:not(:first-child){
  border-radius: 16px;
  border: 1px solid var(--Black, #121212);
  display: flex;
  /* width: 359px; */
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.morebtns  button:first-child{
  border-radius: 16px;
  border: 1px solid var(--Black, #121212);
  display: flex;
  /* width: 359px; */
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btnsblock button:first-child{
  border-radius: 16px;
  padding: 16px 24px;
}
.swiper_main .swiper-slide img{
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius:50px;
}
.swiper_thumbnail {
  margin-top: 30px;
}
.swiper_thumbnail .swiper-wrapper{
  gap: 7px;
}
.product_img  img{
  /* border-radius: 20px; */
  width: 100%;
}
.product_thumbs img{
  /* border-radius: 20px; */
  width: 100%;
  max-width: 195px;
  max-height: 195px;
  min-height: 195px;
  object-fit: cover;
}
.product_Card{
  border-radius: 27.303px;
  background: var(--white, #FFF);
  box-shadow: 0px 6.82563px 10.23844px 0px rgba(0, 0, 0, 0.08);
  padding: 0 7px 20px;
  width: calc(33% - 12px);
}
.product_Data {
  padding:20px  10px 10px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.product_action  div{
  color: var(--Grey, #8E8E8E);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.removebtn{
  color: var(--Black, #121212);
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-top: 10px;
}
.removebtn a{
  display: flex;
  align-items: center;
}
.review_box{
  border-radius: 20px;
  border: 1px solid var(--Outline, #E5E5E5);
  background: var(--white, #FFF);
  padding: 30px;
}
/* .re_content{
  padding-bottom: 15px;
  border-bottom: 1px dashed #A4A4A4;
} */
.re_content p{
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.re_left p{
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.re_left ul li a i{
  color: #8E8E8E;
  font-size: 12px;
}
.re_left ul li a.active i{
  color: #FACE32;
}
.re_date{
  color: var(--Grey, #A4A4A4);
font-family: Montserrat;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.review_card{
  margin-top: 1.5rem;
  border-radius: 20px;
  background: var(--Card-bg, #ECEDF1);
  padding: 20px;
}
.view_all{
  margin-top: 20px;
}
.view_all a{
  color: var(--Purple, #63398E);
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
text-decoration: underline !important;
}
.like_icon a{
  background: rgba(28, 28, 37, 0.40);
  backdrop-filter: blur(17.064071655273438px);
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.like_icon {
  width: max-content;
  position: absolute;
  top: 10px;
  right: 10px;
}
.like_icon a i{
  color: #fff;
  font-size: 20px;
}
.thumb_icon{
  border-radius: 18.611px;
  background: rgba(28, 28, 37, 0.40);
  backdrop-filter: blur(17.064071655273438px);
  width: 93.056px;
  height: 37.222px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
.thumb_icon a,.thumb_icon span{
  color: var(--white, #FFF);
  color: var(--white, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.thumb_icon a i{
  font-size: 25px;
}
.pro_img img{
  max-width: 257px;
  max-height: 240px;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
}
.fable{
  color: var(--Grey, #8E8E8E);
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.line{
  border-top: 1px solid  #E5E5E5;
  opacity: 1;
}
.detailtable table tr,.detailtable table tr td{
  border: 0;
}
.actionbtn{
  border-top: 1px solid #ECEDF1;
  border-bottom: 1px solid #ECEDF1;
  padding: 10px 0;
  margin-bottom: 20px;
}
.likebtn{
  border-radius: 16px;
  /* background: var(--Card-bg, #ECEDF1); */
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}
.vertical_line{
  background: #E5E5E5;
  width: 1px;
  height: 41px;
}
.likebtn a i{
  font-size: 20px;
}
.likebtn a,.likebtn span{
  color: var(--Grey, #8E8E8E);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.arrow_profile{
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: max-content;
}
.dashboard .nav.flex-column.nav-pills{
  border-radius: 20px;
  border: 1px solid var(--Outline, #E5E5E5);
  background: var(--white, #FFF);
}
.dashboard .nav-pills .nav-link{
  text-align: left;
  border-bottom: 1px solid var(--Outline, #E5E5E5);
  background: var(--white, #FFF);
  border-radius: 0;
  padding: 20px;
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 125% */
  display: flex;
  align-items: center;
  gap: 10px;
}
.dashboard .nav-pills .nav-link:first-child{
  border-radius: 19px 19px 0px 0px;
}
.dashboard .nav-pills .nav-link:last-child{
    border-radius: 0px 0px 19px 19px;
}
.dashboard .nav-pills .nav-link.active,.dashboard .nav-pills .show > .nav-link{
  background: var(--Orange, #F60);
  color: var(--white, #FFF);
  font-weight: 600;
}

.comman_box{
  border-radius: 20px;
  border: 1px solid var(--Outline, #E5E5E5);
  background: var(--white, #FFF);
  padding: 30px;
}
.mailicon{
  background-color: var(--Orange, #F60);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.mailicon i{
  font-size: 25px;
  color: #fff ;
}
.mailbox  a{
  color: var(--Black, #121212);
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 20px; /* 100% */
text-decoration: underline !important;
}
.form-control{
  border-radius: 16px;
border: 1px solid var(--Outline, #E5E5E5);
background: var(--white, #FFF);
}
.submitbtn{
  border-radius: 16px;
  display: inline-flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.transaction_card{
  border-radius: 20px;
  background: #F5F6F8;
  padding: 20px;
  margin-bottom: 30px;
}
table tbody tr, table tbody tr td{
  border: 0;
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
  padding: 6px 0 !important;
}
table tbody tr td:last-child{
  text-align: right;
}
.ads_card{
  border-radius: 16px;
border: 1px solid var(--Outline, #E5E5E5);
background: var(--white, #FFF);
}
h3{
  color: var(--Black, #121212);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 62.5% */
}
.ad_header{
  border-radius: 16px 16px 0px 0px;
  border: 1px solid var(--Outline, #E5E5E5);
  background: #F5F6F8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad_features{
  padding: 20px 0;
}
.ad_features .feature{
  padding: 8px 20px;text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  color: var(--Black, #121212);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 125% */
}
.ad_features .feature i{
  color: #2DA771;
  font-size: 20px;
}
.Subscribe{
  border-radius: 0px 0px 16px 16px;
  background: var(--orange, #F60);
  display: flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  border: 0;
}
.dashboard .nav-pills .nav-link.active svg path{
  fill: #fff;
}
.re_left .flex-shrink-0 img{
  width: 54px;
  height: 54px;
  object-fit: cover;
}
.re_left span{
  color: var(--Black, #121212);
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.profile_detail p {
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  /* max-width: 160px; */
  white-space: nowrap;
  color: var(--Grey, #8E8E8E);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.detailbox .profile_detail p  {
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  color: var(--Grey, #8E8E8E);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.viewall_product .trans-btn{
  border-radius: 16px;
  /* border: 1px solid var(--Black, #000); */
  /* background: var(--white, #FFF); */
  display: inline-flex;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
text-align: center;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.afterlogin{
  border-radius: 28px;
  border: 1px solid #EEF0F2;
  /* / padding: 14px; / */
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.afterlogin button.show,.afterlogin button.show svg ellipse{
  color: #F60;
  stroke: #F60;
}
.afterlogin .dropdown-menu{
  border-radius: 0px 0px 20px 20px;
  background: var(--white, #FFF);
  box-shadow: 0px 10px 14px 0px rgba(18, 18, 18, 0.08);
  left: auto;
  right: 0;
  padding: 15px;
  border: 0;
}
.dropdown-menu  .dropdown-item{
  padding: 10px  !important;
}
.dropdown-menu  .dropdown-item:hover,.dropdown-menu  .dropdown-item.active{
  border-radius: 12px;
  background: var(--Orange, #F60);
}
.dropdown-menu  .dropdown-item:hover :is( path, span),.dropdown-menu  .dropdown-item.active :is( path, span){
  color: #fff;
  fill:#fff;
  /* / stroke: #fff; / */
}

.mega_menu_ul{
  opacity: 0;
  z-index: -1;
  position: absolute;
  list-style-type: none;
  width: 300px;
  border-radius: 0px 0px 20px 20px;
  background: var(--white, #FFF);
  box-shadow: 0px 10px 14px 0px rgba(18, 18, 18, 0.08);
  padding: 16px;
}
.mega_menu:hover .mega_menu_ul{
  opacity: 1;
  z-index: 100;

}
.mega_menu_ul li a {
  display: flex;
  align-items: center;
}
.mega_menu_ul .nav-pills .nav-link.active{
  border-radius: 12px 0px 0px 12px;
  background: var(--Orange, #F60);
  color: var(--white, #FFF);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.mega_menu_ul .nav-pills .nav-link{
  display: flex;
  justify-content: start;
  padding: 10px  !important;
  width: 100%;
  text-align: left;
}
.mega_menu_ul .nav-pills .nav-link:hover{
  background: var(--orange-color);
  color: #fff;
}
#notification_alert{
  top: 0px !important;
    right: -1px !important;
}
.vertical{
height: 100%;
width: 2px;
}
.mega_menu_ul .nav-pills{
  position: relative;
  width: 100%;
  margin-right: 0 !important;
}
/* .mega_menu_ul .nav-pills::after{
  background-color: #E5E5E5;
  content: "";
  right: 0;
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
} */


/* Personalization */
.popup-body .category-select {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 7px;
}
.s-all{
  color: #000 !important;
}
.category-card {
  display: inline-block;
  margin: 3px;
  text-align: center;
  vertical-align: top;
}
.category-check {
  position: absolute;
  clip: rect(0,0,0,0);
  pointer-events: none;
}
.category-check:checked + .cat-btn {
  box-shadow: 0 0 0 0rem rgba(71,202,105,.75);
  background: #fff;
  border: 1px solid rgb(71 202 105 / 75%);
}
.category-check:checked + .cat-btn {
  box-shadow: 0 0 0 0.2rem rgba(71,202,105,.75);
}
.cat-btn {
  background: #fff;
  border-radius: 8px;
  padding: 20px 8px;
  min-width: 118px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
.cat-btn {
  cursor: pointer;
}
.category-check:checked + .cat-btn {
  box-shadow: 0 0 0 0.01rem rgb(255 102 0 / 75%);
  background: #fff;
  border: 1px solid rgb(255 102 0 / 75%); 
  height: 100%;
}
.category-check:checked + .cat-btn {
  box-shadow: 0 0 0 0.01rem rgb(255 102 0 / 75%);
}
.cat-btn {
  background: #fff;
  border-radius: 8px;
  padding: 20px 8px;
  min-width: 118px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  min-height: 150px;
}
.ap-btn {
  margin-top: 10px;
}
.cat-btn {
  cursor: pointer;
}
.cat-btn span {
  display: block;
  padding-top: 10px;
  color: #484646;
  font-size: 12px;
}
 .category-select {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  /* justify-content: space-between; */
}
.profileimg{
  width: 80px;
height: 80px;
border-radius: 50%;
}
.profileimg img{
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
  object-position: right;
}
.ad_features{
  max-width: 335px;
  margin: auto;
}
.ad_features .feature{
  justify-content: start;
}
.detailmain h6{
  color: var(--Grey, #8E8E8E);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.detailtable h6{
  color: var(--Black, #121212);
  font-weight: 600;
}
.detailmain h4{
  color: var(--Black, #121212);
font-family: Montserrat;
font-size: 28px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.footercontent p {
  max-width: 470px;
}
.create_ad a{
  border-radius: 28px;
  border: 1px solid #EEF0F2;
  display: flex;
  padding: 11px 14px 15px 14px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 10px;
  color: var(--Purple, #63398E);
  text-align: right;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.notificatin> a{
  border-radius: 50%;
  border: 1px solid #EEF0F2;
  width: 52px;
  height: 52px;  
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}
.create_ad a:is(:focus,:hover),.notificatin a:is(:focus,:hover){
  border: 1px solid #EEF0F2;
}.transaction_type{
  margin-top: 15px;
}
.transaction_type span{
  /* font-size: 18px; */
  font-weight: 600;
}
.country_code_number{
  display: flex;
  margin: 15px 0;
}
.country_flag img {
  width: 30px;
}
.country_code_number .n-dropdown{
  width: 30%;
}
.edit_profile.country_code_number .n-dropdown{
  width: 30%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.country_code_number .n-dropdown .nice-select{
  border-radius: 10px 0 0 10px;
  border-right: 1px solid #e5e4e4;
}
.country_code_number input{
  width:70%;
  border-radius: 0 10px 10px 0;
}
.country_flag img {
  width: 30px;
  position: absolute;
  z-index: 99;
  top: 0;
  bottom: 0;
  margin: auto;  
}
.country_code_number.edit_profile .chosen-container-single{
  width: 100% !important;
  border-radius: 10px 0px 0 10px;
  border-right: 1px solid #d5d2d2;
}
.edit_profile.country_code_number .country_flag img {
  width: 30px;
  position: absolute;
  z-index: 99;
  top: 39px;
  left: 8px;
}
.country_code_number .chosen-container-single .chosen-single span{
  margin-left: 20px;
  margin-top: 4px;
 
}
.choose-category .btn-group{
  width: 100%;
  display: block;
}
.choose-category .btn-group button.btn{
  background: #ecedf0;
  width: 100%;
  margin-top: 17px;
  text-align: left;
  position: relative;
}
.choose-category .btn-group button.btn:after{
  /* border-bottom: 2px solid #999;
  border-right: 2px solid #999; */
  content: '';
  display: block;
  height: 0px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  /* top: 50%; */
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 7px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.choose-category .multiselect-container{
  width: 260px !important;
}
.listing_category{
  background: #ecedf0;
  width: 100%;
  margin-top: 17px;
  padding: 13px;
  border: 0;
  border-radius: 8px;
  height: 50px;
}
.listing_sub.form-control[multiple], .listing_sub.form-control[size]{
  height: 50px;
}
.hero-inputs-wrap .search-sort{
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-inputs-wrap .search-sort select{
  border: 0;
}
.prod_list .btn-primary-outline{
  border: 0;
}
.prod_list h6{
  font-weight: 600;
  font-size: 20px;
  color: #000000;
}
.swiper-button-next, .swiper-button-prev {
  background-color: #787878;
  padding: 7px;
  border-radius: 50%;
  width: 35px;
height: 35px;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 22px;
}
.banner-image-wrapper img{
  width: 100%;
}


.p-img a:first-child{
  width: 100%;
  height: 100% !important;
}
.ad-list {
  background: #ecedf0;
}
.ad-card {
  background: #f2f2f2;
  border-radius: 10px;
  margin-top: 24px;
}
.ad-card .card-header, .ad-card .card-body, .ad-card .card-footer {
  background: transparent;
}
.ad-card .card-header {
  border-bottom: 1px solid #c6c6c6;
  padding: 11px 20px;
}
.ad-card .card-header span {
  color: #000000;
  font-weight: 500;
}
.ad-card .card-footer {
  border-top: 1px solid #c6c6c6;
  font-size: 14px;
  padding: 11px 20px;
}
.boost-ad-btn .btn {
  border: 1px solid #484646;
  background: #fff;
  color: #484646;
  font-weight: 600;
  border-radius: 50px;
  min-width: 90px;
}
.view-dis .distence {
  padding-right: 20px;
}
.distence i, .views i {
  padding-right: 3px;
}
.list-p-img img {
  border-radius: 20px;
}
.list-p-info {
  padding-left: 20px;
}
.list-p-info .btn, .btn-x-small {
  min-width: 90px;
  border-radius: 50px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 12px;
  font-size: 12px;
}
.btn-info {
  background: #FF6E2D;
  color: #fff;
  border-color: #FF6E2D;
}
.btn-info:hover {
  background: #ff773a;
  border-color: #ff773a;
}
.list-p-info span {
  color: #000;
  font-weight: 500;
}
.list-p-img img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}
.card-body {
  padding: 20px 24px 24px;
}
.sub-my-package {
  margin-top: 24px;
}
.sub-my-package .card {
  border: 1px solid #c6c6c6;
  border-radius: 0px;
}
.sub-my-package .card-footer {
  border-top: 1px solid #c6c6c6;
  padding: 11px 20px;
  background: transparent;
  font-size: 14px;
}
.sub-my-package .card-header {
  border-bottom: 1px solid #c6c6c6;
  padding: 21px 20px;
  background: #5f6167;
}
.sub-my-package .card-header h5 {
color: #ffffff;
}
.black {
  color: #000000;
  font-weight: 500;
}
.list-check {
  list-style: none;
  font-size: 16px;
  color: #484646;
  padding-left: 0px;
  line-height: 24px;
  font-weight: 500;
  margin: 16px 0;
}
.list-check li {
  position: relative;
  padding: 0 30px 16px;
  font-size: 16px;
  font-weight: 600;
}
.list-check li:last-child {
  padding-bottom: 0px;
}
.list-check li:before {
  content: "\f00c";
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 18px;
  color: #4C0E51;
  font-family: 'Font Awesome 5 Free';
  font-weight: 700;
}
.per-cards .category-card {
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin: 0px;
  /* width: 100%; */
  width: 100%;
}
.per-cards .cat-btn {
  min-width: 100%;
}
.category-select div[class*=col] {
  padding: 7px;
}
.per-cards label {
  margin-bottom: 0px;
}
.new-address {
  border-radius: 20px;
  padding: 40px;
}

.card {
  border: 1px solid #eeeeee;
}
.country_code_number  .n-dropdown{
  border: 1px solid #E5E5E5;
  padding-left: 20px;
  border-radius: 10px 0 0 10px;
}
.country_code_number .form-control{
  margin: 0;
}
.chosen-select.form-control.parent_id{
  background: #fff !important;
  margin: 0;
  border: 0;
  padding: 15px 10px;
  padding-left: 45px;
}
.chosen-select.form-control.signupform{
  background: #fff !important;
  margin: 0;
  border: 0;
  padding: 15px 10px;
  padding-left: 45px;
}
.ad-card p{
  font-size: 14px;
  color: #121212;
}
.notificatin{
  position: relative;
}
.nav-item.h-wishlist .dropdown-menu a {
  word-wrap: break-word;
  white-space: normal;
  line-height: 20px;
  position: relative;
}
.chat-c a {
  font-weight: 500;
}
.products-avatar {
  position: relative;
  display: inline-block;
}

.products-avatar img {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50px;
  object-fit: cover;
  border: 1px solid #f2910040;
}
.toggle_btn{
  position: relative;
}
.notificaton.chat_section .products-avatar img {
  width: 40px;
  height: 40px;
}
.self-item img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border: 3px solid #fff;
  object-fit: cover;
}

.notificaton.chat_section .self-item img {
  width: 25px;
  height: 25px;
}
.chat_section {
  align-items: start !important;
  gap: 20px;
}
.self-item {
  position: absolute;
  right: 2px;
  bottom: -10px;
}
.notificaton.chat_section .notificaton_list {
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
}
.notificatin .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  -webkit-transform: none;
  transform: none;
}

.notificatin .dropdown-menu {
  position: absolute;
  border-radius: 10px;
  border: 0px;
  border-radius: 4px;
  padding: 10px!important;
  overflow-x: hidden;
  min-width: 180px;
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  box-shadow: 0 6px 12px rgb(0 0 0 / 25%);
}
.notificatin .dropdown-menu {
  max-width: 540px !important;
  width: 100%;
  min-width: 540px;
  max-height: 350px!important;
  right: 0;
}
.chat-c {
  border-bottom: 1px solid #ecedf0;
  padding: 14px 10px 22px;
}
.products-avatar.mr-4{
  margin-right: 1rem;
  min-width: 56px;
  min-height: 40px;
}
.dropdown-menu[data-bs-popper]{
  right: 0;
  left: auto;
}
.list-p-info .btn, .btn-x-small {
  min-width: 90px;
  border-radius: 50px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 12px;
  font-size: 12px;
  background: #238239;
  color: #fff;
}
.popup-footer a{
  text-decoration: underline !important;
}
.sub-my-package .card-header {
  border-bottom: 1px solid #c6c6c6;
  padding: 21px 20px;
  background: #5f6167;
}
.product-card {
  padding: 10px 10px 20px;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 27px 0px rgba(118,118,118,0.16);
  -moz-box-shadow: 0px 0px 27px 0px rgba(118,118,118,0.16);
  box-shadow: 0px 0px 27px 0px rgba(118,118,118,0.16);
/*  margin-bottom: 30px;*/
height: 100%;
}
.product-card .p-img {
  position: relative;
  margin-bottom: 14px;
  height: 235px;
  overflow: hidden;
  align-items: center;
  display: flex;
  border-radius: 16px;
}
.product-card  .wishlist, .product-card  .wishlists {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(28, 28, 37, 0.40);
  border-radius: 50px;
  height: 33px;
  width: 33px;
  text-align: center;
  line-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accept_deal {
  display: flex;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  margin-top: 15px;
  gap: 20px;
  width: 100%;
}
.p-title {
  font-weight: 600;
}
.accept_deal a {
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  width: 130px;
  border: 1px solid #C0AAD1;
  padding: 3px;
  font-weight: 400;
  border-radius: 5px;
  text-align: center;
}
button.like-btn, button.like-btns {
  min-width: auto;
  background: transparent;
  color: #777777!important;
  border-radius: 0 0 0 2px;
  position: relative;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  text-decoration: none;
  overflow: hidden;
  font-size: 16px;
}
.p-img .like-btn, .p-img .like-btns {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 8px;
  margin-left: -40px;
  text-align: center;
  padding: 6px 16px;
  border-radius: 50px;
  background: #fff;
  min-width: 80px;
  color: #484646;
  font-size: 14px;
}
.p-img img{
  width: 1000%;
  height: 100%;
  object-fit: contain !important;
}
.product-card .p-content {
  padding-left: 8px;
}
.wishlist i, .wishlists i {
  color: #fff;
  font-size: 20px;
}
.wishlist.active i, .wishlists.active i {
  color: #ee262c;
  font-size: 20px;
  /* line-height: 34px; */
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.notificatin a svg {
  width: 28px;
  height: 28px;
}
.filters {
  background: #ecedf0;
  border-radius: 10px;
  padding-bottom: 5px;
}
.filter-block {
  border-bottom: 1px solid #9aa3af;
  padding: 20px 20px 0;
}
.filters h4 {
  padding: 20px 20px 0;
}
.filter-block.filter-categories {
  border-bottom: 0px;
}
.foll-list .list-group-item img {
  width: 40px;
  height: 40px;
}
.r-stars img {
  height: 28px;
  width: 28px;
}
.wh-small {
  width: 90px;
  height: 90px;
  border-radius: 8px;
}
.add-new .cat-btn {
  padding: 40px 10px;
  width: 116px;
}
.dashed {
  border: 1px dashed #707070;
}

.bartering-suggestion input[type="radio"] {
  display:none;
  box-sizing: border-box;
  padding: 0;
}
.bartering-suggestion input[type="radio"]:checked + label {
  box-shadow: 0 0 0 0.2rem rgb(71 202 105 / 75%);
}
.bartering-suggestion label {
  background: #fff;
  border-radius: 8px;
  padding: 12px 8px;
  min-width: 118px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
  cursor: pointer;
}
.bartering-suggestion label span {
  display: block;
  padding-top: 10px;
  color: #484646;
}
.bartering-suggestion input[type="radio"]:checked + label span {
  font-weight: 700;
}
.swiper-container.cat-slider .swiper-button-next {
  right: 0px;
}
.swiper-container.cat-slider .swiper-button-prev {
  left: 0px;
}
.swiper-container.cat-slider div[class*=swiper-button]:after {
  font-size: 26px;
}

.chosen-container-active.chosen-with-drop .chosen-single {
background: transparent;
border: 0px!important;
padding: 0px;
box-shadow: 0 0 0!important;
height: auto;
font-size: 18px;
background-image: none!important;
}

.form-control.t3 .current {
  top: -3px;
  
}
.chosen-container-single .chosen-single {
background: transparent;
border: 0px!important;
padding: 0px!important;
box-shadow: 0 0 0!important;
height: auto;
font-size: 18px;
background-image: none!important;
}


.filter-title {
  font-size: 16px;
  font-weight: 500;
  color: #484646;
  display: block;
  position: relative;
  position: relative;
  padding-bottom: 20px;
}
.filter-title button {
  background: none;
  border: 0px;
  font-weight: 600;
  color: #484646;
  padding: 0px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.filters .form-control {
  min-height: 44px;
  border-radius: 4px;
  padding: 5px 35px 5px 20px;
  font-size: 13px;
  font-weight: 400;
}
.filter-block .filter-title .title .fas {
  position: absolute;
  right: 0px;
  top: 0px;
  -webkit-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}
a.search {
  position: absolute;
  top: 13px;
  right: 12px;
}
.ep-avatar:before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: -12px;
  left: 50%;
  margin-left: -16px;
  /* background: url(http://forsa.rglabs.net/forsa_new_dev/public/assets/front/images/chamge-pic.png) no-repeat; */
  background: url(/public/assets/front/images/chamge-pic.png) no-repeat;
}
.ep-avatar {
  position: relative;
  width: 100px;
  display: inline-block;
  margin-right: 8px;
}
.ep-avatar img{
  width: 100%;
}
.ep-a-info {
  display: inline-block;
  padding-left: 0px;
  width: calc(100% - 100px);
}
.ep-a-info h2,.product-details h2{
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
.verify{
  margin-bottom: 10px;
}
.following-number {
  color: #484646;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  padding-left: 0px;
}
.following-number li:first-child {
  padding-left: 0px;
}

.following-number li {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #cccccc;
}
.p-24 {
  padding: 24px;
}
.text-left{
  text-align: left !important;
}
.heading {
  position: relative;
  text-align: center;
  padding-bottom: 30px;
  padding-top: 30px;
}
/* .bd-form {
  border-top: 1px solid #E5E5E5;
} */
.form-control:focus{
  box-shadow: none;
  border-color: #E5E5E5;
}
.add-listing-block {
  background: #ecedf0;
  padding: 60px 40px;
  border-radius: 20px;
}
.listing_category{
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  height: 60px;
  /* margin-bottom: 30px; */
}
.choose-category .btn-group {
  width: 100%;
  display: block;
}
.choose-category .btn-group button.btn {
  width: 100%;
  margin-top: 17px;
  text-align: left;
  position: relative;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  height: 60px;
  margin-bottom: 30px;
}
.form-group span, .textarea span {
  color: #000;
  font-weight: 500;
}
.choose-category .multiselect-container {
  width: 260px !important;
}
.seller-profile {
  background: #ecedf0;
  border: 1px solid #c6c6c6;
  padding: 10px;
}
.seller-det {
  padding: 14px 14px 4px;
}
.verify {
  color: #ee5d1c;
  margin-bottom: 10px;
}
.following-number {
  color: #484646;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  padding-left: 0px;
}
/* button.btn, .btn {
  background: #4C0E51;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 10px;
  min-width: 170px;
} */
._all_reviews {
  display: flex;
  justify-content: space-between;
  border: 1px solid #e0d9d9;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
}
._all_review_list.d-flex {
    align-items: center;
    justify-content: space-between;
}
.list_title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding-right: 6px;
}
._all_reviews ._reviews {
  margin-top: 0;
}

._reviews {
  width: fit-content;
  background: #EDEBF0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  padding: 2px 7px;
  margin-top: 6px;
} 
.seller-profile-links {
  list-style: none;
  padding-left: 0px;
}
.text-dark {
  color: #484646;
}
.text-dark {
  color: #343a40!important;
}
.seller-profile-links li {
  display: inline-block;
}
.seller-profile-links li:first-child {
  padding-right: 14px;
  margin-right: 14px;
  position: relative;
}
.tabs-title.pt-24{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabs-title.pt-24 h2{
 margin-bottom: 0;
 font-size: 24px;
 font-weight: 700;
}

.notification {
  background: #fdc283;
  padding: 15px 24px;
  border-radius: 4px;
  font-size: 16px;
  color: #98632b;
  margin-top: 28px;
}
.pt-24 {
  padding-top: 24px;
}
.dropdown-menu .dropdown-item.active{
  color: #fff;
}
.chat-list {
  border: 1px solid #c6c6c6;
}
.chat-list {
  height: 588px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.chat-c.active {
    background: #f2f2f2;
}

.chat-c {
    border-bottom: 1px solid #ecedf0;
    padding: 14px 10px 22px;
}
.card-header {
  padding: 20px 24px 8px;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
}
.chat-card .card-header {
  background: #f2f2f2;
  padding: 10px;
}
#message {
  height: 400px;
  overflow: auto;
  overflow-x: hidden;
}
.msg-card-content {
  background: #fff;
  border: 1px solid #D3D4D6;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.chat-card .time {
  font-size: 12px;
  display: block;
  text-align: center;
  opacity: .8;
}
.chat-ms.dark-bg li {
  background: #6c727a;
  color: #fff;
  position: relative;
  padding: 6px 35px 6px 12px;
}
.chat-ms li {
  background: #f0f0f0;
  margin-bottom: 5px;
  padding: 6px 12px;
  color: #484646;
  border-radius: 6px;
}
.chat-ms.dark-bg li {
  padding: 6px;
}
.chat-ms.green_bg li {
  background: #47ca69 !important;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-footer {
  background: #f9f9f9;
  border-top: 1px solid #eeeeee;
  font-size: 16px;
  padding: 0;
  color: #777777;
}
.chat-maessage {
  border: 1px solid #eeeeee;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0,0,0,.03);
  border-top: 1px solid rgba(0,0,0,.125);
}
.chat-card .card-footer {
  margin: 10px;
  background: #f2f2f2;
  border: 0px;
  border-radius: 15px;
  padding: 0px 0px 0px 0px;
  font-size: 14px;
  color: #484646;
}
.chat-ms {
  list-style: none;
  margin-bottom: 0px;
  padding-left: 0px;
}
.clear_chat {
  position: absolute;
  width: max-content;
  background: #fff;
  padding: 10px 25px 10px 10px;
  right: 0px;
  top: 25px;
  z-index: 999;
  box-shadow: 0 0 2px 0px;
  border-radius: 5px;
  display: none;
}
.clear_chat.active {
  display: block;
}
.clear_chat a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
}
.card-footer .form-control{
  margin: 0;
  background: transparent;
  border: 0;
}
.msg-card-content h6{
  font-size: 16px;
}
.imgpreview{
  border-radius: 15px ;
}
.afterlogin .trans-btn{
  border: 0;
}
.downloadbtn {
    background: #fff;
    color: #000 !important;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    display: flex;
    align-items: center;
}
.lang-selection .n-dropdown{
  position: relative;
  display: block;
  max-width: 100%;
  max-height: none;
}
.lang-selection .n-dropdown span{
  display: block;
}
.followuser,.unfollowuser{
  background-color: var(--orange-color);
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 16px;
}
.followuser:hover,.unfollowuser:hover{
  color: #fff;
}
ul.list-group.foll-list {
  max-height: 460px;
  overflow-y: scroll;
}
.breadcrumbs{
  padding: 10px 0;
}
.dashboard{
  padding-top: 40px;
}

.wishlists i{
  font-size: 20px;
  line-height: 34px;
}
.card-header a img{
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.sorting  span{
  font-size: 14px;
    line-height: 1.6;
    color: #999999;
    font-weight: 400;
    margin-right:10px;
}
.lang-selection .n-dropdown select{
  border-radius: 10px;
  padding: 16px 15px;
  color: #484646;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  outline: 0px;
  width: 100%;
}
.similerProduct {
  justify-content: start !important;
  gap: 20px;
  flex-wrap: wrap;
}
a#send_message_btn {
  padding-right: 15px;
}
.popup-heading h2 {
  font-size: 30px;
  font-weight: 800;
}
.popup-footer h3 {
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  padding-top: 20px;
  line-height: 26px;
}
.sign-phone:hover::before,.sign-email:hover:before{
  color: #fff;
}
.request_accepted i {
  background: #34A853;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  margin-right: 6px;
}
.request_accepted {
  display: flex;
  align-items: center;
  font-size: 16px;
  text-transform: capitalize;
  color: #000;
  font-weight: 500;
}
.request_accepted .fa-solid.fa-x{
  background: red ;
  /* color: #fff; */
}
.request_accepted .fa-times-circle:before{
  color: #000;
}
.facebook-login {
  background: #3b5999;
}
.google-login {
  background: #de4b39;
}
/* .mega_menu::after{
  position: absolute;
  content: "\f105";
  width: 10px;
  height: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
} */
.choose-category .n-dropdown{
  margin-bottom: 30px;
}  
.cnt-upr {
  border-bottom: 1px solid #c7c3c3;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.cnt-upr img {
  border-radius: 14px;
}
.email-ic {
  background: #c6c6c6;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
  line-height: 50px;
}
.email-card {
  padding-top: 26px;
  gap: 20px;
}
.email-card a {
  font-size: 20px;
  text-decoration: underline;
}
.chat-list {
  border: 1px solid #c6c6c6;
}
.form-group span, .textarea span {
  color: #000;
  font-weight: 500;
}
.cnt-upr {
  border-bottom: 1px solid #c7c3c3;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.ajaxform .btn {
  margin-top: 0px !important;
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  }
  .captcha {
    margin-top: 15px;
}
.form-group {
  margin-bottom: 1rem;
}
.product-card{
  position: relative;
}
.barter_product{
  position: absolute;
  width: max-content;
  background-color: #f29100;
  color: #fff;
  z-index: 20;
  top: 0;
  left: 0;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px 0 0 0;
}
.sold_product{
  position: absolute;
  width: max-content;
  background-color: red;
  color: #fff;
  z-index: 20;
  top: 0;
  left: 0;
  padding: 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px 0 0 0;
}
.sold{
  background: red !important;
  border: 0;
  color: #fff !important;
}
.sold:hover{
  color: #000;
}
.sold:hover svg path{
  stroke: #fff;
}
#btn_more{
  background-color: var(--orange-color);
  color: #fff;
  display: flex;
    width: max-content;
    margin: auto;
    align-items: center;
    gap: 5px;
}
#submit{
  margin-top: 15px;
}
.facebook-login:hover{
  background: #3b5999;
}
.google-login:hover {
  background: #de4b39;
}
.filter-block{
  margin-bottom: 30px;
}
.product-card .p-img img{
  object-fit: cover !important;
}
.not_record {
  background: #ecedf0;
  border-radius: 10px;
  padding: 20px;
}
.not_record h2 {
  color: #000;
  margin-bottom: 0;
  /* text-align: left; */
  font-size: 20px;
}
p.verify img {
  object-fit: cover;
  width: 100% !important;
  height: 200px;
}
.following-number {
  color: #484646;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
  padding-left: 0px;
}
.following-number li:first-child {
  padding-left: 0px;
}
.following-number li {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #cccccc;
}
.following-number li a {
  color: #484646;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.product-card .like-view .distence,.product-card .like-view .views {
  padding-right: 20px;
  font-size: 14px;
    line-height: 1.6;
    color: #999999;
}
.product-card .like-view {
  padding-top: 5px;
}
.checkbox-container .btn{
  margin-top: 0 !important;
}
.heading.text-left.pb-2{
  padding-bottom: 0 !important;
}
.ajaxform .heading{
  padding-top: 0;
}
.radio-area {
  margin: 15px 0;
}
.radio-area {
  font-size: 18px;
  font-weight: 500;
  background: #fff;
  padding: 18px 26px;
  border-radius: 10px;
}
.radio-area .input-group {
  margin-bottom: 0px;
  cursor: pointer;
}
.popup-heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
  padding-bottom: 6px;
}
.footercontent p{
  text-align: justify;
}
.header-search {
  flex-grow: 1;
}
.search-box input{
  max-width: 100%;
  width: 100%;
}
.list-p-info .btn.deactivateStatus{
  background: lightgray !important;
  color: #000;
}
button:disabled{
  opacity: .7;
}
li.list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
li.list-group-item img{
 border-radius: 50%;
 width: 30px !important;
 object-fit: cover;
 height: 30px !important;
}
.modal-dialog .popup-heading h2{
  font-weight: 500;
  font-size: 20px;
}
.title.collapsed i{
  transition: all ease-in-out .4s;
  transform: rotate(180deg);
}
.title:not(.collapsed) i{
  transition: all ease-in-out .4s;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){
  margin-left: 0 !important;
}
.addmore button{
  border: 0;
  background: #ff6600;
    padding: 10px;
    border-radius: 20px;
    color: #fff;
    margin: 25px 0 0;
}
.repeat_div {
  width: 100%;
}

.new_box> div:not(:last-child),.repeat_div>  div:not(:last-child) {
  max-width: 40%;
  width: 100%;
}
.delete{
  background: red;
  padding: 10px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  min-width: 100px;
}
.add_interested .listing_category ,.add_interested .listing_sub{
  margin-top: 0 !important;
}
.new_box{
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}
.repeat_div  .n-dropdown{
  display: flex;
  flex-direction: column;
}
.add_interested .new_box:last-child{
  margin-bottom: 20px;
}
.repeat_div .n-dropdown .multiselect{
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  height: 60px;
  margin-top: 15px !important;
  max-width: 100%;
  overflow: hidden;
}
.new_box  .n-dropdown .btn-group {
  width: 100%;
}
.new_box  .n-dropdown .multiselect {
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  height: 60px;
  /* margin-top: 15px !important; */
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
.deal-option .collapse{
  margin-bottom: 30px;
}
.orange-btn:hover{
  color: #fff !important;
}
  .loader_main{
      position: fixed;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
        background: #00000061;
    z-index: 9;
    top: 0;
    left: 0;
  }
  .loader-1 {
    width: 50px;
    height: 50px;
    border: 5px solid #c3c3c3;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
    transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.otp {
  display: flex;
  gap: 10px;
}
.otp input{
  text-align: center;
}
.chat_section div:nth-child(2){
  min-width:50px;
}
.chat_section div:nth-child(1) .d-flex.flex-column span{
  word-break: break-all;
}
.preference_btns a{
  border: 1px solid  #8E8E8E;
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  width: 50%;
  background-color: transparent !important;
  padding: 15px 0;
  border-radius: 20px;
  transition: all ease-in-out .5s;
}
.preference_btns a:hover,.preference_btns a.active{
  border: 1px solid  #EBDCF6;
  font-weight: 600;
  color: #63398E !important;
  background-color: #EBDCF6 !important;
  transition: all ease-in-out .5s;

}
.pref_cat_name p{
  font-size:16px ;
  font-weight: 500;
  color: #8E8E8E;
  margin-bottom: 0px;
}
.pref_cat_name p:first-child{
  font-weight: 600;
  color: #0E0E0E;
}
.cetegory_img img{
  width: 60px;
  height: 60px;

}
.barter_preference .accordion-button:not(.collapsed){
  background-color: transparent;
  box-shadow: none;
}
.barter_preference .accordion-item{
  border-radius: 20px;
}
.barter_preference .table tr td{
  font-size:16px ;
  font-weight: 400;
  color: #8E8E8E;
  padding: 15px 0 !important;
}
.barter_preference .table tr td:last-child{
  color: #121212;
}
.barter_preference .table tr ,.accordion-item:not(:first-of-type){
  border-top: 1px solid #dee2e6;
}
.barter_preference .accordion-button,.accordion-item:first-of-type .accordion-button,.accordion-item:last-of-type .accordion-button.collapsed{
  border-radius: 20px;
}
.accordion-button:focus{
  box-shadow: none;
}
.barter_preference .accordion-body{
  padding-bottom: 0;
  padding-top: 0;
}

.accordion-button::after{
  margin-right: 0;
}
.action_btns a{
  border: 1px solid #EEF0F2;
  border-radius: 28px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px 4px;
  width: 130px;
  gap: 15px;
}

.Delete_btn i{
  min-width: 42px;
  height: 44px;
  background: #FF2600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.select_pre_page .accordion-button::after{
  margin-left: 0;
}
.preference_btns a.orange-btn{
  background-color: #f60 !important;
  color: #fff;
}
.pb-16.mb-5.mt-3.text-center{
  margin-top: 40px !important;
}
.preference_btns.d-flex.align-items-center.gap-4 a:first-child{
  text-align: center;
}
.add-your-listing h1{
  margin-bottom: 15px;
}
div#deal-done-modal .modal-dialog {
  border: 1px solid #d6d7d9;
  border-radius: 28px;
}
div#deal-done-modal .modal-dialog .modal-content {
  border-radius: 28px;
}
.code_dropdown.edit_profile.country_code_number .country_flag img {
  top: 0;
}
.code_dropdown.country_code_number select{
  max-width: 140px;
  border-radius: 10px 0px 0px 10px;
  border-right: 1px solid #E5E5E5;
}
.code_dropdown.country_code_number input{
  width: 100%;
  max-width: 100%;
  border-radius: 0 10px 10px 0;
}
.popup-body .form-select {
  border-radius: 10px;
  padding: 16px 15px;
  color: #484646;
  font-size: 18px;
  font-weight: 500;
  border: 0px;
  outline: 0px;
  min-height: 60px;
}
.code_dropdownn  .n-dropdown .form-control{
  padding-left: 21px !important;
  width: 110px;
  border-right: 1px solid #5a5a5a;
  border-radius: 0;
}

.transaction__card{
  box-shadow: 0px 4px 6px 0px #00000014;
  background: #FFFFFF;
  padding: 5px 20px 5px 8px;
}
.transaction__card .product_content{
  width: 100%;
}
.transaction__card .productimg{
  height: 135px;
  width: 150px;
    flex-shrink: 0;
}
.transaction__card .productimg img{
  height: 100%;
  width: 100%;
  object-fit: cover;
    border-radius: 15px;
}
.boost_Package span{
  background: #EBDCF6;
  color: #63398E;
  padding: 10px;
  border-radius: 10px;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;
  line-height: 14.63px;
  text-align: left;
}
.boost_Package span:last-child{
  background: none;
}
.transaction__card .product_content p{
  margin-bottom: 0;
}


/* new csss */
.product_carddd .product_img{
  width: 100%;
  max-height: 300px;
  height: 100%;
  width: 100%;
  min-height: 300px;
}
.product_carddd .product_img img {
  border-radius: 50px;
  width: 100%;
  max-height: 300px;
  min-height: 300px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.product_img::after{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  position: absolute;
  content: "";
  border-radius: 0 0 50px 50px;
}
.boost_prodcut {
  background: rgba(99, 57, 142, 1);
  color: #fff;
  padding: 10px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.wishlists {
  background: rgba(28, 28, 37, 0.4);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  color: #fff;
  z-index: 150;
  border: 0;
  position: absolute;
  right: 20px;
  top: 20px;
    box-shadow: 0px 0px 5px 0px #ffffff6b;
}
.product_details_box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product_name {
  width: 50%;
}
.product_name h6 {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: left;
}
.product_view span {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.5px;
  text-align: left;
  color: #ffff;
}
.product_view i{
  color: #ffff;
}
.product_price {
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 24.38px;
  text-align: right;
  color: rgba(255, 102, 0, 1);
}
.redirection{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;z-index: 100;
}
.productslider,.productslider2,.productslider3 {
  margin-bottom: 50px;
}
.swiper-button-next,.swiper-button-prev {
  background: transparent;
  /* padding: 10px; */
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 20px;
  line-height: 1;
  font-family: "font awesome 5 free" !important;
  font-weight: 900;
  content: "\f061" !important;
  color: #63398e;
  background: #fff;
  font-size: 25px !important;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 0px 8px 0px #00000054;
}
 .swiper-button-prev::after {
  content: "\f060" !important ;
}
.hyperlink{
position: relative;
z-index: -1;
}
/* .upper_details button:hover ~ .hyperlink{
  pointer-events: none;
} */
.wishlists:hover + .hyperlink {
  pointer-events: none;
}