

/*----------------display size-----------*/

.width-1480{
    width: 1480px;
    padding: 80px 23px;
    margin: 0px auto;
}


.desktop-full-diplay{
    max-width: 1535px;
    margin: 0px auto;
}







.ptb-25{
    padding: 25px;
}
.ptb-50{
    padding: 50px;
}

.ptb-17{
    padding: 17px;
}

/*-------margin-----*/
.mb-40{
    margin-bottom: 40px;
}
.mb-50{
    margin-bottom: 50px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-15{
    margin-bottom: 15px;
}
.mb-30{
    margin-bottom: 30px;
}





h3, h4{
    font-family: 'Poppins', sans-serif;
}

a{
    font-family: 'Poppins', sans-serif;
}



/*--------------Home page-----------*/

.header-top{
    padding: 10px 0px;
}

.home-search p{
    background: #026063;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    padding: 5px 40px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.top-search a{
    position: absolute;
    right: 8px;
    top: 6.5px;
    font-size: 20px;
    background: #ed1c24;
    padding: 8px 13px;
    color: #fff;
    border-radius: 24px;
}

.search-form input {
    border-radius: 30px;
    font-size: 18px;
    padding: 15px 30px;
}

.top-search-wrap{
    margin-top: 5px;
}


.desk-cart-box{
    text-align: right;
    text-align: right;
    padding-top: 10px;
    position: relative;
}

.desk-cart-box a{
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin-left: 40px;
}

.desk-cart-box a:first-child{
    margin-left: 0px;
}

.d-user {
    width: 25px;
}

.d-user img{
    width: 100%;
    border-radius: 40px;
}


.cart-icon{
    color: #fff;
}

.heart-iocn {
    color: #fff;
}

.desk-logo a img{
    width: 180px;
}

.mobile-search{
    display: none;
}


/*----------*/
.menu-toggle {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 4px;
    background: #000;
    box-shadow: 0 8px 0 #000,
                0 -8px 0 #000;
}

/* profile menu */

.profile {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: end;
}

.profile h3 {
    text-align: end;
    line-height: 1;
    margin-bottom: 4px;
    font-weight: 600;
}

.profile p {
    line-height: 1;
    font-size: 14px;
    opacity: .6;
}

.profile .img-box {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.profile .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* menu (the right one) */

.pmenu {
    padding: 10px;
    position: absolute;
    top: calc(100% + 27px);
    right: -11px;
    width: 170px;
    min-height: 100px;
    /*background: #edf2fa;*/
    background-color: rgba(0, 39, 29, 0.9);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    z-index: 99;
    text-align: left;
}

.pmenu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 14px;
    width: 20px;
    height: 20px;
    /*background: #edf2fa;*/
    background-color: rgba(0, 29, 29, 0.3);
    transform: rotate(45deg);
    z-index: -1;
}

.pmenu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}



.pmenu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.pmenu ul li a{
       font-size: 15px;
    padding: 7px;
    color: #fff;
}
/*----------*/

.mobileMoreItem {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: end;
}


.mobileMoreMenu {
    padding: 10px;
    position: absolute;
    top: calc(100% + 27px);
    right: -11px;
    width: 170px;
    min-height: 100px;
    background: #edf2fa;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 300ms;
    z-index: 99;
    text-align: left;
}

.mobileMoreMenu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 14px;
    width: 20px;
    height: 20px;
    background: #edf2fa;
    transform: rotate(45deg);
    z-index: -1;
}

.mobileMoreMenu.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}



.mobileMoreMenu ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.mobileMoreMenu ul li a{
       font-size: 15px;
    padding: 7px;
    
}


.mobile-menu-icon{
    font-size: 28px;
    color: #B13481;
    display: inline-block;
    margin-right: 20px;
}

.mobile-header-sec{
    display: none;
}


/*====================SideBar Menu===================*/
@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(10deg);
  }
  30% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
  60% {
    transform: rotate(5deg);
  }
  70% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes sonar {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.page-wrapper .sidebar-wrapper,
.sidebar-wrapper .sidebar-brand > a,
.sidebar-wrapper .sidebar-dropdown > a:after,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before,
.sidebar-wrapper ul li a i,
.page-wrapper .page-content,
.sidebar-wrapper .sidebar-search input.search-menu,
.sidebar-wrapper .sidebar-search .input-group-text,
.sidebar-wrapper .sidebar-menu ul li a,
#show-sidebar,
#close-sidebar {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


/*----------------toggeled sidebar----------------*/
.sidebar-wrapper {
  left: -200px;
}
.toggled .sidebar-wrapper {
  left: 0px;
}

@media screen and (min-width: 768px) {
  .page-wrapper.toggled .page-content {
    padding-left: 300px;
  }
}

/*----------------sidebar-wrapper----------------*/

.sidebar-wrapper {
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  z-index: 999;
}

.sidebar-wrapper ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar-wrapper a {
  text-decoration: none;
}

/*----------------sidebar-content----------------*/
/*
.sidebar-content {
  max-height: calc(100% - 30px);
  height: calc(100% - 30px);
  overflow-y: auto;
  position: relative;
}

.sidebar-content.desktop {
  overflow-y: hidden;
}*/

/*--------------------sidebar-brand----------------------*/

.sidebar-wrapper .sidebar-brand {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  background: #272a2f;
}

.sidebar-wrapper .sidebar-brand > a {
  text-transform: uppercase;
  flex-grow: 1;
  color: #fff;
}

.sidebar-wrapper .sidebar-brand #close-sidebar {
  cursor: pointer;
  font-size: 20px;
  color: #fff;
}
/*--------------------sidebar-header----------------------*/

.sidebar-wrapper .sidebar-header {
    padding: 10px 20px;
    overflow: hidden;
    border-bottom: 1px solid gainsboro;
    margin-bottom: 15px;
}

.sidebar-wrapper .sidebar-header .user-pic {
    float: left;
    width: 50px;
    height: 50px;
    padding: 2px;
    border-radius: 56px;
    margin-right: 15px;
    overflow: hidden;
}

.sidebar-wrapper .sidebar-header .user-pic img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 40px;
}

.sidebar-wrapper .sidebar-header .user-info {
    float: left;
    color: #fff;
}

.sidebar-wrapper .sidebar-header .user-info > span {
  display: block;
}

.sidebar-wrapper .sidebar-header .user-info .user-role {
  font-size: 12px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status {
  font-size: 11px;
  margin-top: 4px;
}

.sidebar-wrapper .sidebar-header .user-info .user-status i {
  font-size: 8px;
  margin-right: 4px;
  color: #5cb85c;
}

/*-----------------------sidebar-search------------------------*/

/*.sidebar-wrapper .sidebar-search > div {
  padding: 10px 20px;
}
*/
/*----------------------sidebar-menu-------------------------*/

.sidebar-wrapper .sidebar-menu {
  padding-bottom: 10px;
}

.sidebar-wrapper .sidebar-menu .header-menu span {
  font-weight: bold;
  font-size: 14px;
  padding: 15px 20px 5px 20px;
  display: inline-block;
}

.sidebar-wrapper .sidebar-menu ul li a {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding: 8px 30px 8px 20px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

/*.sidebar-wrapper .sidebar-menu ul li a i {
  margin-right: 10px;
  font-size: 12px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
}

.sidebar-wrapper .sidebar-menu ul li a:hover > i::before {
  display: inline-block;
  animation: swing ease-in-out 0.5s 1 alternate;
}*/

.sidebar-wrapper .sidebar-menu .sidebar-dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  font-style: normal;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  background: 0 0;
  position: absolute;
  right: 15px;
  top: 14px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu ul {
  padding: 5px 0;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li {
  padding-left: 25px;
  font-size: 13px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 10px;
  font-size: 8px;
}

.sidebar-wrapper .sidebar-menu ul li a span.label,
.sidebar-wrapper .sidebar-menu ul li a span.badge {
  float: right;
  margin-top: 8px;
  margin-left: 5px;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .badge,
.sidebar-wrapper .sidebar-menu .sidebar-dropdown .sidebar-submenu li a .label {
  float: right;
  margin-top: 0px;
}

.sidebar-wrapper .sidebar-menu .sidebar-submenu {
  display: none;
}

.sidebar-wrapper .sidebar-menu .sidebar-dropdown.active > a:after {
  transform: rotate(90deg);
  right: 17px;
}

/*--------------------------side-footer------------------------------*/

.sidebar-footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  display: flex;
  background: #272a2f;
    padding: 9px 0px;
}

.sidebar-footer > a {
  flex-grow: 1;
  text-align: center;
  height: 30px;
  line-height: 30px;
  position: relative;
  color: #fff;
}

.sidebar-footer > a .notification {
  position: absolute;
  top: 0;
}

.badge-sonar {
  display: inline-block;
  background: #980303;
  border-radius: 50%;
  height: 8px;
  width: 8px;
  position: absolute;
  top: 0;
}

.badge-sonar:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #980303;
  opacity: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  animation: sonar 1.5s infinite;
}


/*------scroll bar---------------------*/

::-webkit-scrollbar {
  width: 5px;
  height: 7px;
}
::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
::-webkit-scrollbar-thumb {
  background: #525965;
  border: 0px none #ffffff;
  border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
  background: #525965;
}
::-webkit-scrollbar-thumb:active {
  background: #525965;
}
::-webkit-scrollbar-track {
  background: transparent;
  border: 0px none #ffffff;
  border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
  background: transparent;
}
::-webkit-scrollbar-track:active {
  background: transparent;
}
::-webkit-scrollbar-corner {
  background: transparent;
}


/*-----------------------------chiller-theme-------------------------------------------------*/

.chiller-theme .sidebar-wrapper {
    background: #31353D;
    background-color: rgba(0, 19, 29, 0.9) !important;
}
/*
.chiller-theme .sidebar-wrapper .sidebar-header,
.chiller-theme .sidebar-wrapper .sidebar-search,
.chiller-theme .sidebar-wrapper .sidebar-menu {
    border-top: 1px solid #3a3f48;
}

.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    border-color: transparent;
    box-shadow: none;
}

.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-role,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info .user-status,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text,
.chiller-theme .sidebar-wrapper .sidebar-brand>a,
.chiller-theme .sidebar-wrapper .sidebar-menu ul li a,
.chiller-theme .sidebar-footer>a {
    color: #818896;
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li:hover>a,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active>a,
.chiller-theme .sidebar-wrapper .sidebar-header .user-info,
.chiller-theme .sidebar-wrapper .sidebar-brand>a:hover,
.chiller-theme .sidebar-footer>a:hover i {
    color: #b8bfce;
}

.page-wrapper.chiller-theme.toggled #close-sidebar {
    color: #bdbdbd;
}

.page-wrapper.chiller-theme.toggled #close-sidebar:hover {
    color: #ffffff;
}

.chiller-theme .sidebar-wrapper ul li:hover a i,
.chiller-theme .sidebar-wrapper .sidebar-dropdown .sidebar-submenu li a:hover:before,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu:focus+span,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown.active a i {
    color: #16c7ff;
    text-shadow:0px 0px 10px rgba(22, 199, 255, 0.5);
}

.chiller-theme .sidebar-wrapper .sidebar-menu ul li a i,
.chiller-theme .sidebar-wrapper .sidebar-menu .sidebar-dropdown div,
.chiller-theme .sidebar-wrapper .sidebar-search input.search-menu,
.chiller-theme .sidebar-wrapper .sidebar-search .input-group-text {
    background: #3a3f48;
}

.chiller-theme .sidebar-wrapper .sidebar-menu .header-menu span {
    color: #6c7b88;
}

.chiller-theme .sidebar-footer {
    background: #3a3f48;
    box-shadow: 0px -1px 5px #282c33;
    border-top: 1px solid #464a52;
}

.chiller-theme .sidebar-footer>a:first-child {
    border-left: none;
}

.chiller-theme .sidebar-footer>a:last-child {
    border-right: none;
}
*/
/*====================End SideBar Menu===================*/


.offcanvas-title{
    color: #B13481;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/*
.offcanvas-bottom {
    position: sticky;
    bottom: 20px;
    margin: 0px auto;
    text-align: center;
    border-top: 1px solid #d9d9d9;
}*/

.cart-checkout{
    display: block;
    background: #B13481;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.cart-checkout:hover{
    background: #B13481;
    color: #fff;
}



.cart-goto-shoping{
    text-decoration: none;
    display: inline-block;
    color: #B13481;
    padding-bottom: 20px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.cart-goto-shoping{
    color: #B13481;
}

.cart-empty{
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 24px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #b13481;
    font-weight: bold;
    opacity: 0.5;
}

.pop-cart-qty{
    width: 100px;
    height: 24px;
    margin-top: 5px;
}


.offcanvas-header {
    border-bottom: 1px solid #c7c7c7;
}

.pop-cart-product-item {
    display: flex;
    gap: 7px;
    border-bottom: 1px solid #c7c7c7;
    padding: 7px 0px;
}

.pop-cart-product-item:first-child {
    padding-top: 0px;
}


.offcanvas {
    background-color: rgba(255, 255, 255, .75) !important;
    backdrop-filter: blur(8px) !important;
}


.offcanvas-body {
    padding-bottom: 30px;
    border-bottom: 1px solid #aaaaaa;
}

.offcanvas-footer{
    padding: 20px;
    text-align: center;
}

.qty-input .qty-count {
    
    background: #EAF7E9;
}


.p-c-p-item-img{
    width: 20%;
}

.p-c-p-item-img img{
    width: 100%;
}

.p-c-p-item-cont {
    width: 73%;
}
.p-c-p-item-cont h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.p-c-p-item-cont h4{
    font-size: 15px;
    color: #b13481;
    font-weight: 600;
    margin: 0px;
}

.p-c-p-item-antion{
    float: right;
    width: 8%;
}

.p-c-p-item-antion a{
    display: inline-block;
    font-size: 20px;
    color: #cb1717;
}

.header-bottom{
    border-top: 1px solid #E4E7E9;
    border-bottom: 1px solid #E4E7E9;
    padding: 10px 0px;
}









@media screen and (min-width: 992px) {
  .navbar {
    padding: 0;
  }
  .navbar .navbar-nav .nav-link {
    padding: 1em 0;
  }
  .navbar .navbar-nav .nav-item {
    margin: 0 1em;
  }
}

.navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar .navbar-nav .nav-item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  background-color: #B13481;
  width: 0%;
  height: 4px;
  transition: all 0.5s;
}

.navbar .navbar-nav .nav-item:hover::after {
  width: 100%;
}

.navbar .navbar-nav .nav-item:focus::after {
  width: 100%;
}

.navbar .navbar-nav .nav-item .active::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  background-color: #B13481;
  width: 100%;
  height: 4px;
  transition: all 0.5s;
}

.nav-item a{
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 15px;
}

.menu-box{
    margin: 0px auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* Style for carousel indicators */
.carousel-indicators [data-bs-target] {
  background-color: #fff;
    border-radius: 50%;
    width: 17px;
    height: 17px;

}

.carousel-indicators .active {
      background-color: #B13481;
    }


/*====================================*/
.new-arivel-sec {
    position: relative;
    padding: 80px 50px;
}


#news-slider {
    margin-top: 40px;
}

.araivel-cont h4{
    font-weight: normal;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}


.post-slide {
  background: #fff;
    margin: 5px 10px 20px;
    border-radius: 5px;
    padding-top: 1px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px;
}
.post-slide .post-img {
  position: relative;
  overflow: hidden;
  /*border-radius: 10px;
  margin: -12px 15px 8px 15px;
  margin-left: -10px;*/
}
.post-slide .post-img img {
  width: 100%;
  height: auto;
  transform: scale(1, 1);
  transition: transform 0.2s linear;
}
.post-slide:hover .post-img img {
  transform: scale(1.1, 1.1);
}
.post-slide .over-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(
    -45deg,
    rgba(6, 190, 244, 0.75) 0%,
    rgba(45, 112, 253, 0.6) 100%
  );
  transition: all 0.5s linear;
}
.post-slide:hover .over-layer {
  opacity: 1;
  text-decoration: none;
}
.post-slide .over-layer i {
  position: relative;
  top: 45%;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 25px;
}
.post-slide .post-content {
    background: #fff;
    border-radius: 15px;
    padding-top: 10px;
    text-align: center;
}
.post-slide .post-title a {
    font-size: 15px;
    font-weight: bold;
    color: #000;
    display: inline-block;
    text-transform: uppercase;
    /* transition: all 0.3s ease 0s; */
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
.post-slide .post-title a:hover {
  text-decoration: none;
  color: #3498db;
}
.post-slide .post-description {
  line-height: 24px;
  color: #808080;
  margin-bottom: 25px;
}
.post-slide .post-date {
  color: #a9a9a9;
  font-size: 14px;
}
.post-slide .post-date i {
  font-size: 20px;
  margin-right: 8px;
  color: #cfdace;
}
.post-slide .read-more {
  padding: 7px 20px;
  float: right;
  font-size: 12px;
  background: #2196f3;
  color: #ffffff;
  box-shadow: 0px 10px 20px -10px #1376c5;
  border-radius: 25px;
  text-transform: uppercase;
}
.post-slide .read-more:hover {
  background: #3498db;
  text-decoration: none;
  color: #fff;
}
.owl-controls .owl-buttons {
  text-align: center;
  margin-top: 20px;
}
.owl-controls .owl-buttons .owl-prev {
  background: #fff;
  position: absolute;
  top: -13%;
  left: 15px;
  padding: 0 18px 0 15px;
  border-radius: 50px;
  box-shadow: 3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next {
  background: #fff;
  position: absolute;
  top: -13%;
  right: 15px;
  padding: 0 15px 0 18px;
  border-radius: 50px;
  box-shadow: -3px 14px 25px -10px #92b4d0;
  transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after {
  content: "\f104";
  font-family: FontAwesome;
  color: #333;
  font-size: 30px;
}
.owl-controls .owl-buttons .owl-next:after {
  content: "\f105";
}
@media only screen and (max-width: 1280px) {
  .post-slide .post-content {
    padding: 0px 15px 25px 15px;
  }
}


#news-slider .owl-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 5px;
    background-color: gray; !important;
    border-radius: 50%;
    opacity: 1;
    cursor: pointer;
    border: none;
}

#news-slider .owl-dots .active {
    background-color: #B13481!important;
}


.color_1{
    height: 20px;
    width: 20px;
    background: red;
    border-radius: 20px;
    
}


.color_2{
    height: 20px;
    width: 20px;
    background: pink;
    border-radius: 20px;
    
}
.color_3{
    height: 20px;
    width: 20px;
    background: black;
    border-radius: 20px;
    
}
.color_4{
    height: 20px;
    width: 20px;
    background: green;
    border-radius: 20px;
}


.color-code{
    gap: 7px;
    margin: 0px auto;
    display: flex;
    justify-content: center;
    align-items: center;
        margin-top: 20px;
    margin-bottom: 20px;
}

.new-araivel-title h3{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #5F6C72;
    font-weight: bold;
}

.h-top-categoris{
    position: relative;
}
.h-top-categoris img{
    width: 100%;
    height: 100%;
}
.h-top-categoris-bg {
    background: #0000004a;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.h-top-categoris-cont h3{
    color: #fff;
}

.h-top-categoris-cont a{
    display: inline-block;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}


.collection-title h2{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #484848;
}

/*-------------------------------*/
.home-cate-item a{
    text-decoration: none;
    display: inline-block;
}

.home-cate-item-icon{
    border-radius: 130px;
    overflow: hidden;
    margin-bottom: 30px;
}

.home-cate-item-icon img{
    width: 100%;
}

.home-cate-item-text h3{
    font-size: 20px;
    color: #000;
    text-align: center;
}

.trend-title h3{
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #5F6C72;
    margin-bottom: 30px;
    font-weight: bold;
}

.trend-item a{
    text-decoration: none;
    display: inline-block;
}

.trend-item-img img{
    width: 100%;
}

.trend-item-cont p{
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-top: 15px;
}

.trending-sec{
    padding: 50px 0px;
}

.seasons-collecttion-item a{
    text-decoration: none;
    display: block;
}

.seasons-collecttion-img img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.seasons-collecttion-text h3{
    color: #000;
    text-align: center;
    margin-top: 30px;
}


.seasons-collecttion-title h3 {
        font-size: 30px;
    color: #5F6C72;
    margin-bottom: 30px;
    font-weight: bold;
}

.seasons-more-btn a{
        text-decoration: none;
    display: inline-block;
    text-align: center;
    color: #000;
    font-weight: bold;
    margin-top: 30px;
    font-size: 20px;
    line-height: 20px;

}
.seasons-more-btn p{
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}


.seasons-more-btn a i{
    font-size: 20px;
}







/*--------------------categories pages----------*/

 .categories-banner-bg img{
    width: 100%;
}


.categies-view-head{
    width: 100%;
    padding: 30px 0px 30px;
    overflow: hidden;
}

.categies-view-name{
    float: left;
}

.categies-view-all-btn{
    float: right;
}

.categies-view-name h3{
    font-size: 29px;
    font-family: 'Poppins', sans-serif;
}

.categies-view-all-btn a {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    text-decoration: none;
    color: #000;
}

.categies-view-item{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    border-radius: 5px;
    margin-bottom: 50px;
}

.categies-view-item-img a{
    display: block;
}


.categies-view-item-img a img{
    width: 100%;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}

.categies-view-item-img{
    overflow: hidden;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.categies-view-item:hover .categies-view-item-img a img{
    transform: scale(1.1, 1.1);

}

/*.post-slide .post-img img {
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: transform 0.2s linear;
}
*/

.categies-view-item-cont{
    text-align: center;
    padding: 20px;
}

.categies-view-item-cont h3 a{
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.categies-view-item-cont p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #000;
}

.cat-btn{
    text-decoration: none;
    display: block;
    background: #B13481;
    color: #fff;
    border-radius: 5px;
    padding: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.cat-btn:hover{
    background: #7c275b;
    color: #fff;
}

.categies-newsletter-left{
    background: #bfbfbf;
    padding: 30px;
}


.categies-newsletter{
    padding: 0px 100px;
}


.categies-newsletter-left h2{
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
}

.categies-newsletter-left p{
    margin-bottom: 35px;
}

.newsletter-shop{
    background: #FE64C2;
    text-decoration: none;
    color: #fff;
    padding: 10px 20px;
    display: inline;
    margin-right: 20px;
}

.newsletter-shop:hover{
    color: #fff;
}

 .newsletter-collections{
    text-decoration: none;
    display: inline-block;
    border: 2px solid #000;
    padding: 8px 20px;
    color: #000;
    font-weight: bold;
}

 .newsletter-collections:hover{
    color: #000;
}

.categies-newsletter-right{
    width: 100%;
    height: 100%;
}

.categies-newsletter-right-bg {
    background: #0000003a;
    height: 100%;
    padding: 20px
}

.right-bg-logo{
    text-align: right;
}

.right-newsletter h3{
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    color: #fff;
    margin-top: 30px;
}


.form-subscribe
{
  max-width:600px;
  margin:0 auto
}
.form-subscribe .form-control
{
  background-color: transparent;
    padding-left: 24px;
    padding-right: 24px;
    letter-spacing: 1px;
    border: 1px solid #FFFFFF;
    border-radius: 0px;
    height: 45px;
    color: #fff;
}

.form-subscribe .form-control.focus,.form-subscribe .form-control:focus
{
  z-index:2;
  background-color:hsla(0,0%,100%,.8)
}
.form-subscribe .btn
{
  height: 46.5px;
    position: absolute;
    right: 0px;
}

.newsletter-btn i{
    background: #fff;
    padding: 3px 6px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.input-group-subscribe {
    width: 70%;
    margin-top: 20px;
}

.categories-coupons{
    background: #e8e8e8;
}

.coupons-head h2{
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    margin-bottom: 30px;
}




/*-----------------footer---------------*/
.footer-sec{
    background: #9dc8d1;
    padding: 50px 0px;
}

.fotter-menu h3 {
    font-size: 18px;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.fotter-menu ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.fotter-menu ul li a{
        text-decoration: none;
    color: #000;
    font-size: 14px;
    padding-bottom: 10px;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.footer-left{
    padding-right: 50px;
}

.footer-left p{
    color: #fff;
    font-family: 'Poppins', sans-serif;
        font-size: 14px;
}


.footer-left img {
    margin-bottom: 30px;
    width: 220px;
}

.footer-left h3{
    font-size: 25px;
    font-weight: bold;
    color: #fff;
}


.copyright p {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    padding-top: 10px;

}

.copyright p a{
    display: inline-block;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

.social{
    margin-top: 20px;
}
.social a{
    color: #000;
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
}

.coupon-btn{
    text-align: center;
    padding: 20px 0px;
}

.coupon-btn a{
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-size: 25px;
    font-weight: bold;
    background: #d2d1d1;
    padding: 5px 20px;
    margin: 0px 10px;
}

.fotter-menu{
    padding-right: 30px;
}
.fotter-menu p{
    color: #d0d0d0;
}



.footer-paylist img{
    width: 140px;
}

.footer-paylist{
    text-align: right;
}

.footer-bottom{
    padding-top: 30px;
    border-top: 1px solid gray;
    margin-top: 30px;
}


/*---------------start contact-----------*/

.contact-banner-bg {
    background-image: url(image/categories-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.contact-banner{
    height: 100%;
    padding: 80px;
}
.contact-banner-left {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;y
        margin-top: 20px;
}


.contact-banner-right {
    border: 2px solid #B13481;
    background: #fff;
    padding: 50px;
    border-radius: 5px;
    padding-left: 100px;
}

.in-bg {
    background: #F1F1F1;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 0px, rgba(0, 0, 0, 0.23) 0px 1px 2px;
}


.in-bg:focus {
    background: #F1F1F1;
}

.contact-btn{
    background: #B13481;
    color: #fff;
    padding: 7px 25px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 0px, rgba(0, 0, 0, 0.23) 0px 1px 2px;
    margin-bottom: 30px;
}

.contact-btn:hover{
    background: #752054;
    color: #fff;
}

.banner-contact-item h3{
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}


.banner-contact-item ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.banner-contact-item{
    margin-bottom: 30px;
}

.banner-contact-item ul li {
    padding: 5px 0px;
    display: flex;
}
.banner-contact-item ul li i {
    color: #B13481;
    font-size: 20px;
    margin-right: 8px;
    margin-top: 3px;
}

.banner-contact-item-2 h3{
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
}

.banner-contact-item-2 ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.banner-contact-item-2 ul li a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    color: #000;
    padding: 5px 0px;
}

.banner-contact-item-2 ul li a i {
    color: #B13481;
    font-size: 20px;
    margin-right: 8px;
}


.contact-banner-right h3{
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;
}


.faq-sec{
    padding: 80px 50px;
}

.faq h3
{
    text-align: center;
    margin-bottom: 30px;
    font-size: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
 /*   max-width: 991px;
    min-width: 320px;
    margin: 50px auto;
    padding: 0 50px;*/
}
.accordion h1 {
    font-size: 32px;
    text-align: center;
}
.accordion-item {
    margin-top: 16px;
    border: 1px solid #fcfcfc;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.accordion-item .accordion-item-title {
    position: relative;
    margin: 0;
    display: flex;
    width: 100%;
    font-size: 20px;
    cursor: pointer;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 6px, rgba(0, 0, 0, 0.23) 0px 2px 6px;
}
.accordion-item .accordion-item-desc {
    display: none;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: #000;
    border-top: 1px dashed #ddd;
    padding: 10px 20px 20px;
    box-sizing: border-box;
}
.accordion-item input[type="checkbox"] {
    position: absolute;
    height: 0;
    width: 0;
    opacity: 0;
}
.accordion-item input[type="checkbox"]:checked ~ .accordion-item-desc {
    display: block;
}
.accordion-item
    input[type="checkbox"]:checked
    ~ .accordion-item-title
    .icon:after {
    content: "-";
    font-size: 20px;
}
.accordion-item input[type="checkbox"] ~ .accordion-item-title .icon:after {
    content: "+";
    font-size: 20px;
}
.accordion-item:first-child {
    margin-top: 0;
}
.accordion-item .icon {
    margin-left: 14px;
}

/*.accordion-item{
    margin-bottom: 15px;
}
*/
@media screen and (max-width: 767px) {
    .accordion {
        padding: 0 16px;
    }
    .accordion h1 {
        font-size: 22px;
    }
}



/*---------------Start About us-----------*/
.about-banner-sec img{
    width: 100%;
}


.about-cont-sec{
    background: #fbeeee;
    padding: 50px;
}

.about-cont-img img{
    width: 95%;
}

.about-cont-text {
    padding-right: 130px;
    padding-top: 80px;
}


.about-cont-text h3 {
    font-size: 30px;
    margin-bottom: 40px;
}

.about-cont-text p{
    font-size: 17px;
}

.service-process-box{
    border: 1.5px solid #d8d8d8;
    padding: 20px;
}

.service-process-item img{
    width: 60px;
    margin-bottom: 20px;
}

.service-process-item h3 {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.service-process-item p{
    margin: 0px;
    font-size: 15px;
}

 .about-video-banner{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.about-video-bg{
    padding: 200px 50px;
}

.about-video-cont h3{
    font-size: 30px;
    margin-bottom: 30px;
}

.about-video-cont  p{
    margin-bottom: 30px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
}

.about-video-cont img{
    width: 60px;
}

.about-subscribe-sec{
    background: #fbeeee;
    padding: 80px 50px;
}

.subscribe h3{
    font-size: 32px;
    margin-bottom: 25px;
}

.subscribe p{
    margin-bottom: 50px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;

}

.subscribe-input{
    height: 50px;
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 0px, rgba(0, 0, 0, 0.23) 0px 1px 2px;
    color: gray;
    border-radius: 0px;
}



.subscribe-btn{
    border: 1px solid #000;
    padding: 8px 20px;
    margin-top: 4px;
    background: #f5e0e0;
}

.about-social h3{
    color: #CCCCCC;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-social-icon a{
    font-size: 35px;
    padding: 0px 5px;
    color: #B13481;
}



/*---------Wishlist----------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
}


.breadcrumb a { text-decoration: none; }


.breadcrumb a::after { content: ">"; }
.breadcrumb a:last-child::after { content: ""; }


.breadcrumb, .breadcrumb * {
  box-sizing: border-box;
}
.breadcrumb {
  padding: 15px;
  border-radius: 10px;
}

.breadcrumb a::after { padding: 0 10px; }



.breadcrumb.red { background: #EDF0F8 }
.breadcrumb.red a { 
    color: #000; 
    font-family: 'Poppins', sans-serif;
}
.breadcrumb.red a::after { 
    list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E")
    color: gray; }


 .breadcrumb a:last-child{
       color: #b13481;
}   

.Wishlist-table{
    border: 1px solid #e2e2e2;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.wishlist-title{
    background: #edf2fa;
}

.Wishlist-table>:not(caption)>*>* {
    border-width: 0px!important;
}

.Wishlist-table>:not(caption)>* {
    border-width: 0px;
}

.wishlist-head{
    font-size: 18px;
    padding: 10px 4px;
    margin: 0px;
    font-weight: bold;
}

.wish-btn {
    text-decoration: none;
    display: block;
    background: #B13481;
    color: #fff;
    border-radius: 5px;
    padding: 6px;
    font-size: 12px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.wish-btn:hover {
    color: #fff;
}

.wish-dlt-btn{
    color: gray;
    display: inline-block;
    margin-top: 5px;
}

.wishlist-action{
    gap: 10px;
    float: right;

}

.wishlist-stock{
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: green;
    font-weight: 600;
    padding-top: 6px;
}

.wishlist-discount{
    color: gray;
    text-decoration: line-through;
    margin-right: 10px;
}

.wishlist-t-product {
    gap: 10px;
    padding-right: 80px;
}

.wishlist-t-img{
    width: 70px;
}

.wishlist-t-img img{
    width: 70px;
}


.wishlist-t-name p{
    margin: 0px;
    font-size: 13px;
    color: #6d6d6d;
    font-family: 'Poppins', sans-serif;
}

.wishlist-out-stock{
    color: red;
}


.cart-t-product{
    gap: 10px;
}

.cart-t-product img{
    width: 50px;
}

.cart-t-product p{
    margin: 0px;
    font-size: 13px;
    color: #757373;
    padding-right: 20px;
}

.cart-t-product a{
    display: inline-block;
    color: #000;
    font-size: 18px;
    margin-top: 10px;
} 


.cart-t-product a:hover{
    color: red;
}


.qty-input {
     color: #000;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e2e2e2;
    border-radius: 0px;
    margin-right: 10px;
}
 .qty-input .product-qty, .qty-input .qty-count {
     background: transparent;
     color: inherit;
     font-weight: normal;
     font-size: inherit;
     border: none;
     display: inline-block;
     min-width: 0;
     height: 2rem;
     line-height: 1;
}
 .qty-input .product-qty:focus, .qty-input .qty-count:focus {
     outline: none;
}
 .qty-input .product-qty {
     width: 60%;
     min-width: 0;
     display: inline-block;
     text-align: center;
     appearance: textfield;
}
 .qty-input .product-qty::-webkit-outer-spin-button, .qty-input .product-qty::-webkit-inner-spin-button {
     appearance: none;
     margin: 0;
}
 .qty-input .qty-count {
     padding: 0;
     cursor: pointer;
     width: 2.5rem;
     font-size: 1.25em;
     text-indent: -100px;
     overflow: hidden;
     position: relative;
}
 .qty-input .qty-count:before, .qty-input .qty-count:after {
     content: "";
     height: 2px;
     width: 10px;
     position: absolute;
     display: block;
     background: #000;
     top: 0;
     bottom: 0;
     left: 0;
     right: 0;
     margin: auto;
}
/* .qty-input .qty-count--minus {
     border-right: 1px solid #e2e2e2;
}
 .qty-input .qty-count--add {
     border-left: 1px solid #e2e2e2;
}*/
 .qty-input .qty-count--add:after {
     transform: rotate(90deg);
}
 .qty-input .qty-count:disabled {
     color: #ccc;
     background: #f2f2f2;
     cursor: not-allowed;
     border-color: transparent;
}
 .qty-input .qty-count:disabled:before, .qty-input .qty-count:disabled:after {
     background: #ccc;
}


.cart-footer{
    border-top: 1px solid #e2e2e2;
}

.cart-return-btn{
    text-decoration: none;
    color: #2DA5F3;
    border: 2px solid #2DA5F3;
    display: inline-block;
    padding: 7px 16px;
    font-size: 15px;
}

.cart-update-btn{
    text-decoration: none;
    color: #2DA5F3;
    border: 2px solid #2DA5F3;
    display: inline-block;
    padding: 7px 16px;
    font-size: 15px;
    float: right;
}

.cart-footer-box{
    padding: 10px;
}

.card-totals{
    border: 1px solid #e2e2e2;
    padding: 20px;
    border-radius: 5px;
}

.card-totals h3{
    font-size: 18px;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
        font-weight: bold;
}

.card-totals ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.card-totals ul li{
    color: gray;
    padding: 5px 0px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;

}

.card-totals ul li span{
    float: right;
    color: #000;
    font-weight: 600;
}

.card-devider{
    background: #e2e2e2;
    padding: 0px!important;
    height: 1.5px;
    margin-top: 11px;
    margin-bottom: 11px;
}


.grand-total{
    font-size: 16px !important;
    font-weight: bold;
}

.card-totals a{
    display: block;
    text-decoration: none;
    background: #FF009C;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    border-radius: 4px;
}

.card-coupon{
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    margin-top: 20px;
}

.card-coupon-header{
    padding: 20px;
    border-bottom: 1px solid #e2e2e2;
    font-family: 'Poppins', sans-serif;
        font-weight: bold;
}

.card-coupon-body{
    padding: 20px;
}

.card-coupon-btn{
    border: 0px;
    background: #FF009C;
    color: #fff;
    font-size: 14px;
    padding: 10px 30px;
    margin-top: 15px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}


.card-coupon-input{
    height: 45px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}


/*-------------Dashboard-------------*/
.dashboard-breadcamp{
    background: #F2F4F5;
   padding: 0px;
}

.d-board{
    background: transparent !important;
        margin-bottom: 0px;
}

.dashboard-left-side{
    padding-right: 30px;
}

.dashboard-left-menu{
    border: 1px solid #E4E7E9;
    border-radius: 5px;
}

.dashboard-left-menu ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
    margin-top: 10px;
}
.dashboard-left-menu ul li a{
    text-decoration: none;
    display: block;
    padding: 10px 20px;
    color: #5F6C72;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.dashboard-left-menu ul li a:hover{
    background: #B13481;
    color: #fff;
}

.dashboard-left-menu ul li .active {
    background: #B13481;
    color: #fff;
}



.dashboard-left-menu ul li a i{
    margin-right: 8px;
}

.dashboard-p-histor-cont{
    font-size: 15px;
}

.dashboard-p-histor-cont h3{
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.dashboard-p-histor-cont p{
     font-family: 'Poppins', sans-serif;
     font-size: 14px;
     margin-bottom: 30px;
}

 .dashboard-p-histor-cont p a{
    text-decoration: none;
    display: inline-block;
    color: #FF009C;
}

.info-card ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.info-card ul li{
    padding: 4px 0px;
    color: #5F6C72;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
}

.info-card ul li span{
    color: #000;
    font-weight: bold
}

.info-card h3{
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.info-card p{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin: 0px;
    color: #5F6C72;
}

.info-card-img {
    width: 50px;
    border-radius: 40px;
    overflow: hidden;
    margin-right: 17px;
}

.info-card-img img{
    width: 100%;
}

.info-card-text h3{
    margin-bottom: 8px;
}

.edit-address{
    text-decoration: none;
    display: inline-block;
    color: #2DA5F3;
    border: 1px solid #2DA5F3;
    padding: 7px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-top: 10px;
}

.edit-address:hover{
    color: #fff;
    background:#2DA5F3 ;
}

.card-body-top{
    margin-bottom: 15px;
}

.d-order-history-item-1{
    background: #EAF6FE;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.d-order-history-item-2{
    background: #FFF3EB;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
     border-radius: 4px;
}
.d-order-history-item-3{
    background: #EAF7E9;
    display: flex;
    gap: 15px;
     border-radius: 4px;
}

.d-order-history-item-text h3{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0px;
}

.d-order-history-item-text p{
    font-family: 'Poppins', sans-serif;
    margin: 0px;
    font-size: 14px;
   
}

.d-order-history-item-img img{
    width: 40px;
}

.custom-input{
    
    height: 40px;
    border-radius: 3px;
}

.update-card-btn{
    background: #FF009C;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 4px !important;
}

.modal-content {
    background-color: #EAF7E9;
}

.modal-title {
    font-size: 20px;
}

.card{
    border: 1px solid #E4E7E9!important;
}

.card-header{
    background: transparent;
    border-bottom: 1px solid #E4E7E9;
    font-family: 'Poppins', sans-serif;
}


 .add-card-btn{
    float: right;
    text-decoration: none;
    color: #FA8232;
    font-size: 14px;
    padding-top: 3px;
}

.add-card-btn:hover{
    color: #B13481;
}


.d-card-item{
    background: #165278;
    padding: 30px 20px;
    border-radius: 5px;
}

.d-card-amount h3{
    color: #fff;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    display: inline;
}

.d-card-amount a{
    color: #fff;
    float: right;
    font-size: 18px;
    display: inline-block;
}

.d-card-info p{
    color: #d1d1d1;
    text-transform: uppercase;
    font-size: 13px;
}

.d-card-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    color: #fff;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.d-card-info a{
    color: #fff;
}

.d-card-footer{
    overflow: hidden;
    width: 100%;
}
.d-card-footer img{
    width: 45px;
}

.d-card-footer h3{
    font-size: 14px;
    color: #fff;
    float: right;
    padding-top: 14px;
    margin-bottom: 0px;
}

.d-card-info{
    margin-bottom: 20px;
}

.d-card-item-2 {
    background: #29a121;
}

.order-view-btn{
    color: #2DA5F3;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.order-progress{
    color: #FA8232;
}
.order-completed{
    color: #2DB224;
}

.order-cancel{
    color: #EE5858;
}

.o-date{
    color: #5F6C72;
}

.recent-order-head{
    display: inline-block;
    font-size: 18px;
    padding: 4px;
    margin: 0px;
}

.Wishlist-table {
    border: 1px solid #e2e2e2;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 0px;
}


.d-p-body{
    padding: 0px;
}


.browsing-title{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.browsing-p-price{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #2DA5F3;
    font-weight: bold;
    margin: 0px;
    margin-top: 15px;
}


.owl-prev{
    border: 1px solid #FA8232!important;
    width: 40px;
    height: 40px;
    padding: 0px;
    border-radius: 40px!important;
}

.owl-next{
    border: 1px solid #FA8232!important;
    width: 40px;
    height: 40px;
    padding: 0px;
    border-radius: 40px!important;
}

 .custom-owl-nav {
    text-align: center;
    margin-top: 10px;
}
 .custom-owl-nav {
    text-align: center;
    margin-top: 10px;
        margin-bottom: 30px;
}
.custom-owl-nav button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background-color: #007bff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    border: none;
}

/*.owl-dot.active {
    background-color: #FA8232!important;
    opacity: 1;
}
*/.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #FA8232;
}
.custom-owl-nav button {
    background-color: transparent;
    color: #FA8232;
    padding: 5px 10px;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
}

.custom-owl-nav button:hover {
    background-color: #FA8232;
    color: #fff;
}

 /* Slider */
.slick-slide {
    margin: 0px 20px;
}

.slick-slide img {
    width: auto;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-initialized .slick-slide {
    display: block;
}


.slick-dots li button:before {
    font-family: 'slick';
    font-size: 25px!important;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.brand-slider h2{
    font-family: 'Poppins', sans-serif;
    font-size: 37px;
    text-align: center;
    margin-bottom: 40px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #B13481;
}
.slick-dots li:hover button:before {
    opacity: 1;
    color: #B13481;
}
.slick-dots li:focus button:before {
    opacity: 1;
    color: #B13481;
}

.slick-track{
    border: 2px solid #FF009C;
    padding: 20px!important;
}



/*---------------Account Setting ---------*/
.acount-setting-img img{
    width: 100%;
}

.acount-setting-img{
    border-radius: 70px;
    overflow: hidden;
}

label {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.acount-up-btn{
    background: #b13481;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 4px !important;
    padding: 10px 20px;
}

.acount-up-btn:hover{
    background: #8c2765;
    color: #fff;
}

.field-icon {
  float: right;
    margin-left: -25px;
    margin-top: -27px;
    position: relative;
    z-index: 2;
    margin-right: 13px;
    color: gray;
}


/*-------------Track Order------------*/
.track-back-btn {
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-size: 18px;
}

.track-back-btn:hover {
    color: #000;
}

.track-custom-body{
    padding: 0px;
}

.oder-track-item-1{
    border-bottom: 1px solid #E4E7E9;
    padding: 20px;
}

.track-order-num-box{
    background: #FDFAE7;
    border: 2px solid #ece5b3;
    border-radius: 5px;
    padding: 20px;
    overflow: hidden;
}

.track-order-num{
    float: left;
}

.track-order-price{
    float: right;
}


.track-order-num p{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0px;
}


.track-order-num p span {
    margin-right: 20px;
}
.track-order-num h3{
    font-size: 20px;
}

.track-order-price h3{
    margin: 0px;
    font-size: 24px;
    color: #2DA5F3;
    font-weight: bold;
    padding-top: 14px;
}





.oder-track-item-2{
    border-bottom: 1px solid #E4E7E9;
    padding: 20px;
}
.oder-track-item-3{
    border-bottom: 1px solid #E4E7E9;
    padding: 20px;
}
.oder-track-item-4{
    border-bottom: 1px solid #E4E7E9;
    padding: 20px;
}




/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    
    width: 25%;
    float: left;
    position: relative;
    text-align: center;
}


#progressbar li p{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    margin: 0px;
    color: gray;
}

#progressbar li:before {
    content: ' ';
    width: 24px;
    height: 24px;
    line-height: 26px;
    display: block;
    font-size: 12px;
    color: #333;
    background: white;
    border-radius: 25px;
    margin: 0 auto 10px auto;
    border: 2px solid #FA8232;
        z-index: 2;
    position: relative;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #b9b9b9;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: 0;
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}


#progressbar li.active:before, #progressbar li.active:after {
    
    background: #FA8232;
    color: white;
}

 #progressbar li.active:before {
    /*content: '\f00c';*/
    background: #FA8232;
    color: white;
}

 #progressbar li.active p{
    color: #000;
}


/* Not relevant to this form */
.dme_link {
    margin-top: 30px;
    text-align: center;
}
.dme_link a {
    background: #FFF;
    font-weight: bold;
    color: #ee0979;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 5px 25px;
    font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
    background: #C5C5F1;
    text-decoration: none;
}

#progressbar li i{
    font-size: 35px;
}
.placed i{
    color: #2DB224;
    font-weight: bold;
}

.packaging i{
    color: red;
}


.activity-item{
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.activity-item-text p {
    margin: 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-bottom: 6px;
}

.activity-item-date{
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: gray;
}

.activity-box h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.track-p-name h4{
    color: #2DA5F3;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.track-p-name p{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.track-p-item:last-child td {
    border-bottom: 0px;
}
.track-p-item td {
   padding: 15px 0px;
}

.oder-track-item-3 h3 {
    font-size: 20px;
    margin-bottom: 20px;
}


.order-track-addess-item h3{
    font-size: 18px;
    margin-bottom: 20px;
}

.order-track-addess-item h4{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.order-track-addess-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: gray;
    margin-bottom: 8px;
}
.order-track-addess-item p strong {
    font-weight: bolder;
    color: #000;
}

.o-t-a-b{
    border-right: 1px solid #E4E7E9;
}



/*-------------Browsing History-------------*/

.browsing-product-item a {
    display: block;
    text-decoration: none;
    color: #000;
}

.browsing-product-item-img img{
    width: 100%;
    border-radius: 5px;
}

.browsing-product-item-cont{
    margin-top: 20px;
}

.browsing-product-item-cont h3{
    font-size: 14px;
}
.browsing-product-item-cont h4{
    color: #2DA5F3;
    font-size: 20px;
    margin-top: 14px;
}


.history-load a{
    text-decoration: none;
    color: #FF009C;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #FF009C;
    display: inline-block;
    padding: 6px 20px;
    margin-top: 40px;
    border-radius: 4px;
}

.history-load a i{
    margin-right: 10px;
}

.b-p-rating span{
    font-size: 13px;
}

.star-rating {
  line-height:32px;
}

.star-rating .fa-star{
    color: gray;
}

.star-rating .active i{
    color: #FA8232;
    font-weight: bold;
}

.browsing-product-item-img{
    position: relative;
}
.p-badge{
    
    display: inline-block;
    color: #fff;
    padding: 5px 13px;
    border-radius: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    position: absolute;
    left: 10px;
    top: 10px;
}

.hot{
   background: #EE5858; 
}
.best-deals-badge{
    background-color: #2DA5F3;
}

.sold-badge{
    background: #929FA5;
}

.offer-badge{
    background: #EFD33D;
    color: #000;
}

.sales-badge{
    background: #2DB224;
}

.browsing-header-item h3 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.browsing-header-item p{
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    float: right;
    margin: 0px;
}

.form-switch-box{
    float: right;
}

.form-switch-sm{
    float: right;
}
.form-switch-box span{
    margin-right: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}


 .search-form-wrap {
     display: block;
}
 .search-form .form-group {
     position: relative;
}
.search-form .form-group #s {
    padding-right: 50px;
    padding: 10px 15px;
    padding-left: 50px;
    border: 1px solid #E4E7E9;
    border-radius: 3px;
}
 .search-form .icon {
     position: absolute;
     top: 50%;
     left: 20px;
     transform: translateY(-50%);
}
 

.browsing-search-date input{
    height: 45px;
    border-radius: 3px;
}

.border-0{
    border: 0px!important;
}




/****************************************
                Shop Page
*****************************************/

.shop__sidebar {
    padding-right: 20px;
    border: 1px solid black;
    padding: 25px;
}
.shop__sidebar a{
    text-decoration: none;
}
.shop__sidebar__accordion .card {
    border: none;
    border-radius: 0;
    margin-bottom: 25px;
}

.shop__sidebar__accordion .card:last-child {
    margin-bottom: 0;
}

.shop__sidebar__accordion .card:last-child .card-body {
    padding-bottom: 0;
    border-bottom: none;
}

.shop__sidebar__accordion .card-body {
    padding: 0;
    padding-top: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.shop__sidebar__accordion .card-heading {
    cursor: pointer;
}

.shop__sidebar__accordion .card-heading a {
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.shop-categiri-list ul{
     list-style: none;
    margin: 0px;
    padding: 0px;
}


.shop-categiri-list ul li img {
    width: 60px;
    height: 57px;
    border: 1px solid gainsboro;
    border-radius: 5px;
    margin-right: 10px;
}

.shop-categiri-list ul li a{
    color: #000000;
    font-size: 15px;
    line-height: 32px;
    display: block;
    padding: 4px 0px;
        font-family: 'Poppins', sans-serif;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.shop-categiri-list ul li a:hover {
    height: auto;
}

.shop__sidebar__price ul {
    height: auto;
}

.shop__sidebar__size {
    padding-top: 15px;
}

.shop__sidebar__size label {
    color: #111111;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #e5e5e5;
    background-color: #F5F4F4;
    width: 100%;
    height: 40px;
    padding: 4px;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.shop__sidebar__size label.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.shop__sidebar__size label input {
    position: absolute;
    visibility: hidden;
}

.shop__sidebar__color {
    padding-top: 15px;
    text-align: center;
}
.shop__sidebar__color .col-md-4{
    margin:10px 0;
    font-weight: 700;
}
.shop__sidebar__color label {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
}

.shop__sidebar__color label.c-1 {
    background: #0b090c;
}

.shop__sidebar__color label.c-2 {
    background: #20315f;
}

.shop__sidebar__color label.c-3 {
    background: #f1af4d;
}

.shop__sidebar__color label.c-4 {
    background: #636068;
}

.shop__sidebar__color label.c-5 {
    background: #57594d;
}

.shop__sidebar__color label.c-6 {
    background: #e8bac4;
}

.shop__sidebar__color label.c-7 {
    background: #d6c1d7;
}

.shop__sidebar__color label.c-8 {
    background: #ed1c24;
}

.shop__sidebar__color label.c-9 {
    background: #ffffff;
}

.shop__sidebar__color label:after {
    position: absolute;
    left: -3px;
    top: -3px;
    height: 36px;
    width: 36px;
    border: 1px solid #e5e5e5;
    content: "";
    border-radius: 50%;
}

.shop__sidebar__color label input {
    position: absolute;
    visibility: hidden;
}


.shop__sidebar__accordion .card-heading a:after,
.shop__sidebar__accordion .card-heading>a.active[aria-expanded=false]:after {
    content: "";
    font-family: "FontAwesome";
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    position: absolute;
    right: 0;
    top: 2px;
    line-height: 20px;
}

.shop__sidebar__accordion .card-heading.active a:after {
    content: "";
    font-family: "FontAwesome";
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    position: absolute;
    right: 0;
    top: 2px;
    line-height: 20px;
}



.shop-product-card {
    position: relative;
    margin-bottom: 25px;
    box-shadow: .39px 4.281px 9.5px hsla(0, 0%, 74%, .59);
    border-radius: 8px;
}


.prduct-cont{
    padding: 15px 10px;
}


  .shop-product-card h5{
    font-size: 17px;
    font-weight: normal;
    color: gray;
  }
    .shop-product-card p{
        font-size: 14px;
        font-weight: 400;
    }
  .shop-product-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .shop-product-card .price{
    font-weight: normal;
    font-size: 20px;
  }
  .shop-product-card .price del{
    font-weight: 400;
    font-size: 16px;
  }

.btn-box {
    text-align: center;
    margin-top: 17px;
}
.btn-box a{
    text-decoration: none;
    box-shadow: 2px 2.5px 6px #bdbdbd96;
    color: #000;
    display: inline-block;
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid #f1f1f1;
}

.btn-box a:hover{
    background: #ed1c24;
    border: 1px solid #ed1c24;
    color: #fff;
}

.product-img{
    position: relative;
}
.shop-product-card .badge-offer {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    color: gray;
    padding: 2px 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
  }




  /*.shop-product-card .badge-offer {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #fff;
    color: #D0021B;
    padding: 5px 10px;
    font-size: 0.9rem;
    font-weight: 800;
  }
  .shop-product-card .badge{
    color:#000;
    background-color: #FFCA63;
    font-weight: 500;
    border-radius: 35px;
    padding: 5px 10px;
  }
  .shop-product-card .color-options {
    display: flex;
    margin-top: 20px;
  }

  .shop-product-card .color-options div {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
  }*/
  .page-item{
    margin: 0 5px;
  }
  .page-item:first-child .page-link{
    background-color: #D1D5DB;
   
  }
  .page-link{
    color: #000;
  }
  .active>.page-link, .page-link.active{
    background-color: #B13481;
    border-color: #000;
  }
  .rs-container .rs-selected{
    background-color: #B13481;
    border-color: #B13481;
  }



/****************************************
            Single Shop Page
*****************************************/
.shop.single{
    padding:70px 0 100px;
}
.shop.single .product-gallery {
    margin-top: 30px;
}
.shop.single .flexslider-thumbnails {
    position: relative;
}
.shop.single .product-gallery .slides li{
    position:relative;
}
.shop.single .product-gallery .slides li img{
    width:100%;
}
.shop.single .flex-control-nav{
    margin-top:15px;
}
.shop.single .flex-control-thumbs li {
    width: 20%;
    position: relative;
    margin: 0 8px 10px -3px;
}
.shop.single .flex-control-thumbs li img {
    border: none;
    padding: 0;
    border:1px solid transparent;
    width: 100px;
    height: 100px;
    border-radius: 21px;
}
.shop.single .flex-control-thumbs li img.flex-active{
    border-color:#F7941D;
}
.shop.single .flex-direction-nav{
    display:none;
}
.shop.single .product-des{
    margin-top:30px;
}
.shop.single .product-des .short h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: -5px;
    line-height: 28px;
}
.shop.single .product-des .short .description {
    font-size: 14px;
    color: #555555;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop.single .product-des .total-review{
    font-size:14px;
    font-weight:500;
    margin-left:10px;
    display:inline-block;
}
.shop.single .product-des .total-review:hover{
    color:#F7941D;
}
.shop.single .product-des  .rating{
    margin-top:20px;
    display:inline-block;
}
.shop.single .product-des .rating li{
    display:inline-block;
}
.shop.single .product-des .rating li i{
    color:#F7941D;
}
.shop.single .product-des .rating li.dark i{
    color:#555;
}
.shop.single .product-des .price {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-top: 15px;
}
.shop.single .product-des .price s{
    color:#333;
}
.shop.single .product-des .price span{
    display:inline-block;
    margin-right:15px;
    color:#F7941D;
}
.shop.single .product-des .product-buy {
    margin-top: 40px;
}
.shop.single .product-des .product-buy{}
.shop.single .product-des .color {
    display: inline-block;
    margin-right: 50px;
}
.shop.single .product-des .color h4 {
    font-size: 18px;
    font-weight: 600;
}
.shop.single .product-des .color h4 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
}
.shop.single .product-des .color ul{
    margin-top: 10px;
}
.shop.single .product-des .color ul li{
    display:inline-block;
    margin-right:5px;
}
.shop.single .product-des .color ul li:last-child{
    margin-right:0;
}
.shop.single .product-des .color ul li a{
    height:30px;
    width:30px;
    line-height:30px;
    text-align:center;
    display:block;
    background:#333;
}
.shop.single .product-des .color ul li a i{
    font-size:11px;
    color:#fff;
    opacity:0;
    visibility:hidden;
    -webkit-transition:all 0.4s ease;
    -moz-transition:all 0.4s ease;
    transition:all 0.4s ease;
}
.shop.single .product-des .color ul li a:hover i{
    opacity:1;
    visibility:visible;
}
.shop.single .product-des .color ul li .one{
    background:#3498db;
}
.shop.single .product-des .color ul li .two{
    background:#F7941D;
}
.shop.single .product-des .color ul li .three{
    background:#8e44ad;
}
.shop.single .product-des .color ul li .four{
    background:#2ecc71;
}
/* Size */
.shop.single .product-des .size{
    display:inline-block;
}
.shop.single .product-des .size h4{
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0px;
}
.shop.single .product-des .size ul{
    display:inline-block;
    margin-top: 10px;
}
.shop.single .product-des .size ul li {
    display: inline-block;
    margin-right: 5px;
}
.shop.single .product-des .size ul li:last-child{
    margin-right:0;
}
.shop.single .product-des .size ul li a {
    display: block;
    height: 30px;
    width: 36px;
    border: 1px solid #eee;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
}
.shop.single .product-des .size ul li a:hover{
    color:#F7941D;
}
.shop .cat{
    font-size: 14px;
    font-weight: 500;
    color:#333;
    margin-top:30px;
}
.shop .cat a{
    display:inline-block;
    margin-left:10px;
}
.shop .cat a:hover{
    color:#F7941D;
}
.shop .availability{
    color:#333;
    font-size:14px;
    margin-top:6px;
}
/* Product Tab */

.single-tab .nav-tabs .nav-link{
    color: #5F6C72;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    background-color: transparent;
    margin-right: 20px;
}
.single-tab .nav-link.active{
    background-color: transparent;
    border: none;
    color: #191C1F;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 3px solid #F7941D;
}

.shop .product-title h2{
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}
.shop .product-title p{
    font-size: 16px;
    font-weight: 400;
    color: #333;
}
.shop .product-title i:first-child{
    color: #D46F77;
    font-size: 16px;
    font-weight: 700;
    margin-right: 15px;
}
.shop .product-title button{
    background-color: #FFF0F0;
    color: #D46F77;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 15px;
    border: none;
    border-radius: 11px;
    margin: 20px 15px 0 0;
    cursor: pointer;
}
.shop .product-title i:not(:first-child){
    color: #3A4980;
    background-color: #EDF0F8;
    font-size: 16px;
    font-weight: 700;
    margin-right: 15px;
    padding: 10px 13px;
    border-radius: 11px;
}

.shop .product-price h3{
    font-size: 35px;
    font-weight: 700;
    color: #3A4980;
    margin-top: 20px;
}
.shop .product-price del{
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin-left: 10px;
}
.shop .product-price button{
    background-color: #FFF0F0;
    color: #D46F77;
    font-size: 16px;
    font-weight: 700;
    padding: 6px 15px;
    border: none;
    border-radius: 11px;
    margin: 20px 15px 0 0;
    cursor: pointer;
}
.shop .product-price p{
    color:#B9BBBF;
    font-size: 16px;
}
.shop .product-price span{
    color:#B9BBBF;
    font-size: 16px;
    font-weight: 700;
    margin-right: 10px;
}
.shop .review{
    color: #3A4980 !important;
    background-color: #EDF0F8 !important;
}
.shop .review i{
    color: #3A4980!important;
}
.shop .product-color h3,.product-size h3{
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    color: #B9BBBF;
}
.shop .product-color label {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
}
.shop .product-color label:after {
    position: absolute;
    left: -3px;
    top: -3px;
    height: 36px;
    width: 36px;
    border: 1px solid #e5e5e5;
    content: "";
    border-radius: 50%;
}
.shop .product-color label input {
    position: absolute;
    visibility: hidden;
}
.shop .product-size label {
    text-align: center;
    height: 30px;
    width: 80px;
    border-radius: 8px;
    position: relative;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #F3F3F3;
}

.shop .product-size label input {
    position: absolute;
    left: 5px;
    top: 5px;
}
.shop .quantity{
    display: inline-flex;
}
.shop .quantity button:first-child{
    height: 50px;
    background-color: #F3F3F3;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 0 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
}
.shop .quantity button:last-child{
    height: 50px;
    background-color: #F3F3F3;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 0 10px;
    border: none;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}
.shop .quantity input{
    width: 50px;
    height: 50px;
    background-color: #F3F3F3;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    padding: 0 10px;
    border: none;
    border-radius: 0;
    cursor: pointer;
}

.shop .add-to-cart{
    width: 70%;
    background-color: #B13481;
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 10px 0;
}

.shop .extra-info{
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding-top: 20px;
}
.shop .extra-info h3{
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
}
.shop .extra-info p{
    font-size: 16px;
    font-weight: 400;
    color: #726C6C;
    margin-left: 15px;
}

.tab-content>.active{
    padding: 25px;
}
.tab-content>.active{
    font-size: 13px;
    font-weight: 400;
    color: #726C6C;
    margin-top: 15px;
}
.tab-content>.active ul{
    list-style: none;

}
.tab-content>.active ul li{
    margin-top: 10px;
}
.tab-content>.active ul li i{
    color: #FA8232;
    margin-right: 12px;
}




/*===========================================*/
.color-select {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

 .deal-left-item-title h3{
    font-size: 18px;
}

.color-item{
    max-height: 220px;
    overflow: scroll;
}

.deal-left-item {
    margin-bottom: 20px;
}

.color-border{
    display: flex;
    margin-bottom: 30px;
}

.color-border-1 {
    background: #ed1c24;
    height: 2px;
    width: 100px;
}

.color-border-2 {
    background: #e5e7eb;
    height: 2px;
    width: 100%;
}



.color-box{
    width: 14px;
    height: 14px;
    
    border-radius: 20px;
    margin-top: 4px;
}


.color-red{
   background: red; 
}

.color-black{
    background: #000;
}

.color-pink{
    background: pink;
}

.color-teal{
background: teal;
}

.color-blue{
    background: blue;
}

.color-green{
    background: green;
}
.color-biscuit{
    background: bisque;
}

.color-golden{
background: gold;
}

.color-purpel{
    background: purple;
}

.color-navyy-blue{
    background: darkblue;
}

.form-check-input{
    width: 15px;
    height: 15px;
}


.form-check-input:checked {
    background-color: #B13481!important;
    border-color: #B13481!important;
}

.form-check-input:focus {
    border-color: #b13481;
    outline: 0;
    box-shadow: none;
}

.ml-8{
    margin-left: 6px;
}

.mb-10{
    margin-bottom: 10px;
}

.deal-left-title{
    margin-bottom: 20px;
}

.deal-left-title h3{
    font-size: 25px;
    text-transform: uppercase;
    
}
.fIlter-border-1{
    width:80px;
    background: red;
    height: 2px;
}

.sort-by{
    display: flex;
    width: 250px;
    float: right;
    margin-bottom: 30px;
}

.sort-by label{
    width: 100px;
    font-size: 16px;
    padding-top: 6px;
}

/****************************************
            Blog Page
*****************************************/

.blog-data {
    list-style: none;
    display: inline-flex;
    gap: 15px;
}

.blog-data li i {
    color:#FA8232;
}
.blog .social{
    list-style: none;
    display: inline-flex;
    gap: 15px;
}
.blog p{
    font-size: 16px;
    font-weight: 400;
    color: #726C6C;
    margin-top: 15px;
}
.blog h3{
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
}
.blog .quote{
    background-color: #FFF3EB;
    padding: 15px;
    margin-top: 15px;
    position: relative;
}
.blog .quote p{
    font-size: 16px;
    font-weight: 400;
    color: #726C6C;
}
.blog .quote  i{
    color: #FA8232;
    font-size: 50px;
    margin-right: 10px;
}
.blog .quote:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid #FA8232;  
    height: 100%;
}

.blog-comments {
    padding: 10px 0;
  }
  
  .blog-comments .comments-count {
    font-weight: bold;
  }
  
  .blog-comments .comment {
    margin-top: 30px;
    position: relative;
  }
  
  .blog-comments .comment .comment-img {
    margin-right: 14px;
  }
  
  .blog-comments .comment .comment-img img {
    width: 60px;
  }
  
  .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
  }
  
  .blog-comments .comment h5 a {
    font-weight: bold;
    transition: 0.3s;
    text-decoration: none;
    color: #333;
  }
  

  
  .blog-comments .comment h5 .reply {
    padding-left: 10px;
  }
  
  .blog-comments .comment h5 .reply i {
    font-size: 20px;
  }
  
  .blog-comments .comment time {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .blog-comments .comment.comment-reply {
    padding-left: 40px;
  }
  
  /*--------------------------------------------------------------
  # Comment Form Section
  --------------------------------------------------------------*/
  .comment-form {
    padding-top: 10px;
  }
  

  .comment-form form h4 {
    font-weight: bold;
    font-size: 22px;
  }
  
  .comment-form form p {
    font-size: 14px;
  }
 .comment-form form label{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-top: 10px;
  }
  .comment-form form input,
  .comment-form form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e5e5;
    margin-top: 10px;
  }
  
  .comment-form form textarea {
    height: 100px;
 }
  
  .comment-form form .form-group {
    margin-bottom: 25px;
  }
  
  .comment-form form .btn-primary {
    background-color: #FA8232;
    padding: 10px 20px;
    border: 0;
    border-radius: 0;
  }
  

  .blog-sidebar {
   
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;  
    display: inline-block;
    padding-bottom: 5px;
}
.search-box,.categories ,.latest-blogs,.gallery,.tags{
    padding: 20px;
    margin-top: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
}
.search-box input {
    padding: 10px 15px;
}

.latest-blogs .blog-item {
    align-items: center;
}

.blog-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.blog-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.blog-date {
    font-size: 0.85rem;
    color: #888;
}

.gallery img {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 5px 10px;
    color: rgb(0, 0, 0);
    border:1px solid #ddd;
    font-size: 0.85rem;
}


/*--------------*/


.accordion-button .icon {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) .icon {
  transform: rotate(180deg);
}

.accordion-button{
    display: block;
}

.accordion-button span{
    float: right;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.accordion-item {
    margin-bottom: 15px;
    border-bottom: 2px solid gainsboro;
    border-radius: 0px;
    box-shadow: none;
}

.accordion-body {
    padding: 0px;
}

.accordion-button{
    padding: 0px;
    font-weight: bold;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.accordion-header {
    margin-bottom: 0;
    padding: 20px 0px;
}

.shop-more-btn{
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.shop__sidebar__accordion h3{
    font-size: 20px;
    font-weight: 600;
}

.size-picker-btn {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    border-radius: 0px;
    margin: 5px;
    border: 1px solid #e5e5e5;
    background-color: #F5F4F4;
    color: #000;
}
.size-picker-btn:focus {
    background-color: #B13481;
    color: white;
    border: 1px solid #e5e5e5;
}
.size-picker-btn:hover {
    background-color: #B13481;
    color: white;
    border: 1px solid #e5e5e5;
}

.size-picker-active {
    background-color: #B13481;
    color: white;
}

.select-size h4{
    font-size: 16px;
}

.select-size{
    margin-bottom: 30px;
}
/*------------price range--------*/
.slider-container {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: #ddd;
  margin: 30px 0;
}
.slider {
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
  height: 5px;
  background: transparent;
  pointer-events: none;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: #B13481;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 2;
}
.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: #B13481;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.range-track {
  position: absolute;
  height: 5px;
  background-color: #B13481;
  z-index: 1;
}

.accordion-item:last-child {
    border-bottom: 0px;
}

.page-item:first-child .page-link {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
}

.page-item:last-child .page-link {
    background-color: #B13481;
    color: #fff;
}

.shop-pro-cont a{
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-family: 'Poppins', sans-serif;
}


.p-myswiper {
  position: relative;
}

.p-myswiper .swiper-slide {
  min-height: 300px;
  transition-property: opacity, transform, -webkit-transform;
}

.p-myswiper-thumbs {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.p-myswiper-thumbs .swiper-slide {
  height: auto;
  cursor: pointer;
}

/*.swiper-slide:nth-of-type(3n + 1) {
  background-color: #4B7CB6;
}
.swiper-slide:nth-of-type(3n + 2) {
  background-color: #7C4BB6;
}
.swiper-slide:nth-of-type(3n + 3) {
  background-color: #7CB64B;
}*/

.p-myswiper-thumbs .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}
.p-myswiper-thumbs .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: var(--color-theme, #4B7CB6);
  background-clip: content-box;
}
.p-myswiper-thumbs .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #eee;
}

.swiper-thumbs-button-next {
  position: absolute;
  height: 30px;
  width: 30px;
      background-color: #b13481;
    color: #fff;
  right: 10px;
  top: 30%;
  border-radius: 100px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .7));
}

.swiper-thumbs-button-prev {
  position: absolute;
  height: 30px;
  width: 30px;
      background-color: #b13481;
    color: #fff;
  left: 10px;
  top: 30%;
  border-radius: 100px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .7));
}

.p-myswiper-thumbs .swiper-slide-thumb-active {
    border: 3px solid #5B717D;
    border-radius: 10px;
    overflow: hidden;
}

* {
  box-sizing: border-box;
}

.p-myswiper-thumbs__slide img{
    width: 100%;
}

.p-myswiper__slide{
        width: 100%!important;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px!important;
}


 .ss{
    box-shadow: 0x 0px 6px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 5px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.ss img{
    border-radius: 10px;
}

.ss-1 img{
    border-radius: 10px;
}


/*--------------prduct details------*/
.detail_product-title h2 {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    margin-bottom: 20px;
}

.detail_product-title p{
    color: #000;
    font-size: 20px;
}

.detail_product-title p del{
    font-size: 17px;
    margin-left: 6px;
}


.product-title{
    color: #B9BBBF;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
.detail_product-shear{
    text-align: right;
}

.detail_product-shear span a{
    text-decoration: none;
    display: inline-block;
    background: #EDF0F8;
    padding: 2px 8px;
    color: #3A4980;
    border-radius: 7px;
}

.detail-wishlist{
    background: #FFF0F0!important;
    color: #D46F77!important;
}

.p_detail_price_box{
    display: flex;
    gap: 40px;
}




.pd_review{
    background: #EDF0F8;
    padding: 5px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    border-radius: 20px;
    color: #3A4980;
    font-weight: bold;
}

.pd-rating{
    background: #FBF3EA;
    padding: 5px 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    border-radius: 20px;
    color: #D48D3B;
    font-weight: bold;
    margin-right: 10px;
}

.p_detail_rivew small{
    font-size: 13px;
    color: #B9BBBF;
     font-family: 'Poppins', sans-serif;
}

.p_detail_rivew small strong{
    color: green;
}

hr {
    border-top: 1px solid #bbbbbb;
}

.pd-form-group{
    gap: 10px;
}

.radio_custom {
    background: #F3F3F3;
    padding: 4px 10px;
    color: gray;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    display: inline-block;
}

.radio_custom-item{
    display: flex;
    gap: 8px;
}


.pd-form-check{
    background: #F3F3F3;
    padding: 3px 10px 5px 10px;
    border-radius: 3px;
    display: inline-block;
    color: #726C6C;
}

.pd-form-check[type="radio"]{
  width: 20px;
  height: 20px;

}

[type="radio"]:checked+label:after {
  background-color: red;
  border: 2px solid red!important;
 
  
}

/*-------------tap2deal product details-------------*/

.product-details{
    padding-left: 70px;
}

.product-details-img{
    padding: 0px 100px;
}
.custom-prev {
    left: -100px;
}

.custom-next{
    right: -100px;
}

.p-size-select{
    border-radius: 0px;
    height: 40px;
    border: 1px solid #e2e2e2;
}

.p-qty{
    margin: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}

.p-detals-size p{
    margin: 0px;
    font-weight: 500;
    margin-bottom: 10px;
}

.product-details-qty-size{
    margin-bottom: 30px;
}


.product-detail-notes ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.product-detail-notes ul li a {
    text-decoration: none;
    display: block;
    padding: 10px 0px;
    border-top: 1px solid #e2e2e2;
    color: #000;
    font-size: 14px;
}

.product-detail-notes ul li a span{
    float: right;
    color: gray;
}

.find-store{
    text-transform: uppercase;
    font-size: 16px!important;
    padding-top: 20px!important;
    margin-bottom: 15px!important;
}

.p-add-to-cart {
    border-radius: 0px;
    background: #000;
    color: #fff;
    width: 76%;
    margin-right: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.p-add-to-cart:hover{
    background: #ed1c24;
    color: #fff;
}

.p-add-to-cart:focus{
    background: #ed1c24;
    color: #fff;
}

.p-wishlist{
    border: 1px solid #000;
    border-radius: 0px;
        width: 40px;
}
.p-fa-share{
    border: 1px solid #000;
    border-radius: 0px;
    width: 40px;
    margin-left: 8px;
}

.p-wishlist:hover{
    border: 1px solid #ed1c24;
    background: #ed1c24;
    color: #fff;
}
.p-fa-share:hover{
    border: 1px solid #ed1c24;
    background: #ed1c24;
    color: #fff;
}

/*---------------------------*/

.pd-form-check[type="checkbox"]{
  width: 20px;
  height: 20px;

}

.color label {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
}

.color label input {
    position: absolute;
    visibility: hidden;
}
.color label:after {
    position: absolute;
    left: -3px;
    top: -3px;
    height: 36px;
    width: 36px;
    border: 1px solid #e5e5e5;
    content: "";
    border-radius: 50%;
}

.shop .product-color h3, .product-size h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    color: #B9BBBF;
}

.product-color h3, .details_product-size h3 {
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0;
    color: #B9BBBF;
}


.extra-info-box{
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 20px;
}

.extra-info-box-cont h3 {
    font-size: 16px;
    font-weight: 600;
}

.extra-info-box-item{
    display: flex;
    gap: 15px;
}

.extra-info-box-img i{
    font-size: 25px;
    color: #b13481;
}

.extra-info-box-item:first-child {
    border-bottom: 1px solid gainsboro;
    margin-bottom: 16px;
}

.detail-cart-qty {
    width: 100%;
    height: 40px;
    
}

.tab-content>.active {
    font-family: 'Poppins', sans-serif;
}

.coupons-img img{
    width: 70%;
}



/*==========================New E-Com==============*/

.header-top{
    padding: 10px 0px;
    background: #9dc8d1;
}

.home-header-sec{
    padding: 10px 0px;
    background: 9dc8d1;
}

.home-header-left{
    display: flex;
    gap: 50px;
}

.desk-logo a{
    display: inline-block;
}
.home-header-left-logo a img{
    width: 200px;
}

.lang_btn{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    border: 1px solid #45a3b7;
    padding: 6px 15px;
    margin-left: 30px;
    font-size: 14px;
}

.lang_btn{
    text-decoration: none;
    display: inline-block;
    color: #fff;
    padding: 6px 15px;
    margin-left: 30px;
    font-size: 14px;
    background: #5f8d97;
    border-radius: 4px
}
.lang_btn:hover{
    color: #fff;
}

.cart-tag{
    position: relative;
}
.cart-tag-count{
    background: #000;
    padding: 0px 0px;
    position: absolute;
    top: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: red;
    color: #fff;
    text-align: center;
    line-height: 24px;
    font-size: 13px;
}

.home-about-sec-1{
    margin-bottom: 70px;
}

.home-about-1-cont img{
    width: 200px;
    margin-bottom: 20px;
}

.home-about-1-cont p{
font-size: 16px;
}


.home-search{
    margin-top: 50px;
    margin-bottom: 30px;
}


/*
.home-header-left-cont{
    padding-top: 20px;
}

.home-header-left-cont ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
}

.home-header-left-cont ul li a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    padding: 5px 10px;
    font-size: 14px;
}


.lang-btn:last-child{
    border: 1px solid gray;
    border-radius: 4px;
}*/

.home-header-right ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    display: flex;
    float: right;
    gap: 40px;
        padding-top: 10px;

}

.home-header-right ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    display: inline-block;
}




.wide-ads{
    padding: 25px 0px;
}
.wide-ads a img{
    width: 100%;
}

/*.home-categories{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.home-categories-items{
    width: 12.5%;
    background: #edf2fa;
    border-right: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
}
*/


.home-categories-sec{
    margin-top: 50px;
    margin-bottom: 50px;
}

.home-categories-title h2{
    font-size: 22px;
    margin-bottom: 20px;
}

.home-categories-items a {
    display: block;
    text-decoration: none;
    color: #000;
    margin-bottom: 25px;
    padding: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
}



.home-categories-items a img{
    width: 70px;
    
}


.home-categories-items a h3{
    font-size: 16px;
}

.home-categories-items a p {
    margin: 0px;
    font-size: 13px;
    color: #707676;
}

/*==========*/
.home-quick-link-title h2{
    font-size: 22px;
    margin-bottom: 20px;
}

.home-quick-link-item{
    background: #e6fbff;
    padding: 20px;
}

.home-quick-link-item h3{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 15px;
}


.home-quick-link-item p a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    border-right: 1px solid gray;
    margin-right: 4px;
    padding-right: 10px;
}

.home-quick-link-sec{
    margin-bottom: 50px;
    margin-top: 50px;
}



/*------------affileate sec---------*/

.home-affilate-box{
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, .1);
    
}

.home-affilate-item-1 {
    margin: 0;
    padding: 32px 32px 36px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 25px;
}



.home-affilate-item-img img{
    width: 140px;
}

.home-affilate-item-text h3{
    font-size: 22px;
    font-weight: bold;
}

.home-affilate-item-text a{
    text-decoration: none;
    background: #ed1c24;
    color: #fff;
    padding: 7px 25px;
    display: inline-block;
    border-radius: 5px;
}

.home-affilate-item-text a:hover{
    background: #ed1c24;
    color: #fff;
}

.home-affilate-item-2{
    border-left: 1px solid #d4ded9;
    height: 100%;
    padding: 32px 32px 36px;
}

.home-affilate-item-2 h3{
    font-size: 22px;
    font-weight: bold;
    color: #ed1c24;
}

.home-affilate-item-2 a{
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 7px 25px;
    display: inline-block;
    border-radius: 5px;
}

.home-affilate-item-2 a:hover{
    background: #000;
    color: #fff;
}
.pr-0{
    padding-right: 0px;
}
.pl-0{
    padding-left: 0px;
}

