
* {
  margin: 0;
  padding: 0;
}

.row {
  --bs-gutter-x: 1rem;
}

body {
  font-family: 'Poppins', sans-serif!important;
  font-size: 14px;
  background-color: #F3F3F3;
}

input.form-control:focus {
  outline: none;
  box-shadow: none;
}

.btn.btn-brand {
    background-color: #FB641B;
    color: #fff!important;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.btn.btn-brand:active {
  background-color: #FB641B;
  border-color: transparent;
}

.btn.btn-brand-secondary {
  background-color: #418E56;
  color: #fff;
  border-radius: 0;
}

.btn.btn-brand-secondary:active {
  background-color: #418E56;
  border-color: transparent;
}

input.form-control::-webkit-outer-spin-button,
input.form-control::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}

input.form-control[type=number] {
  -moz-appearance:textfield;
}

/*header {
  position: sticky;
  top: -32px;
  z-index: 150;
}*/

/* minimal header */
.navbar{
    background: #007284;
}
header .minimal-header {
  background-color: #041A33;
  color: #FFFFFF;
  padding: 10px 0;
}

header .minimal-header .social {
  padding: 0 35px;
}

header .minimal-header .social,
header .minimal-header .query {
  margin-bottom: 0;
  font-size: 12px;
  display: inline-block;
}

header .minimal-header .social li {
  list-style: none;
  display: inline-block;
}

header .minimal-header .social li:not(:last-child) {
  margin-right: 10px;
}

header .minimal-header .social li a img {
  width: 16px;
  height: 16px;
}

header .minimal-header .query a {
  text-decoration: none;
  color: #FB641B;
}

/* top bar */
header .top-bar {
  background-color: #0E2F56;
  padding: 12px 0;
}

header .top-bar .burger-menu-container,
header .top-bar .mobile-search {
  display: none;
}

header .top-bar .burger-menu-container button,
header .top-bar .mobile-search button {
  appearance: none;
  border: 0;
  background-color: transparent;
  padding: 5px 10px;
}

header .top-bar .burger-menu-container button {
  padding-left: 0;
}

header .top-bar .mobile-search button {
  padding-right: 0;
}

header .top-bar img.logo {
  max-width: 180px;
}

header .top-bar .btn.dropdown-toggle {
  background-color: #FB641B;
  color: #fff;
}

header .top-bar .btn.dropdown-toggle,
header .top-bar input[type="text"] {
  border: 0;
  border-radius: 4px;
  font-size: 12px;
  padding: 8px 16px;
}

header .top-bar .nav-drawer-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 100%; /* 100% */
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

header .top-bar .nav-drawer-wrapper .nav-drawer {
  background-color: #041A33;
  width: 70%;
  height: 100%;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav {
  width: 100%;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav li {
  margin: 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #5B5C5E;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav li a {
  display: block;
  padding: 25px;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav.nav-tabs .nav-item {
  display: inline-block;
  width: auto;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav.nav-tabs .nav-item .nav-link {
  padding: 15px 20px;
}

header .top-bar .nav-drawer-wrapper .nav-drawer ul.nav.nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}

header .top-bar input[type="text"] {
  background-image: url("../public/img/icons/search.svg");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: calc(100% - 10px) center;
  padding-right: 35px;
}

header .top-bar .nav {
  display: inline-block;
}

header .top-bar .nav li {
  list-style: none;
  display: inline-block;
}

header .top-bar .nav li:not(:first-child) {
  margin-left: 20px;
}

header .top-bar .nav li a {
  text-decoration: none;
  color: #fff;
}

header .top-bar .nav li a.active {
  color: #FB641B;
}
header .top-bar .nav li a.active svg path {
  fill: #FB641B;
}

header .cart-menu {
  position: relative;
}

header .cart-menu .cart-item-list {
  width: 300px;
  position: absolute;
  right: 0;
  top: calc(100% + 20px);
  background: #fff;
  padding: 12px;
  box-shadow: 0 0 5px -2px;
  border-radius: 5px;
  text-align: left;
  display: none;
}

header .cart-menu .cart-item-list:after {
  content: '';
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-bottom-color: #FFFFFF;
  position: absolute;
  top: -23px;
  right: 12px;
}

header .cart-menu .cart-item-list .cart-item .cart-item-details {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

header .cart-menu .cart-item-list .cart-item .cart-item-details img {
  max-width: 80px;
  margin-right: 8px;
}

header .cart-menu .cart-item-list .cart-item .cart-item-details .name {
  font-weight: 600;
  text-align: left;
}

header .cart-menu .cart-item-list .cart-item p {
  text-align: center;
  margin-bottom: 5px;
}

header .cart-menu .cart-item-list .cart-item p a {
  color: #5B5C5E;
  text-decoration: none;
}

header .cart-menu .cart-item-list .cart-item p.view {
  width: 60%;
  margin: 12px auto 0;
  border: 1px dashed black;
  border-left: 0;
  border-right: 0;
}

/* main body */



/* homepage banners */
main .intro,
main .featured {
  margin-top: 15px;
  margin-bottom: 60px;
}

.section-heading {
  font-size: 24px;
  line-height: 36px;
  color: #232323;
     font-weight: 700;
    text-transform: uppercase;
}

.section-subheading {
  font-size: 20px;
  line-height: 30px;
  color: #4A4A4A;
}

main .banner-grid {
  /*height: 538px;*/
  /*display: grid;*/
  grid-template-columns: repeat(4, calc(25% - 7.5px));
  grid-template-rows: repeat(3, calc(33.33% - 6.67px));
  grid-gap: 10px;
  margin-bottom: 20px;
}

main .banner-grid .main-banner {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 3;
}

main .banner-grid .main-banner .item {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

main .banner-grid .owl-carousel.main-banner .owl-stage-outer,
main .banner-grid .owl-carousel.main-banner .owl-stage-outer .owl-stage,
main .banner-grid .owl-carousel.main-banner .owl-stage-outer .owl-item,
main .banner-grid .owl-carousel.main-banner .owl-stage-outer .owl-item div {
  height: 100%;
}

main .banner-grid .bottom-banner {
  grid-column-start: 1;
  grid-column-end: 5;
}

main .banner-grid > div {
  background-size: cover;
  background-position: center;
  cursor: pointer;
}



a.product-link {
  text-decoration: none;
}


.product-card {
  background-color: #fff;
  border-radius: 0px!important;
  box-shadow: none!important;
  position: relative;
  overflow: hidden;
}



.product-card .product-card-body {
    padding: 10px 10px 0px;
    min-height: 285px !important;
}

.p-img{
    height: 200px;
    width: 100%;
    overflow: hidden;
}


.product-card .product-card-body .product-image {
  width: 100%;
  height: 200px;
  display: block;
  border-radius: 4px;
}

.product-card-hover-content .image-peek {
    position: relative;
    background-position: center;
    background-size: cover;
    min-height: 138px;
    border-radius: 4px;
}

.product-card .product-card-body .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card .product-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #232323;
  margin: 12px 0;
}

.product-card .product-brand {
  text-transform: uppercase;
  color: #676868;
  margin: 0;
  font-size: 13px;
}

.product-card .product-card-footer {

  justify-content: space-between;
  padding: 0px 10px;
}

.action-wrapper{
    display: flex;
    gap: 7px;
}

 .dis-p{
    float: left;
}

.main-p{
    text-align: right;
}

.save-p{
    float:right;
    margin-top: 2px;
}

.spinbutton-wrapper .spinbutton {
   
    display: flex;
}

/*.product-card .price-with-offer {
  float: left;
  width: 100%;
}*/

.product-card .product-card-footer .price-without-offer p strike{
  color: red;
  font-size: 14px;
  line-height: 23px;
  margin-bottom: 0;
}


.product-card .price-with-offer p {
  color: #0E2F56;
  font-size: 15px;
  line-height: 23px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: right;
}

.product-card .product-card-footer .price-without-offer span,
.product-card .product-card-footer .price-with-offer span {
  color: #07832A;
  font-size: 12px;
  font-weight: 500;
}

.product-card .product-card-footer .price-without-offer span {
  font-weight: 400;
}

.product-card-hover-content {
  position: absolute;
  top: 100%;
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  padding: 10px;
  /*transition: 0.3s ease-in-out;*/
}

.product-card-hover-content .image-peek {
  position: relative;
  background-position: center;
  background-size: cover;
  min-height: 138px;
  border-radius: 5px;
}

.product-card-hover-content .image-peek .fav-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("/public/img/icons/fav-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 10px;
  top: 10px;
}

.product-card-hover-content .count-and-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

.product-card:hover .product-card-hover-content {
  top: 0;
}


.featured-card {
  background-color: #fff;
  border: 1px solid #D1D1D1;
  padding: 10px;
  text-align: center;
  margin-bottom: 15px;
  cursor: pointer;
   /*// quick fix*/
  min-height: 180px;
}

.featured-card img{
    height: 114px;
    width: 114px;
    margin: 0px auto;
}


.featured-card img.category-thumb {
  width: 100%;
  display: block;
}

.featured-card p.category-title {
  color: #282828FC;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
}

.featured-card:hover p.category-title {
  color: #FB641B;
}

.wide-banner {
  margin-bottom: 80px;
}

.section-heading-with-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.section-heading-with-btn h3 {
  text-transform: uppercase;
}

.carousel-container {
  background-color: #fff;
  border: 1px solid #C7C7C7;
  padding: 40px 15px;
  position: relative;
}

.carousel-container .owl-carousel .owl-nav button {
  position: absolute;
  width: 20px;
  height: 30px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../public/img/icons/arrow-left.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.carousel-container .owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0;
  background-image: url("../public/img/icons/arrow-right.svg")!important;
}

/* product details styles */
.category-bar-container {
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 15px;
}

.category-bar {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-bar .category {
  display: inline-block;
  margin: 0 15px;
}

.category-bar .category .category-title {
  margin: 5px 0 0;
  font-weight: 500;
}

.product-details-card {
  background-color: #FFFFFF;
  margin-bottom: 15px;
  margin-top: 20px;
}

.j-padding{
    padding: 10px;
}
.product-details-card .breadcrumb-and-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-details-card .breadcrumb {
  font-size: 12px;
  margin: 0;
}

.product-details-card .breadcrumb .breadcrumb-item {
  color: #6A6A6A;
}

.product-details-card .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
}

.product-details-card .breadcrumb .breadcrumb-item.active {
  color: #2D2B2B;
}

.product-details-card .breadcrumb-and-social .social {
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-details-card .breadcrumb-and-social .social li {
  display: inline-block;
  margin-left: 4px;
}

.product-details-card .breadcrumb-and-social .social li a img {
  filter: invert(1);
  max-width: 20px;
  max-height: 20px;
}

.product-details-card .product-details .product-images {
  display: flex;
  align-items: center;
}

.product-details-card .product-details .product-images .thumbnails {
  display: flex;
  flex-direction: column;
}

.product-details-card .product-details .product-images .thumbnails img {
  width: 60px;
  height: 60px;
  border: 1px solid #7C7C7C;
  border-radius: 4px;
  margin: 0 10px 10px 0;
  cursor: pointer;
}

.product-details-card .product-details .product-images .preview {
  width: calc(100% - 70px);
}

.product-details-card .product-details .product-images .preview img {
  display: block;
  width: 100%;
}

.product-details-card .product-details .product-description h2 {
     font-size: 20px;
    line-height: 27px;
    font-weight: 600;
    color: #232323;
    margin-top: 11px;
}

.product-details-card .product-details .product-description p.product-by {
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    color: #676868;
    margin-bottom: 3px;
}

.product-details-card .product-details .product-description p.product-by a {
  color: #0E2F56;
}

.product-details-card .product-details .product-description p.product-by .rating {
  margin-left: 15px;
}

.product-details-card .product-details .product-description p.product-by .rating img {
  vertical-align: baseline;
  width: 16px;
  height: 16px;
}

.product-details-card .product-details .product-description .features h5 {
  margin-top: 9px;
    font-size: 17px;
    color: #676868;
}

.product-details-card .product-details .product-description .features table {
  margin-bottom: 15px;
}

.product-details-card .product-details .product-description .features table tr td {
  padding: 5px 10px;
  color: #676868;
  font-size: 12px;
}

.product-details-card .product-details .product-description .features table tr td:first-child {
  padding-left: 0;
  font-weight: 500;
}

.product-details-card .product-details .product-description .features p button {
  border-radius: 0;
  background-color: #F5F5F5;
  font-size: 12px;
  min-width: 130px;
}

.product-details-card .product-details .product-description .features p button.more {
  color: #FB641B;
    border-color: #FB641B;
    margin-right: 0px;
    background: #fff;
}

.product-details-card .product-details .product-description .features p button.wish {
  color: #FB641B;
  border-color: #FB641B;
}

.product-details-card .product-details .product-description .features .coupon-banner {
  background-color: #FFF4C0;
  border: 1px solid #FB641B;
  color: #FB8339;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-details-card .product-details .product-description .features .coupon-banner div {
  text-align: center;
  border-left: 1px solid #FB641B;
  padding: 5px 15px;
  color: #444444;
  font-size: 12px;
}

.product-details-card .product-details .product-description .features .coupon-banner div span span {
  font-size: 16px;
  font-weight: 600;
}

.product-details-card .product-details .product-description .features p a {
  color: #0E2F56;
  font-size: 12px;
  text-decoration: none;
}

.j-stiky{
  margin-bottom: 15px;
  position: sticky;
  /*top: 68px;*/
  top: 1px;
}



.pricing-card .pricing-info .price {
  display: flex;
  align-items: center;
}

.pricing-card .pricing-info .price h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  color: #0E2F56;
  margin: 0 10px 0 0;
}

.pricing-card .pricing-info .price span {
  font-size: 14px;
  color: #6C6C6C;
}

.pricing-card .pricing-info .discount-badge {
  color: #489437;
  /*padding: 5px 10px;
  border: 1px solid #489437;
  border-radius: 5px;*/
}



.pricing-card .quantity-info p {
  margin-bottom: 5px;
}

.spinbutton-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.spinbutton-wrapper .spinbutton {
  border: 1px solid #A8A8A8;
  padding: 1px;
  margin-right: 1px;
}

.spinbutton-wrapper .spinbutton button {
  appearance: none;
  border: 0;
  background-color: transparent;
  padding: 0 5px;
}

.spinbutton-wrapper .spinbutton .val {
  border-left: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
  padding: 0 15px;
  text-align: center;
}

.spinbutton-wrapper .spinbutton input.val {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-left: 1px solid #A8A8A8;
  border-right: 1px solid #A8A8A8;
  padding: 0 5px;
  display: inline;
  width: 30px;
  text-align: center;
}

.spinbutton-wrapper .spinbutton input.val:focus {
  outline: none;
}

.pricing-card .action-wrapper {
  padding: 15px 0px;
  border-bottom: 1px solid #E1E1E1;
}

.pricing-card .action-wrapper.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-card .action-wrapper.flex button {
  appearance: none;
  background-color: #F5F5F5;
  border: 1px solid #6C6C6C;
  color: #0E2F56;
  padding: 8px 12px;
  font-size: 12px;
}

.need-help {
  padding: 15px;
  background-color: #F0EDED;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.need-help h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: #0E2F56;
  text-align: center;
}

.need-help p {
  color: #66696D;
  font-size: 14px;
  display: flex;
  margin-bottom: 10px;
  align-items: flex-start;
}

.need-help p img {
  vertical-align: middle;
  margin-right: 5px;
}

.product-details-wrapper .product-details-card .row.tab-row {
  margin-left: -15px;
  margin-right: -15px;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tabs {
  border-bottom: 1px solid #CDCDCD;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tabs .nav-item button {
  border-radius: 0;
  border: 1px solid #CDCDCD;
  background-color: #E9E9E9;
  color: #2B2B2B;
  padding: 15px 25px;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tabs .nav-item button.active {
  background-color: #FFFFFF;
  color: #006CEB
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tabs .nav-item + .nav-item button {
  border-left: 0;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tab-contents {
  padding: 0;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tab-contents .tab-pane {
  padding: 25px;
  border-bottom: 1px solid #CDCDCD;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tab-contents .tab-pane h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
  color: #000000;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tab-contents .tab-pane p {
  font-size: 14px;
  line-height: 22px;
  color: #5A5959;
}

.product-details-wrapper .product-details-card .row.tab-row #product-spec-tab-contents .tab-pane p b {
  color: #000000;
}

.product-details-wrapper .product-details-card .q-and-a {
  padding: 10px;
  border-bottom: 1px solid #CDCDCD;
}

.product-details-wrapper .product-details-card .q-and-a h4 {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 30px;
}

.product-details-wrapper .product-details-card .q-and-a h5 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #000000;
}

.product-details-wrapper .product-details-card .q-and-a p {
  margin-bottom: 20px;
}

.product-details-wrapper .product-details-card .rating-and-review {
  padding: 25px;
}

.product-details-wrapper .product-details-card .rating-and-review h5 {
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 30px;
}

.product-details-wrapper .product-details-card .rating-and-review .rating-stars img {
  width: 40px;
}

.product-details-wrapper .product-details-card .rating-and-review .rating-stars img:not(:last-child) {
  margin-right: 5px;
}

.product-details-wrapper .product-details-card .rating-and-review .rating-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.product-details-wrapper .product-details-card .rating-and-review .rating-bar-wrapper .rating-bar {
  background-color: #E5E5E5;
  height: 20px;
  width: calc(100% - 100px);
  border-radius: 3px;
  overflow: hidden;
}

.product-details-wrapper .product-details-card .rating-and-review .rating-bar-wrapper .rating-bar .rating {
  background-color: #0E2F56;
  height: 20px;
  border-radius: 3px;
}


.product-details-wrapper .product-details-card .reviews {
  padding: 25px;
  border-bottom: 1px solid #CDCDCD;
  margin-bottom: 25px;
}

.product-details-wrapper .product-details-card .reviews h5 {
  margin-bottom: 25px;
}

.product-details-wrapper .product-details-card .reviews .review-card {
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.product-details-wrapper .product-details-card .reviews .review-card:not(:last-child) {
  border-bottom: 1px solid #E1E1E1;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info {
  display: flex;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user {
  display: flex;
  margin-right: 15px;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .date {
  color: #6C6C6C;
  font-size: 12px;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user img.avatar {
  margin-right: 5px;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user .name-and-rating p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: #282828;
  margin: 0;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user-state-review span {
  display: block;
  color: #6C6C6C;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user-state-review span.status-badge {
  background-color: #0E2F56;
  color: #FFFFFF;
  font-size: 10px;
  padding: 5px 15px;
  margin-bottom: 5px;
}

.product-details-wrapper .product-details-card .reviews .review-card .user-review p {
  font-weight: 500;
  margin: 0;
  color: #2B2B2B;
}


.product-details-wrapper .product-details-card .recently-viewed,
.product-details-wrapper .product-details-card .related-products {
  padding: 0px 15px;
}

.product-details-wrapper .product-details-card .recently-viewed h5,
.product-details-wrapper .product-details-card .related-products h5 {
  margin-bottom: 25px;
}


.payment-wrapper #paymentAccordion .accordion-item {
  box-shadow: 0 4px 10px 0 #0000001A;
  margin-bottom: 20px;
  border-radius: 0;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button {
  border-radius: 0;
  color: #FFFFFF;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button:after,
.payment-wrapper #paymentAccordion .accordion-item .accordion-button:not(.collapsed)::after{
  background-image: none;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button.done {
  background-color: #0E2F56;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: #000;
      padding: 15px;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button.collapsed {
  background-color: #FFFFFF;
  color: #282828;
}

.payment-wrapper #paymentAccordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number,
.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login {
  width: 35%;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .separator span:after {
  content: 'Or';
  background-color: #fff;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #6C6C6C;
  position: relative;
  z-index: 5;
  left: calc(50% - 19px);
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .separator span:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #ADAAAA;
  z-index: 1;
  left: 50%;
  top: 0;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .input-group {
  margin-bottom: 15px;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .input-group .input-group-text,
.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .input-group .form-control {
  padding: 8px 16px;
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 500;
  border-color: #6C6C6C;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .input-group input.form-control[type=number] {
  -moz-appearance:textfield;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .input-group-text {
  background-color: transparent;
  border-radius: 2px 0 0 2px;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number .form-control {
  border-radius: 0 2px 2px 0;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login {
  margin: 30px 50px 0 0;
  width: calc(35% - 50px);
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login button {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login p {
  font-size: 12px;
  font-weight: 500;
  color: #6C6C6C;
  margin: 15px 0 30px;
  text-align: center;
}

.payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login p a {
  color: #0E2F56;
  text-decoration: none;
}

.payment-wrapper #paymentAccordion .address-form {
  margin-top: 30px;
}

.payment-wrapper #paymentAccordion .address-form .form-control {
  padding: 10px 16px;
  color: #6C6C6C;
  font-size: 14px;
  border-color: #ADAAAA;
  border-radius: 0;
  margin-bottom: 15px;
}

.payment-wrapper #paymentAccordion .address-form p.tip {
  color: #6C6C6C;
  font-size: 12px;
  margin-top: 5px;
}

.payment-wrapper #paymentAccordion .address-form .btn.btn-brand {
  padding: 12px;
}

.payment-wrapper #paymentAccordion .instruction {
  margin: 30px;
  border: 1px solid #D9D9D9;
  box-shadow: 0 4px 10px 0 #0000001A;
  padding: 50px 15px;
}

.payment-wrapper #paymentAccordion .instruction h6,
.payment-wrapper #paymentAccordion .instruction p {
  margin-bottom: 30px;
}

.payment-wrapper #paymentAccordion .instruction h6 {
  font-weight: 600;
}

.payment-wrapper #paymentAccordion .instruction p {
  color: #6C6C6C;
}

.payment-wrapper .nav.nav-tabs {
  min-width: 220px;
}

.payment-wrapper .nav.nav-tabs .nav-link {
  background-color: #F5F5F5;
  text-align: left;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.payment-wrapper .nav.nav-tabs .nav-link.active {
  background-color: #FFFFFF;
}

/*.payment-wrapper .nav.nav-tabs .nav-link.active:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #FB641B;
}*/

.payment-wrapper .nav.nav-tabs .nav-link:not(:last-child) span {
  border-bottom: 1px solid #B8B8B8;
}

.payment-wrapper .nav.nav-tabs .nav-link:not(.active) span {
  border-right: 1px solid #B8B8B8;
}

.payment-wrapper .nav.nav-tabs .nav-link span {
  padding: 18px 22px;
  display: block;
  color: #5B5C5E;
}

.payment-wrapper .nav.nav-tabs .nav-link span img {
  margin-right: 15px;
  display: inline-block;
  max-width: 18px;
  max-height: 18px;
}

.payment-wrapper .tab-content {
  width: calc(100% - 220px);
  padding: 20px;
}

.payment-wrapper .tab-content .card-info {
  max-width: 550px;
}

.payment-wrapper .tab-content .pg-info {
  width: 100%;
  display: block;
}

.payment-wrapper .tab-content .form-control,
.payment-wrapper .tab-content .form-select {
  padding: 12px 16px;
  color: #6C6C6C;
  font-size: 14px;
  border-color: #ADAAAA;
  border-radius: 0;
  margin-bottom: 15px;
}

.payment-wrapper .tab-content .form-select:focus {
  box-shadow: none;
}

.payment-wrapper .tab-content .btn.btn-brand {
  padding: 12px;
}

.payment-summary {
  box-shadow: 0 4px 10px 0 #0000001A;
  background-color: #FFFFFF;
  
  margin-bottom: 20px;
}

.payment-summary .heading {
  background-color: #0E2F56;
  color: #FFFFFF;
  padding: 15px;
}

.payment-summary .heading h5 {
  font-size: 18px;
  margin: 0;
}

.payment-summary .payment-breakdown {
  border-bottom: 1px solid #D3D3D3;
}

.payment-summary .payment-breakdown .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  color: #2B2B2B;
}

.payment-summary .payment-breakdown .item .amount.positive {
  color: #07832A;
}

.payment-summary .payment-breakdown .item.total {
  font-size: 18px;
  font-weight: 500;
  padding: 10px 15px;
}

.payment-summary .payment-breakdown .item.total .amount {
  color: #0E2F56;
}

.payment-summary .footnote {
  padding: 20px 15px;
  color: #A59F9F;
  font-size: 10px;
}

.payment-summary .footnote p {
  margin: 0;
}

.items-in-cart .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  background-color: #F4F4F4;
  padding: 12px 20px;
}

.items-in-cart .header .quantity {
  width: 200px;
}

.items-in-cart .cart-item {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.items-in-cart .cart-item .item-detail {
  display: flex;
}

.items-in-cart .cart-item .item-detail .item-image {
  margin-right: 15px;
}

.items-in-cart .cart-item .item-detail .item-info h5 {
  color: #2B2B2B;
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}

.items-in-cart .cart-item .item-detail .item-info p {
  margin-bottom: 5px;
}

.items-in-cart .cart-item .item-detail .item-info p span {
  color: #636363;
}

.items-in-cart .cart-item .item-detail .item-info .item-price {
  display: flex;
}

.items-in-cart .cart-item .item-detail .item-info .item-price p {
  font-size: 20px;
  color: #2B2B2B;
  margin-bottom: 0;
}

.items-in-cart .cart-item .item-detail .item-info .item-price span {
  font-size: 12px;
  color: #07832A;
}

.items-in-cart .cart-item .item-detail .item-info .item-price .regular-price {
  margin-right: 15px;
}

.items-in-cart .cart-item .item-detail .item-info .item-price .regular-price p {
  text-decoration: line-through;
}

.items-in-cart .cart-item .item-detail .item-info .item-price .discounted-price p {
  color: #0E2F56;
  font-weight: 600;
}

.items-in-cart .cart-item .item-quantity {
  width: 200px;
}

.items-in-cart .cart-item .item-quantity .action-buttons .btn {
  text-decoration: none;
  color: #2B2B2B;
}

.items-in-cart .cart-action {
  padding: 20px;
  border-top: 1px solid #D3D3D3;
  text-align: right;
}

.items-in-cart .cart-action .btn {
  padding: 12px;
  min-width: 200px;
}

/* cart page */
.cart-page {
  margin-top: 15px;
}

.cart-page .cart-header {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px 0 #0000001A;
}

.cart-page .cart-header p {
  margin: 0;
}

.cart-view .items-in-cart {
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.cart-view .item-quantity .spinbutton-wrapper {
  margin-left: 15px;
  margin-bottom: 5px;
}

.empty-cart-view {
  background-color: #FFFFFF;
  border: 1px solid #CDCDCD;
  box-shadow: 0 0 15px 0 #00000026;
  padding: 40px;
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
  border-radius: 8px;
}

.empty-cart-view img.illustration {
  display: block;
  margin: 20px auto;
}

.empty-cart-view h3 {
  color: #2B2B2B;
}

.empty-cart-view p {
  color: #7C7878;
}

.empty-cart-view p .btn {
  padding: 12px;
  min-width: 240px;
}

.empty-cart-view p .btn.shop {
  background-color: #0E2F56;
}

.cart-page .help-text {
  margin: 20px 0 40px;
  text-align: center;
}

.cart-page .help-text p {
  color: #645F5F;
}

.cart-page .help-text p a {
  color: #0E2F56;
  text-decoration: none;
}

.cart-page-footer {
  background-color: #FFFFFF;
  padding: 30px 0;
}

.cart-page-footer p {
  margin: 0;
  color: #645F5F;
}

.cart-page-footer p a {
  color: #0E2F56;
}

/* shop page */

main.shop-page {
  background-color: #FFFFFF;
}

.breadcrumb-wrapper nav {
  border: 1px solid #E4E4E4;
  border-left: 0;
  border-right: 0;
  margin-top: 20px;
  padding: 15px 0;
}

.breadcrumb-wrapper.no-border nav {
  border: 0;
}

.breadcrumb-wrapper nav ol {
  margin: 0;
}

.breadcrumb-wrapper nav li {
  color: #666666;
}

.breadcrumb-wrapper nav li a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.left-bordered-content {
  border-left: 1px solid #CBCBCB;
}

.notice {
  background-color: #FFFFCC;
  text-align: center;
  padding: 5px;
  margin: 5px 0 15px;
}

.notice p {
  margin: 0;
}

.notice p span {
  font-weight: 500;
  text-decoration: underline;
}

.searched-item p {
  color: #666666;
  font-size: 22px;
}

.searched-item p span {
  font-size: 14px;
}

.minimal-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 10px;
  margin-top: 10px;
}

.minimal-filter label[for="search-within-results"] {
  margin-right: 15px;
}

.minimal-filter input[type="text"] {
  border: 1px solid #F54702;
  border-radius: 4px;
  color: #666666;
  padding: 7px 20px 7px 15px;
  margin-top: 6px;
  font-size: 12px;
  min-width: 210px;
  background-image: url("../public/img/icons/magnifier.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 5px) center;
}

.minimal-filter input[type="text"]:focus {
  outline: none;
}

.minimal-filter .form-check-wrapper {
  box-shadow: 0 1px 5px 0 #00000040;
  padding: 6px 15px;
  border-radius: 4px;
  margin-right: 15px;
}

.minimal-filter .form-check-wrapper .form-check {
  margin: 0;
  font-size: 12px;
  min-height: auto;
  color: #F54702;
}

.minimal-filter .btn-group .btn {
  background-color: #F8F8F8;
  color: #666666;
  font-size: 12px;
  border-color: #E1E1E1;
  padding-top: 5px;
  padding-bottom: 5px;
}

.minimal-filter .btn-group .btn + ul li {
  font-size: 12px;
}

/*.pagination {
  box-shadow: -2px 1px 11px -3px #00000040;
  border-radius: 6px;
  margin: 30px 0 40px;
}
*/
.pagination .page-item .page-link {
  border-color: #F2F2F2;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
}

.pagination .page-item .page-link:focus {
  box-shadow: none;
}

.pagination .page-item.active .page-link {
  background-color: #FB641B;
  color: #FFFFFF;
}

.pagination .page-item:last-child .page-link {
  color: #FB641B;
}

.shop-footer {
  margin-bottom: 30px;
}

.shop-footer h5 {
  color: #414141;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #CBCBCB;
  padding-bottom: 10px;
  padding-top: 30px;
}

.shop-footer p {
  color: #414141;
  font-size: 14px;
}

.shop-filter-container {
  padding-right: 0;
}

.shop-filter {
  background-color: #FBFBFB;
  padding: 30px 15px;
}

.shop-filter .filter-header {
  color: #666666;
  font-size: 14px;
  margin: 15px 0;
}

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

.shop-filter ul li {
  font-size: 14px;
  line-height: 24px;
}

.shop-filter ul li a {
  color: #666666;
  text-decoration: none;
}

.shop-filter ul li a img {
  margin-right: 5px;
}

.shop-filter ul li.active a {
  color: #F54702;
}

.shop-filter .separator {
  height: 0;
  border-bottom: 1px dashed #CBCBCB;
  margin: 20px 0;
}

.shop-filter .filter-header {
  margin: 25px 0 15px;
}

.shop-filter .filter-header:first-child {
  margin-top: 10px;
}

.shop-filter .filter-header .light {
  color: #B5B5B5;
}

.shop-filter .filter-header .clear-button {
  float: right;
  color: #539BD2;
  font-weight: 400;
  appearance: none;
  border: 0;
  background-color: transparent;
}

.shop-filter label,
.shop-filter label input[type="text"]{
  display: block;
  width: 100%;
}

.shop-filter label input[type="text"] {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #CBCBCB;
  padding: 8px 35px 8px 15px;
  margin-bottom: 20px;
  background-image: url("../public/img/icons/magnifier.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: calc(100% - 10px) center;
}

.shop-filter label input[type="text"]:focus {
  outline: none;
}

.shop-filter button.more-filter-item {
  appearance: none;
  border: 0;
  background-color: transparent;
  color: #539BD2;
  padding: 8px 8px 8px 0;
}

.shop-filter .checkbox-wrapper {
  max-height: 130px;
  overflow-x: auto;
  padding-left: 4px;
}

/* range slider styles */
[slider] {
  position: relative;
  height: 14px;
  border-radius: 10px;
  text-align: left;
  margin: 30px 0 70px 0;
}

[slider] > div {
  position: absolute;
  left: 13px;
  right: 15px;
  height: 14px;
}

[slider] > div > [inverse-left] {
  position: absolute;
  left: 0;
  height: 10px;
  border-radius: 10px;
  background-color: #CCC;
  margin: 0 7px;
}

[slider] > div > [inverse-right] {
  position: absolute;
  right: 0;
  height: 10px;
  border-radius: 10px;
  background-color: #CCC;
  margin: 0 7px;
}

[slider] > div > [range] {
  position: absolute;
  left: 0;
  height: 10px;
  border-radius: 14px;
  background-color: #F54702;
}

[slider] > div > [thumb] {
  position: absolute;
  top: -7px;
  z-index: 2;
  height: 22px;
  width: 32px;
  text-align: left;
  margin-left: -11px;
  cursor: pointer;
  /*box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);*/
  border: 1px solid #DBDBDB;
  background-color: #FFF;
  border-radius: 8px;
  outline: none;
  background-image: url("../public/img/icons/dragger.svg");
  background-position: center;
}

[slider] > input[type=range] {
  position: absolute;
  pointer-events: none;
  -webkit-appearance: none;
  z-index: 3;
  height: 14px;
  top: -2px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}

div[slider] > input[type=range]::-ms-track {
  -webkit-appearance: none;
  background: transparent;
  color: transparent;
}

div[slider] > input[type=range]::-moz-range-track {
  -moz-appearance: none;
  background: transparent;
  color: transparent;
}

div[slider] > input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
  border: transparent;
}

div[slider] > input[type=range]:focus {
  outline: none;
}

div[slider] > input[type=range]::-ms-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[slider] > input[type=range]::-moz-range-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
}

div[slider] > input[type=range]::-webkit-slider-thumb {
  pointer-events: all;
  width: 28px;
  height: 28px;
  border-radius: 0px;
  border: 0 none;
  background: red;
  -webkit-appearance: none;
}

div[slider] > input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0 none;
}

div[slider] > input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0 none;
}

div[slider] > input[type=range]::-ms-tooltip {
  display: none;
}

[slider] > div > [sign] {
  /*opacity: 0;*/
  position: absolute;
  color: #666666;
  /*margin-left: -11px;*/
  top: 25px;
  z-index:3;
  /*background-color: #1ABC9C;*/
  /*color: #fff;*/
  /*width: 28px;*/
  /*height: 28px;*/
  /*border-radius: 28px;*/
  /*-webkit-border-radius: 28px;*/
  padding: 0 10px;
  min-width: 50px;
  border: 1px solid #D9D9D9;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}

/*[slider] > div > [sign]:after {*/
/*  position: absolute;*/
/*  content: '';*/
/*  left: 0;*/
/*  border-radius: 16px;*/
/*  top: 19px;*/
/*  border-left: 14px solid transparent;*/
/*  border-right: 14px solid transparent;*/
/*  border-top-width: 16px;*/
/*  border-top-style: solid;*/
/*  border-top-color: #1ABC9C;*/
/*}*/

[slider] > div > span.to {
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
}

[slider] > div > [sign] > span {
  font-size: 12px;
  font-weight: 700;
  line-height: 28px;
}

[slider]:hover > div > [sign] {
  opacity: 1;
}

.profile-page .profile-content {
  border: 1px solid #DCDCDC;
  margin: 0 0 40px;
  padding: 20px;
}

.profile-page .profile-content > div {
  background-color: #FFFFFF;
}

.profile-page .profile-content .nav {
  width: 220px;
}

.profile-page .profile-content .nav .nav-link {
  background-color: #EBEBEB;
  color: #323232;
  text-align: left;
  border-radius: 0;
  padding: 12px 25px;
}

.profile-page .profile-content .nav .nav-link img {
  max-width: 15px;
  max-height: 15px;
  vertical-align: middle;
  margin-right: 8px;
}

.profile-page .profile-content .nav .nav-link.active {
  background-color: #FFFFFF;
}

.profile-page .profile-content .tab-content {
  padding: 20px;
}

.profile-page .profile-content .tab-content {
  width: calc(100% - 220px);
}

.profile-page .profile-content .tab-content table {
  width: 100%;
}

.profile-page .profile-content .tab-content table tr td {
  padding: 5px 15px;
}

.profile-page .profile-content .tab-content table tr td:first-child {
  width: 30%;
}


footer {
    background-color: #007284;
  padding-top: 40px;
}



footer .footer-copyright {
  padding: 20px 0;
}

footer .footer-copyright p {
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

footer .footer-copyright p span {
  color: #fff;
}

footer .footer-bottom {
  padding: 30px 0;
}

footer .footer-bottom h6 {
  color: #fff;
  margin-bottom: 25px;
}
footer .footer-bottom p {
  color: #fff;
  margin: 0;
}

/*=====================dreek footer===============*/

.grid-container{
    border-bottom: 1px solid #fff;
    width: 100%;
    overflow: hidden;
    padding-bottom: 25px;
}
.footer-item{
    width: 25%;
float: left;
}
 
    
    
.footer-item h3{
    font-size: 16px;
    color: #fbbd2e;
     text-transform: uppercase;
}

.footer-item ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.footer-item ul li a{
    color: #fff;
    display: inline-block;
    padding: 5px 0px;
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;

}

.footer-item ul li a:hover{
    color: #fff;

}

.footer-item p{
    color: #fff;
    border-top: 1px solid #fff;
    display: inline-block;
    margin-top: 5px;
    padding-top: 5px;
    text-transform: uppercase;
    font-size: 13px;

}
.drekk-footer-bottom{
    margin-bottom:2px;
}
.drekk-footer-bottom a {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}
.drekk-footer-bottom a:hover {
    color:#ff3d71;
}

.m-0 a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
.m-0 a:hover{
    color: #fff;
}

.m-0 span a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
.m-0 span a:hover{
    color: #fff;
}

.j-social li a {
    color: #fff;
    font-size: 15px!important;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    font-weight: bold;
    border-bottom-style: solid;
    text-align: center;
    padding: 3px 4px !important;
}
/*==================End============*/



.authModal .modal-content {
  border-radius: 0;
}

.authModal .modal-content .modal-body {
  padding: 0;
}

.authModal .modal-content .auth-content-wrapper {
  display: flex;
}

.authModal .modal-content .auth-content-wrapper .intro {
  background-color: #0E2F56;
  background-image: url("/public/img/artwork-city.svg");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.authModal .modal-content .auth-content-wrapper .intro ul {
  padding: 0;
  margin: 60px 0 120px;
  list-style: none;
}

.authModal .modal-content .auth-content-wrapper .intro ul li {
  color: #FFFFFF;
  background-color: #3B5998;
  padding: 12px 60px;
  border-radius: 40px;
  margin: 0px auto;
  margin-bottom: 15px;
  width: 100%;
  max-width: 390px;
}

.authModal .modal-content .auth-content-wrapper .auth-form {
  width: 50%;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-header {
  border-bottom: 1px solid #CECECE;
  display: flex;
  justify-content: space-between;
  padding: 15px 15px 15px 50px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-header span {
  font-size: 18px;
  font-weight: 500;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content {
  padding: 15px 77px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .vector {
  display: block;
    margin: 20px auto;
    width: 150px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .input-group {
  margin-bottom: 18px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .input-group-text {
  background-color: transparent;
  border-radius: 2px 0 0 2px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .form-control {
  border-radius: 0 2px 2px 0;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .form-control::placeholder {
  color: #A1A1A1;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .input-group-text,
.authModal .modal-content .auth-content-wrapper .auth-form .form-content .form-control {
  padding: 12px 16px;
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 500;
  border-color: #6C6C6C;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .separator {
  color: #595757;
  font-size: 12px;
  font-weight: 500;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .d-grid {
  gap: 15px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .btn {
  border-radius: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .btn-google {
  color: #6C6C6C;
  border: 1px solid #4D4848;
      width: 100%!important;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .btn-facebook {
  background-color: #3B5998;
  color: #FFFFFF;
      width: 100%!important;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .btn-email {
  border-color: #EB7F11;
      width: 100%!important;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content .btn img {
  margin-right: 8px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content p {
  font-size: 12px;
  font-weight: 500;
  color: #6C6C6C;
  margin: 15px 0 30px;
}

.authModal .modal-content .auth-content-wrapper .auth-form .form-content p a {
  color: #0E2F56;
  text-decoration: none;
}

.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control {
  padding-left: 50px;
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 20px 20px;
}

.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control.email {
  background-image: url("/public/img/icons/input/email.svg");
}

.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control.password {
  background-image: url("/public/img/icons/input/password.svg");
}
.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control.full-name {
  background-image: url("/public/img/icons/input/full-name.svg");
}
.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control.phone {
  background-image: url("/public/img/icons/input/phone.svg");
}
.authModal .modal-content .auth-content-wrapper .auth-form.sign-up .input-group .form-control.company {
  background-image: url("/public/img/icons/input/company.svg");
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp {
  width: 100%;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content {
  padding-bottom: 60px;
  color: #282828;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content h5 {
  font-size: 20px;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content p {
  font-size: 16px;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content p span {
  color: #FB641B;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.authModal .modal-content .auth-content-wrapper .auth-form.verify-otp .form-content .label a {
  color: #FB641B;
  text-decoration: none;
  font-size: 12px;
  margin: 10px 0 5px;
}

#itemRemoveModal .modal-content {
  border-radius: 0;
}

#itemRemoveModal .modal-content .modal-body {
  padding: 40px 30px;
}

#itemRemoveModal .modal-content .modal-body h5 {
  color: #2B2B2B;
  margin-bottom: 20px;
}

#itemRemoveModal .modal-content .modal-body p {
  color: #7C7878;
  margin-bottom: 30px;
}

#itemRemoveModal .modal-content .modal-body p.action {
  margin-top: 20px;
  margin-bottom: 0;
}

#itemRemoveModal .modal-content .modal-body p.action .btn {
  padding: 12px 20px;
  margin: 0 10px;
}

#itemRemoveModal .modal-content .modal-body p.action .btn {
  border-radius: 0;
}

#itemRemoveModal .modal-content .modal-body p.action .btn.btn-secondary {
  background-color: #0E2F56;
  border-color: #0E2F56;
}

#itemRemoveModal .modal-content .modal-body p.action .btn.btn-outline-secondary {
  border-color: #0E2F56;
  color: #0E2F56;
}

#itemRemoveModal .modal-content .modal-body p.action .btn.btn-outline-secondary:hover {
  background-color: transparent;
}


.footer-featured-card h5{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1.5px;
    font-size: 18px;
    margin: 0px;
}


.footer-featured-card img{
    width: 30%;
}


.footer-contact-card p a{
    color: #fff!important;
}
.footer-contact-card p a:hover{
    text-decoration: underline;
}


footer .footer-featured {
    border-top: 1px solid #dd9d7e;
    padding: 15px 0;
}























@media screen and (max-width: 1199px) {
  .category-bar {
    display: none;
  }

  .nav-drawer .category-bar {
    display: block;
  }

  .nav-drawer .category-bar .category {
    margin-bottom: 15px;
  }

  .nav-drawer .category-bar .category-title {
    color: #FFFFFF;
  }
}

@media screen and (max-width: 991px) {
  header .minimal-header .text-end {
    display: flex;
    justify-content: space-between;
  }
  header .minimal-header .social {
    padding-left: 0;
  }
  header .minimal-header .query span {
    display: none;
  }

  header .top-bar .burger-menu-container,
  header .top-bar .mobile-search {
    display: block;
  }

  header .top-bar .desktop-nav,
  header .top-bar .search-bar {
    display: none;
  }

  header .top-bar .logo-wrapper {
    text-align: center;
  }

  /*main .left-nav-container {
    display: none;
  }*/

  main .banner-grid .main-banner {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 4;
  }

  main .banner-grid {
    height: 450px;
  }

  .wide-banner, .vertical-banner {
    display: none;
  }

  .authModal .modal-content .auth-content-wrapper .intro {
    display: none;
  }
  .authModal .modal-content .auth-content-wrapper .auth-form {
    width: 100%;
  }

  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper {
    flex-direction: column;
  }
  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .phone-number,
  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login {
    width: 100%;
    margin: 0;
  }

  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .login {
    margin-top: 30px;
  }

  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .separator span:before {
    display: none;
  }

  .payment-wrapper #paymentAccordion .accordion-item .phone-number-wrapper .separator span:after {
    top: 15px;
  }

  .items-in-cart .header {
    display: none;
  }

  .items-in-cart .cart-item {
    flex-direction: column;
  }

  .items-in-cart .cart-item .item-quantity {
    width: 100%;
  }

  .items-in-cart .cart-item .item-quantity .spinbutton-wrapper {
    margin-top: 15px;
  }

  .items-in-cart .cart-item .item-detail {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .minimal-filter {
    display: block;
  }

  .minimal-filter label[for="search-within-results"],
  .minimal-filter .form-check-wrapper,
  .minimal-filter .btn-group {
    margin-top: 10px;
    margin-right: 0;
  }

  .minimal-filter label[for="search-within-results"] {
    width: 100%;
  }

  .minimal-filter label[for="search-within-results"] input[type="text"] {
    width: 100%;
  }

  .searched-item p span {
    display: block;
  }

  footer .nav.nav-tabs .nav-item .nav-link {
    padding: 20px;
  }
}


@media screen and (max-width: 570px) {
  footer .nav.nav-tabs .nav-item .nav-link {
    font-size: 12px;
    padding: 12px;
  }
}


@media screen and (max-width: 480px) {
  .items-in-cart .cart-item .item-detail {
    flex-direction: column;
  }

  .items-in-cart .cart-item .item-detail .item-image {
    margin: 0 0 15px 0;
  }

/*  .product-card-hover-content .image-peek {
    min-height: 80px;
  }*/

  .product-card .product-title {
    font-size: 14px;
    line-height: 18px;
  }

 

 /* .product-card-hover-content .count-and-price {
    display: block;
  }*/

  .product-card .product-card-hover-content .price-with-offer {
    text-align: left;
  }

  .product-card-hover-content .action-wrapper .btn {
    font-size: 12px;
  }


  .product-details-wrapper .product-details-card .row.tab-row #product-spec-tabs .nav-item button {
    font-size: 12px;
    padding: 10px 15px;
  }

  .product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info {
    display: block;
  }

  .product-details-wrapper .product-details-card .reviews .review-card .user-info-and-date .user-info .user-state-review {
    width: 50%;
    min-width: 150px;
    margin: 15px 0;
  }
}



/*--------------------jubaer css----------*/

.j-sec{
     background-color: #dd4c04;
    padding: 6px 0;
}




.topbar{
    background-color: #041A33;
    color: #FFFFFF;
    padding: 10px 0;
}
.text-end {
    text-align: right!important;
}

.j-social{
    margin-bottom: 0;
    font-size: 12px;
    display: inline-block;
    padding: 0 35px;
}

.j-social li {
    list-style: none;
    display: inline-block;
}

.j-social li:not(:last-child) {
    margin-right: 10px;
}


.j-query {
    margin-bottom: 0;
    font-size: 12px;
    display: inline-block;
        color: #fff!important;
}

.j-query span a{
    text-decoration: none;
    color: #000!important;
}

.j-query a{
    text-decoration: none;
    color: #000!important;
}
.j-color{
    color: #FB641B!important;
}

.text-end {
    text-align: right!important;
}


.j-social li a{
    color:#fff!important;
    font-size: 12px;
}

.j-social-menu{
    text-align: right;
}


 .search-bar-input{
    height: 37px;
    padding-left: 10px!important;
    font-size: 13px;
    margin: 0px auto;

}


.search_button {
    background-color: #fff!important;
    border: none;
    height: 30px;
}

.j-categories button{
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    font-size: 12px;
    padding: 7.5px 16px;
    border: 0px;
}

 .search-bar-input{
    border-radius: 4px;
}


.navbar-tool-text > small {
    display: none !important;
}


.navbar-tool-text {
    display: none !important;
}



/*-------------new tabs---------*/


#tabs{
  
    color: #eee;
}
#tabs h6.section-title{
    color: #eee;
}

#tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #f3f3f3;
    background-color: transparent;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 2px solid #000!important;
    font-size: 18px;
}
#tabs .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #eee;
    font-size: 16px;
}

.nav-fill .nav-item {
    -ms-flex: 1 1 auto;
    flex: initial;
    text-align: center;
}

.nav {
    text-align: center!important;
    display: inline-flex!important;
}

.nav-tabs {
    margin-bottom: 0px!important;
}

.price-without-offer{
    overflow: hidden;
    margin-bottom: 6px;
}

.home-p{
    text-align:center;
}
.add-to-cart{
    font-size: 12px;
   background: #007284;
    border-radius: 0;
    color: #fff;
    padding: 6px 6px !important;
    text-transform: uppercase;
    width: 50%;
}

.add-to-cart:hover{
    color: #fff;
}

.buy-now{
    font-size: 12px;
       background: #fbbd2e;
    border-radius: 0;
    color: #fff;
    padding: 6px 6px !important;
    text-transform: uppercase;
    width: 50%;
}
.buy-now:hover{
    color: #fff;
}

.p-img a img {
    width: 100%;
    object-fit: cover;
    transition: all linear .2s;
    cursor: pointer;
}

.p-img a img:hover {
    transform: scale(1.1);
}


.input-group input{
   height: 34px!important;
}



.btn-scroll-top{
   background: #fbbd2e;
    color:#fff;
}

.btn-scroll-top {
    background: #e4062b;
    color:#fff!important;
}
.btn--primary {
    background-color: #e4062b!important;
    border-color: #e4062b!important;
    color: #fff!important;
}

.navbar-tool-icon-box {
    color: #000 !important;
    font-weight: 400 !important;
    display: inline-block;
}
/*.navbar-tool-icon-box:hover {
    color: red !important;
}*/

.navbar-tool .navbar-tool-label {
    position: absolute;
    top: 0px!important;
    right: 5px!important;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: #e4062b!important;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.25rem;
}

 .navbar-tool{
    color: #fff!important;
}

.czi-user{
    margin-right: 6px;
}

.czi-search {
    color: #fff!important;
}

.category-img{
    width: 70px;
    height: 70px;
    border: 1px solid gray;
    border-radius: 50px;
    overflow: hidden;
    padding: 13px;
    margin: 0px auto;
}

.category-bar .category {
   display: inline-block;
    text-align: center!important;
    width: 103px;
}

.category-bar .category:hover .category-img {
    border: 1px solid #e4062b!important;
}  
.category-bar .category:hover .category-title a{
    color: #e4062b!important;
}  


.d-tab{
    padding: 8px 20px;
    display: block;
    font-size: 15px;
}

.d-tabs {
    background-color: #edf2fa!important;
}

.custom-radio{
    border: 1px solid #e2e2e2;
    background: #fff;
}

.new-ship{
    border-bottom: 1px solid #e5e5e5;
    padding: 0px 10px;
}

.custom-radio label {
    display: inline-block;
    cursor: pointer;
    padding: 10px 8px;
    margin: 0px;
    color: #495057;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
}

.new-shipping{
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.new-feature_header span{
    font-size: 22px;
    margin-bottom: 15px;
    display: inline-block;
}

.d-action-wrapper{
    gap: 15px;
}



.d-tab.active {
  
    border-color: transparent transparent #f3f3f3;
    border-bottom: 0px solid #FB641B!important;
    font-size: 15px;
    background: #ffdee3;
    color: #000 !important;
}


.call-icon i{
    font-size: 18px;
    color: red;
    margin-right: 10px;
}


.price-without-offer p{
    margin-bottom:0px;
}

.j-p{
    margin: 0;
    color: #645F5F;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}



.j-underline{
        text-decoration: underline;
        color: #0E2F56;
         font-family: 'Poppins', sans-serif;
}

.cart-j-shaow{
    background-color: #FFFFFF;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    padding: 15px;
}
.j-cart-sec{
       box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
           background: #fff;
}


.j-specification{
   background: #fafafc;
     margin: 0px 0px 30px;
     padding: 20px 0px;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
}
.j-specification-card{
        display: flex;
    align-items: center;
}

.j-spect-cont h5{
    margin: 0px;
    font-size: 12px;
}


 .j-spect-cont p{
    margin: 0px;
    font-size: 11px;
}

.j-specification-card img{
        margin-right: 4px;
}


.j-details-sticky{
    display: flex;
    background: #fff;
    box-shadow: 0px 0px 5px #cbc7c7;
    margin-bottom: 5px;
}

.j-details-logo{
    width: 10%;
    border-right: 1px solid #E1E1E1;
    padding: 15px;
}


.j-details-logo img{
    width: 100%;
}

.j-details-title{
    width: 70%;
    border-right: 1px solid #E1E1E1;
    padding: 0px 10px;
}


.j-details-title h2{
    font-size: 17px;
    line-height: 27px;
    font-weight: 600;
    color: #232323;
    margin: 0px;
}

.j-details-decs{
    width: 20%;
    padding: 17px;
}



 .j-details-decs ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}


 .j-details-decs ul li{
     
}

 .j-details-decs ul li a{
    color: #6a6b6e!important;
    font-size: 13px;
    display: block;
    padding: 1px 0px;
}


.auth-content-wrapper .auth-form .form-content .btn {
    border-radius: 0;
    padding: 6px 14px!important;
    font-size: 14px;
    font-weight: 500;
}

.vector {
    display: block;
    margin: 10px auto!important;
}

.more{
    padding: 10px 13px!important;
    color: red;
}


.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 100%!important;
}

/*--------------------edit------------*/


.box-shadow-sm {
    border-radius: 0px!important;
    box-shadow: none;
}

.btnF{
    margin:0px;
}

.btnF a{
    padding: 16px 10px!important;
    display: block;
    border-bottom: 2px solid #EEEEEE;
    color: #000;
    background: #ffdee3;
}

.j-dashborder-border{
    padding: 30px 0px;
    border-top: 0px !important;
    overflow: hidden;
}


.j-d-card{
    padding: 7px;
}


.mt-1{
    margin:0px!important;
}

.j-round{
    margin-bottom:10px;
}

 .headerTitle{
    font-size: 22px!important;
    padding: 10px 20px!important;
    margin: 0px;
}

.profile-update-btn{
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff;
    padding: 5px 15px;
    font-size: 15px;
    float: right;
}

.add-new-add-btn {
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff;
    padding: 3px 15px;
    font-size: 15px;
    float: right;
    margin-right: 3px;
}



.dashboard-track-order{
    background-color: #e4062b;
    border-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px;
    font-size: 15px;
}


.upload-faq-btn{
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px;
    font-size: 15px;
    margin-right: 20px;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 3px 8px!important;
    font-size: 16px!important;
    border-radius: 0px!important;
}

.page-link-order{
    margin: 15px 0px 0px 20px;
    display: block;
}



.donate-now input[type="radio"]:checked + label, .Checked + label {
     border-radius: 0px!important;
}

.border-radius{
    border-radius: 0px;
}

.dash-right-side {
    min-height: 400px;
    padding-left: 40px;
    background: #fff;
}
 .table-responsive{
    margin-left: 20px;
    width: 96%;
}

.for-mobile-glaxy{
    margin-left: 20px;
    width: 96%;
    text-align: right;
    margin-bottom: 20px;
    display: inline-block;
}
.page-link{
    margin-top:10px;
}

.borderless tbody tr{
    border-bottom: 1px solid #afafaf!important;
}


.page-link:hover{
    background:none!important;
    border:none!important;
    margin-top:10px;
}

.j-address{
    padding:0px 15px;
}

.nav-link {
    display: block;
    padding: 19px 10px !important;
    font-size: 15px;
    color: #323232;
}
.fa-angle-down{
    font-size: 13px!important;
}

.no-padding{
    height:770px;
}

.right-big-adds img{
    height:754px;
}

.navbar-brand{
    padding-left: 12px;
    margin-right: 120px;
}

.navbar-toolbar{
    margin-left: 120px;
}


.big-adds img{
    width: 100%;
}


.d-xl-block{
    padding-right: 0px!important;
}
.modal-content {
    border-radius: 0px!important;
}
.close {
    background: none!important;
}

.best{
    margin:0px;
    
}

.quote-btn button{
    margin:0px auto!important;
    font-weight: 500;
}

.compare {
    color: #0E2F56;
    margin-left: 15px;
    font-size: 12px;
    padding: 10px 13px!important;
    border: 1px solid  #0E2F56;
}
.bar-5{
    background-color: #0E2F56!important;
}

.bar-4{
    background-color: #0E2F56!important;
}
.bar-3{
    background-color: #0E2F56!important;
}
.bar-2{
    background-color: #0E2F56!important;
}
.bar-1{
    background-color: #0E2F56!important;
}

.star svg{
    font-size:35px!important;
}


.star{
    margin-top: 40px;
    padding-left: 40px;
    width: 255px;
    text-align: center;
}

/*.navbar-tool-icon-box:hover{
    color:#fff!important;
}*/

.navbar-tool-icon-box span{
    color:#fff;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-menu-left {
    background: #ffdee3!important;
    border: 0px;
    top: 50px;
}

.dropdown-menu-left::before {
    position: absolute;
    vertical-align: .255em;
    content: "";
    border-top: .8em solid #ffdee3;
    border-right: .8em solid transparent;
    border-bottom: 0;
    border-left: .8em solid transparent;
    transform: rotate(180deg);
    left: 32px;
    top: -12px;
}

.product-card .product-title {
    font-size: 14px!important;
    line-height: 19px!important;
    font-weight: 500!important;
    color: #232323!important;
    margin: 7px 0!important;
}

.carousel-control-prev a svg:hover{
    background:red;
}

.coupon-banner p{
    font-size: 12px;
    padding: 15px 0px;
}
.coupon-banner p span{
    color: #000;
    font-weight: 600;
    font-size: 13px;
}
.d-p-product {
    margin-bottom: 30px!important;
}

.volume-price{
    text-decoration: underline;
}
.j-img img {
    margin-right: 4px;
    border-right: 1px solid #c4c0c0;
    padding-right: 6px;
    width: 100px;
}

.strike-price {
    color: red;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 0;
    margin-left: 20px;
}


.bredcum_font_arrow {
    position: relative;
    top: 3px;
    left: 8px;
    font-size: 12px;
}

.breadcrumb-item::before {
    font-family: 'sixvalley-icons';
    font-size: .9em;
    vertical-align: middle;
}
.mr-1{
    margin-right:0px!important;
}

.rewuest-call{
    padding:5 30px!important;
}

.border-none{
        border-radius: 0px!important;
        padding-left: 35px!important;
}
/*.border-none1{
    padding-left: 45px!important;
}*/
.track-modal{
    width:50%!important;
}


.track-intro {
    background-color: #0E2F56;
    width: 50%;
    align-items: center;
    justify-content: center;
}

.track-intro p{
    text-align: center;
    color: #fff;
    font-size: 20px;
}

.track-group img{
    position: absolute;
    margin-left: 9px;
    margin-top: 10px;
    width: 17px;
}


.track-group1 img {
    position: absolute;
    margin-left: 9px;
    margin-top: 12px;
    width: 22px;
}
.track-intro-img img{
    padding-top: 35px;
}

.track-btn button{
    width: 100%!important;
    border-radius: 0px!important;
    margin-top: 40px!important;
}


.d-more{
    text-decoration: underline;
    font-size: 14px;
}


/*.sidebarR{
    width: 23%;
    float: left;
}*/

.account-info-up{
    margin-left:20px;
}

.card {
    border: none!important;
}


#shop-by-brand{
    height:144px;
    background: #fff;
}
.owl-nav {
    width: 96%!important;
    margin-left: 19px!important;
}


.product-info {
    height: 74px;
}

.d-note {
    background: #2a3f64!important;
}

/*.btn-danger {
    color: #fff;
    background-color: gray!important;
    border-color: gray!important;
}*/
.btn-danger:hover {
    color: #fff;
    background-color: #e4062b!important;
    border-color: #e4062b!important;
}

.badge-info{
    color: #fff;
    background-color: #e4062b!important;
    border-color: #e4062b!important;
}

.badge-danger{
    color: #fff;
    background-color: gray!important;
    border-color: gray!important;
}

.j-model{
    border-top: 0.5px solid #E1E1E1;
    border-bottom: 0.5px solid #E1E1E1;
    padding: 10px 0px;
    margin-bottom:10px;
    
}

.j-model a{
    border: 1px solid #E1E1E1;
    padding: 4px 9px;
    margin-right: 1px;
    display: inline-block;
    font-size: 13px;
}

.j-model a:hover{
    background-color: #e2f0ff!important;
}
.jactive{
    background-color: #e2f0ff!important;
}

.j-model p{
    margin: 0px;
    font-size: 16px;
    margin-bottom: 7px;
}


.coupon-banner{
    margin-bottom: 15px;
}

.j-details-sticky{
    margin-bottom: 10px;
    position: sticky;
    /*top: 68px;*/
    top: 0px;
    z-index: 999;
}

.navbar-tool-icon {
    margin-top: 12px!important;
  
}



.categori-modal{
    cursor: pointer;
    display: flex;
    vertical-align: middle;
    /* line-height: 16px; */
    font-size: 14px;
    margin: auto;
    /* height: 120px; */
    justify-content: center;
    align-items: center;
}


.swal2-popup{
    border-radius: 0px!important;;
}

.swal2-popup .swal2-header {
    text-align:left!important;
}

.swal2-popup #swal2-content {
    text-align: left!important;
    padding-left: 21px;
    color: #7C7878;
    margin-bottom: 10px!important;
    font-size: 16px;
}

.swal2-popup .swal2-header {
    align-items: baseline!important;
}


.swal2-popup .swal2-title {
    font-size: 25px!important;
    font-weight: 500!important;
    /*padding-left: 20px!important;*/
    /*padding-top: 25px!important;*/
    margin-bottom: 12px!important;
    margin: 0px auto;
}

#swal2-title{
    margin: 0px auto!important;
}

.swal2-popup .swal2-styled {
    margin: 0.3125em;
    padding: 5px 20px!important;
    font-weight: 500;
    box-shadow: none;
    border-radius: 0px!important;
}

.swal2-popup .swal2-styled.swal2-confirm {
    border: 0;
    border-radius: 0px!important;
    background: initial;
    /*background-color: #0E2F56!important;*/
    background-color: #2a3f64 !important;
    color: #fff!important;
    font-size: 20px!important;
    border: none!important;
    padding: 2px 30px!important;
    appearance: none;
}

.track-btn {
    background-color: #e4062b!important;
    border-color: #e4062b!important;
    color: #fff!important;
    width: 100%!important;
    border-radius: 0px!important;
    margin-top: 40px!important;
    font-size: 15px;

}


.auth-content-wrapper .auth-form .form-content .btn-google {
    background: #fff!important;
}


.intro {
    display: block!important;
    padding: 30px 20px!important;
}

.intro h3{
    text-align: center;
    color: #fff;
    margin: 0px;
    padding: 0px;
}
.auth-content-wrapper .intro ul {
    padding: 0;
    list-style: none;
    width: 93%!important;
    margin: 0px auto!important;
    text-align: center!important;
    margin-top: 45px!important;
}


.auth-content-wrapper .intro ul li{
    padding: 7px 0px!important;
}


#shop-categories{
    height: 300px;
        overflow: auto;
        padding: 2px!important;
}




#shop-categories::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

#shop-categories::-webkit-scrollbar
{
  width: 3px;
  background-color: #F5F5F5;
}

#shop-categories::-webkit-scrollbar-thumb
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}

.for-hover-lable:hover{
    color:#e4062b!important;
}

.submenu-items li{
    color:#000!important;
}

.left-nav ul li a img {
    display: block;
    margin-right: 12px;
    width: 20px!important;
}


  
.left-nav {
  border: 1px solid #C7C7C7;
  background-color: #fff;
  position: sticky;
  top: 74px;
  z-index: 80;
  margin-top: 7px;
}

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

.left-nav ul li:not(:last-child) {
  border-bottom: 1px solid #C7C7C7;
}

.left-nav ul li a {
    display: block;
    padding: 7px 5px;
    text-decoration: none;
    color: #5B5C5E;
    align-items: center;
    font-weight: 400;
    font-size: 14px;
    transition: none;
}

.left-nav ul li a:hover {
    background: #525D62;
    color:#fff!important;
}


.left-nav ul li a.more {
  color: #0E2F56;
  line-height: 1.6;
}

.left-nav ul li a img {
  display: block;
  margin-right: 12px;
}

.left-nav ul li a.submenu {
  position: relative;
}

.left-nav ul li a.submenu:after,
.left-nav ul li .sub-sub-menu:after {
  content: '';
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left-color: #a0a0a0;
  position: absolute;
  right: 6px;
  /*top: calc(50% - 6px);*/
  top: 10px;
}

.left-nav ul li .sub-sub-menu:after {
  right: 0;
}

.left-nav ul li a.submenu .submenu-items,
.left-nav ul li .sub-sub-menu .sub-sub-menu-items {
  display: none;
  background-color: #FFFFFF;
  border: 1px solid #C7C7C7;
  position: absolute;
  left: 100%;
  top: -1px;
  z-index: 100;
}


.left-nav ul li a.submenu .submenu-items{
   background-color: #525D62!important;
}
.left-nav ul li a.submenu .submenu-items li {
  display: block;

  min-width: 150px;
  padding: 7px 15px;
  border-bottom: 0;
  white-space: nowrap;
  
}

.submenu-items li{
    color:#fff!important;
}


.sub-sub-menu-items li{
    color:#000!important;
}

.left-nav ul li a.submenu .submenu-items li:not(:last-child) {
  border-bottom: 1px solid #C7C7C7;
}

.left-nav ul li a.submenu:hover .submenu-items,
.left-nav ul li .sub-sub-menu:hover .sub-sub-menu-items {
  display: block;
}

.left-nav .special-offers {
  border-top: 1px solid #C7C7C7;
}

.left-nav .special-offers a {
  color: #5B5C5E;
  text-decoration: none;
}

.left-nav .special-offers a:first-child {
  border-right: 1px solid #C7C7C7;
}


/*----------------animation css---------*/
.product-card-hover-content {
    transition: 0.4s ease-in-out!important;
}
.product-card-hover-content {
    top: 20px!important;
    opacity: 0!important;
}
.product-card:hover .product-card-hover-content {
    opacity: 1!important;
}

.product-card:hover .product-card-hover-content {
    top: 0!important;
}
/*----------------animation css---------*/






.single-page-cat{
    background: #041A33;
    width: 82px;
    padding: 5px 3px;
    border-radius: 3px;
    line-height: 13px;
    height: 37px;
}

.single-page-cat-text{
    color: #fff;
    font-size: 10px;
    float: left;
    width: 73%;
}

.single-page-cat span{
    margin-top: 5px;
    display: block;
}


.single-cat{
    padding-top: 15px;
    border: 0px!important;
    margin-top: 0px!important;
    background: transparent!important;
}


.single-nav{
    margin-top: 0px!important;
    box-shadow: 0px 0px 6px!important;
    border: 0px!important;
}



.single-cat:before {
        content: "";
    width: 0;
    height: 0;
    border-bottom: solid 9px #fff;
    border-left: solid 9px transparent;
    border-right: solid 9px transparent;
    position: absolute;
    float: left;
    top: 6px;
    left: 18px;
        display: block;
}


/*---------------------0ffcanvas---------*/


.nav01{
    text-align: right;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    padding-top: 7px;
    position: absolute;
    right: 0px;
    background: #FB641B;
    padding: 3px 10px;
}

nav.side-slide {
     background-color: rgba(255, 255, 255, 1);
    border-right: 2px solid gray;
  top: 0;
  left: -285px; 
  height: 100%;
  position: fixed;
  width: 285px;
      z-index: 999;
 
}

/*nav.side-slide ul{
    margin-top: 70px;
    border-top: 1px solid #F44646;
  }*/

  nav.side-slide li {
    text-align: center;
    border-bottom: 1px solid #F44646;
    line-height: 60px;
    
  }
.side-slide li:hover {
      background-color: #F44646;
    }
  nav.side-slide a {
    color: #000!important;
    font-weight: bold;
    font-size: 14px;
    padding: 4px 10px;
    display: inline-block;
    
  }

.side-slide a:hover {
      color: #fff;
    }





.canvas-img{
    width: 60px;
    height: 60px;
    border: 1px solid #000;
    border-radius: 40px;
    margin-bottom: 10px;
        margin-top: 10px;
}

.canvas-header{
    border-bottom: 1px solid gray;
    padding-bottom: 10px;
    padding-left: 10px;
}


.submenu-sub-icon::after {
    content: " \f0da"!important;
    font-family: FontAwesome!important;
    display: inline!important;
    text-align: right!important;
    padding-left: 10px!important;
    float: right;
}


 
  .sidebar-navigation ul{
    margin: 0;
    padding: 0;
  }
     .sidebar-navigation ul li{
      display: block;
  }
    .sidebar-navigation ul li a{
        position: relative;
        display: block;
        font-size: 1em;
        font-weight: 600;
        padding: 20px 25px;
        text-decoration: none;
        color: #2e2e2e;
        letter-spacing: .02em;
        border-bottom: 1px solid #eee;
  }  
   .sidebar-navigation ul li a em{
          font-size: 24px;
          position: absolute;
          right: 20px;
          top: 50%;
          transform: translateY(-50%);
          padding: 5px;
          border-radius: 50%
       
      }
      
        
ul{display: block}
             

.canvas-link {
    display: block;
    padding: 10px 22px!important;
    font-size: 14px!important;
}
.canvas-link.active {
   border-bottom: 2px solid red;
}


.owl-stage{
    height:370px;
}





#body-row {
    margin-left:0;
    margin-right:0;
}
#sidebar-container {
    min-height: 90vh;   
    padding: 0;
}

/* Sidebar sizes when expanded and expanded */
.sidebar-expanded {
    width: 100%;
}
.sidebar-collapsed {
    width: 60px;
}

/* Menu item*/
#sidebar-container .list-group a {
   padding: 8px;
    color: white;
}

/* Submenu item*/
#sidebar-container .list-group .sidebar-submenu a {
    height: 45px;
    padding-left: 30px;
}
.sidebar-submenu {
    font-size: 0.9rem;
}

/* Separators */
.sidebar-separator-title {
    background-color: #333;
    height: 35px;
}
.sidebar-separator {
    background-color: #333;
    height: 25px;
}
.logo-separator {
    background-color: #333;    
    height: 60px;
}

/* Closed submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="false"] .submenu-icon::after {
  content: " \f0d7";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}
/* Opened submenu icon */
#sidebar-container .list-group .list-group-item[aria-expanded="true"] .submenu-icon::after {
  content: " \f0da";
  font-family: FontAwesome;
  display: inline;
  text-align: right;
  padding-left: 10px;
}


.list-group-item {
    background-color: transparent!important;
}


.d-tab-cont ul{
    margin-left: 20px;
}










.left-nav .special-offers {
  border-top: 1px solid #C7C7C7;
}

.left-nav .special-offers a {
  color: #5B5C5E;
  text-decoration: none;
}

.left-nav .special-offers a:first-child {
  border-right: 1px solid #C7C7C7;
}


.j-cat-icon img {
    width: 100%;
}


.main-cat-item{
    width: 110px;
    text-align: center;
}

.j-cat-icon {
    width: 90px;
    height: 90px;
    padding: 15px;
    margin: 0px auto;
    background: #f6f6f6;
    border-radius: 10px;
    border: 1px solid #f6f6f6;
    box-shadow: 0 0 .880517px rgba(0, 0, 0, .029), 0 0 2.29197px rgba(0, 0, 0, .03), 0 0 5.52px rgba(0, 0, 0, .054), 0 0 11px rgba(0, 0, 0, .09);
}
.main-cate {
    overflow: hidden;
    padding: 25px;
    display: flex;
    justify-content: center;
}

.carousel-item a img{
    width: 100%;
}

.main-cat-bg{
    background: #fff;
    padding-top: 30px;
}

.main-cat-item a p{
    margin-top: 10px;
    display: inline-block;
    margin-bottom: 0px;
    color:#000;
}

.main-cat-item a:hover p{
    color:red;
}

.owl-carousel .item {
  padding: 15px;
}

.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 1.25rem;
}

.card-text {
  color: #6c757d;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background-color: transparent;
  color: #fff!important;
}

.owl-nav .owl-prev {
  left: -16px;
  color: #000!important;
}

.owl-nav .owl-next {
  right: -22px;
  color: #000!important;
}

.owl-nav button{
    width: 25px !important;
    height: 25px;
    background: rgb(255 222 227) !important;
    padding: 12px!important;
    border-radius: 30px!important;
    margin-right: 0px!important;
   
}

.owl-nav button.owl-prev::after {
  content: '\f104'; /* Font Awesome left arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.owl-nav button.owl-next::after {
  content: '\f105'; /* Font Awesome right arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.owl-nav button span{
    display:none;
}

.owl-dots{
    
}

/*----------------------trakig page css----------*/

 .traking-sec{
    background: #fff;
    border: 0.5px solid #d2d1d1;
    padding: 30px 10px;
    margin-top:30px;
}

.traking-box h3{
    font-size: 18px;
    font-weight: bold;
}

.traking-box h4{
    font-size: 16px;
}

.traking-box p{
    font-size: 13px;
    width: 70%;
    margin: 0px;
    margin-bottom: 8px;

}


.traking-details{
    background: #fff;
    border: 0.5px solid #d2d1d1;
    padding: 30px 10px;
    margin-top:30px;
    margin-bottom: 30px;
}

.traking-details-item{
    display: flex;
    margin-bottom: 10px;
    background-color: #FFF3EB;
    padding: 10px;
}

.traking-details-item-img{
    width: 15%;
    padding: 4px;
}


  .product-title {
    font-size: 14px!important;
    line-height: 19px!important;
    font-weight: 500!important;
    color: #232323!important;
    margin: 7px!important;
}  


.price-without-offer p {
    margin-bottom: 0px;
}
 .price-without-offer p strike {
    color: #6C6C6C;
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 0;
}
 .price-with-offer span {
    color: #07832A;
    font-size: 12px;
    font-weight: 500;
}

.price-with-offer p {
    color: #0E2F56;
    font-size: 15px;
    line-height: 23px;
    font-weight: 600;
    margin-bottom: 0;
}

/*.price-with-offer span {
    color: #07832A;
    font-size: 12px;
    font-weight: 500;
}
*/
.price-with-offer{
    position: absolute;
    right: 10px;
    z-index: 1;
}

.price-with-offer span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    background: #606060;
    padding: 4px 5px;
    border-radius: 3px;
}

/*.pricing-info{
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}
*/

.checkbox-color label {
     width: 25px!important;
    height: 25px!important;
    margin-right: 10px!important;
}

.traking-details-item-text p{
    
    margin-bottom: 0px;
    color: gray;
}

.traking-details-item-price{
    margin-right: 60px;
}



.traking-details-item-p-box{
    padding-left: 9px;
    display: flex;
}

.quantity-info{
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.quantity-info p{
    margin: 0px;
}




.price-without-offer span{
    color: #07832A;
    font-size: 12px;
    font-weight: 500;
    padding-left: 8px;
}

.history-tl-container{
/*font-family: "Roboto",sans-serif;*/
    width: 51%;
    /* margin: auto; */
    display: block;
    position: relative;
    margin-left: 23%;
}
.history-tl-container .tl{
    margin:20px 0;
    padding:0;
    display:inline-block;

}
.history-tl-container .tl li{
    list-style: none;
    margin:auto;
    min-height:50px;
    border-left: 2px solid #e4062b;
    padding: 0px 0px 20px 25px;
    position:relative;
}
.history-tl-container .tl li:last-child{ border-left:0;}
.history-tl-container .tl li::before{
    position: absolute;
    left: -17px;
    top: 0px;
    content: " ";
    border-radius: 500%;
    background: #e4062b;
    height: 30px;
    width: 30px;
    transition: all 500ms ease-in-out;

}
/*.history-tl-container .tl li:last-child::before {
    left: -14px;
   
}*/

.history-tl-container .tl li:first-child .fa-check{
    position: absolute;
    left: -9px!important;;
    margin-top: 7px;
    color: #fff;
    font-size: 15px;
}

.history-tl-container .tl li .fa-check {
    position: absolute;
    left: -9px!important;
    margin-top: 7px;
    color: #fff;
    font-size: 15px;
}




/*
.tl-item:first-child .fa-check {
    margin-left: -11px!important;
}
*/

.history-tl-container .tl li:hover::before{
    border-color:  #258CC7;
    transition: all 1000ms ease-in-out;
}
.tl li .item-title{
}
.tl li .item-detail{
    color:rgba(0,0,0,0.5);
    font-size:12px;
}
.tl li .timestamp {
    color: #8D8D8D;
    position: absolute;
    width: 100px;
    left: -122px;
    text-align: right;
    font-size: 12px;
}

.new-traking-sec{
    margin-top: 30px;
}

.traking-sec-box {
    background: #fff;
    border: 0.5px solid #d2d1d1;
    margin-top: 20px;
    padding-bottom: 10px;
}

.traking-sec-box-title{
    display: flex;
    font-size: 18px;
    border-bottom: 1px solid #d2d1d1;
    padding: 10px;
    background-color: rgb(255 222 227);
    justify-content: space-between;
}

.traking-sec-box-title h3{
    font-size: 18px;
    margin: 0px;
}

.traking-sec-box-title h5 {
    font-size: 17px;
    color: #f40c0c;
}

.traking-sec-item,.traking-sec-item{
    padding: 10px 0px;
}


.traking-sec-item ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.traking-sec-item ul li{
    padding: 6px 12px;
    color: gray;
    display: flex;
}

.track-address-cont{
    width: 31%;
    display: inline-block;
    font-weight: 600;
    color: #000;
}
/*------------------Empty cart css-----------*/
.emty-cart-box{
   background: #fff;
    border: 0.5px solid #d2d1d1;
    padding: 30px 10px;
    margin-top: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.emty-cart-box h3{
    font-size: 20px;
    margin-top: 30px;
}


.emty-cart-box a{
    display: inline-block;
    background: #0E2F56;
    padding: 10px 40px;
    color: #fff!important;
    font-size: 16px;
    font-weight: 600;
}

.emty-cart-box p{
    color: gray;
}

 .cart-need{
    text-align: center;
    margin-bottom: 30px;
}

.cart-need p{
    margin: 0px;
    font-size: 15px;
    color: #0E2F56;
    font-weight: 600;
}

.need-color{
    color:gray;
}


.j-modal-close{
    margin-top: 13px;
    position: absolute;
    right: 17px;
    top: 28px;
    background: none!important;
        font-size: 25px;
}

.features ul{
    margin-left: 20px;
}
.editor-textarea{
    width: 100%;
    padding: 2px 8px;
}
/*-----------------------------------quotation genaration page------------------------*/
.quotation-tab{
    color:#000!important;
}
.quotation-content {
    border: 1px solid #d0cccc!important;
    padding: 20px;
    background: #fff;
    overflow: hidden;
    margin-bottom: 20px;
}

.nav-tabs .quotation-tab.active {
    color: #f3f3f3;
    background-color: #fff;
    border-color: gray!important;
    font-size: 14px;
    margin-bottom: 1px;
}

.quotation-table-box{
    display: flex;
}

.quotation-table-img{
    width: 70px;
    margin-right: 10px;
}

.quotation-table-pro-name{
    width: 70%;
}
.quo-final-price-box{
    border-top: 0;
    background: #f8f8f8;
    padding: 8px 10px;
    color: #666666;
    width: 100%;
    float: left;
    position: relative;
}
.quo-final-price-text {
    text-align: right;
}
.quo-final-price-text p{
    margin-bottom: 8px;
}

.quo-final-price-text h4{
    font-size: 18px;
}
.shipping-color{
    color:green;
}

.quo-qupon{
    border: 1px dashed #b8b5b5;
    width: 65%;
    margin: 20px 0px;
    height: 50px;
    padding: 7px;
}
.cupon-btn{
    line-height: 0.5!important;
    background: #caf0c7;
}

.quo-final-price-bottom {
        width: 100%;
    float: left;
    padding: 20px 10px;
    background: #eee;
    border-top: 1px solid #e7e7e7;
}

.continue-shop-btn{
    background: #fff;
    padding: 11px 20px;
    margin-top: 2px;
    font-size: 15px;
    margin-right: 7px;
    display: -webkit-inline-box;
}

.quotation-back-btn{
    text-align: right;
}
.quo-card{
    margin-top:6px;
}

.quotaion-update-box {
    text-align: center;
}
.spinbutton-wrapper1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 109px;
    margin: 0px auto;
}

.quo-move-to-cart {
    background: #e4062b;
    color: #fff !important;
    border: none;
    margin-right: 20px;
    float: right;
    padding: 5px 15px;
    margin-top: 10px;
}
.quo-price-update{
    display: inline-block;
    background: #eeeeee;
    padding: 4px 15px;
    margin-top: 10px;
    color: #666;
    border: 1px solid #d5d5d5;
}
.quotation-Price{
    text-align: center; 
}
.quotation-Price p{
    margin: 0px;
}
.quo-price-update i, .quo-move-to-cart i {
    margin-top:0px!important;
}

.quotation-table-pro-name p{
    margin: 0px;
    font-weight: 600;
}

.quotation-table-pro-name ul{
    list-style: none;
}

.quotation-table-pro-name ul li{
    font-size: 13px;
    line-height: 15px;
}
.quotation-table-box button{
    color: red!important;
    font-size: 13px;
}

/*-----------quote_rfq_contact---------*/
.photoHeader{
    border: 1px solid #d0cccc!important;
}
.qotation-file{
        height:50px!important;
        border-radius: 0px;
        background: #f7f7f7;
    }
 .j-quotation-bottom{
    background: #f7f7f7;
    padding: 20px;
    margin-bottom:15px;
}
.quotation_rfq-input{
    border-radius: 0px!important;
    height: 40px!important;
}
/*.font-nameA{
    font-size: 22px;
    margin-left: 18px;
        margin-bottom: 20px;
}*/
.j-qotation-footer-text{
    margin-bottom: 20px;
    overflow: hidden;
    padding: 20px;
}

.j-qotation-footer-text p{
    font-size: 15px;
    color: #6d6969;
    margin-bottom: 10px;
}
.j-qotation-footer-text ul{
    margin:0px;
    padding:0px;
    list-style: none;
}
 .j-qotation-footer-text ul li{
    float: left;
    font-size: 13px;
    margin-right: 35px;
    color: gray;
}

.float-right{
    border-radius: 0px;
}

.contact_info{
    font-size: 20px;
    padding-left: 20px;
}
.contact_info-input{
    border-radius: 0px;
    padding: 7px!important;
    max-height: 45px!important;
}

.contact_info-p{
    font-size: 13px;
    color: gray;
    padding-left: 20px;
    width: 75%;
}

.contact_information_box{
    position: relative;

}

 .back-quotation{
    position: absolute;
    right: 0px;
    top: 0px;
    background: #d0cdcd;
    padding: 5px 10px;
    margin-right: 20px;
}

/*--------------------------blog-------------*/
.blog-section{
    padding:50px 0px;
}
.card-item{
    width: 100%;
    background: #fff;
    padding: 15px;
    overflow: hidden;
        height: 500px;
}
/*.card-item-img{
    width: 180px;
    float: left;
    margin-right:20px;
}*/

.card-item-img img{
    height: 230px;
    width: 100%;
    margin-bottom: 20px;
}

.blog-categories{
    margin: 0px;
    color: gray;
    margin-bottom: 9px;
}

.card-title {
    margin-bottom: 9px;
}

.blog-btn{
    background: #0E2F56;
    color: #fff;
    padding: 7px 21px;
    color: #fff!important;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    margin-bottom: 15px;
}
.blog-box{
    margin-bottom: 45px;
}

.blog-box h3{
    font-size: 22px;
    border-bottom: 2px solid #e4062b;
        padding-bottom: 8px;
}

.blog-box ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

 .blog-sidebar{
    background: #fff;
    padding: 15px;
}


.blog-box ul li a{
    padding: 4px 0px;
    display: inline-block;
    color: gray!important;
}

.blog-box ul li a:hover{
    color: #e4062b!important;
}

.blog-date{
    color: #e4062b;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

 .blog-title h1{
    font-size: 28px;
    margin-bottom: 25px;
}
.single-blog {
    padding: 20px;
    text-align: center;
}

.single-blog-title h1{
    margin: 0px;
    padding: 40px;
    font-size: 30px;
}

.btn--primary {
    background-color: #e4062b!important;
    border-color: #e4062b!important;
    color: #fff!important;
    border-radius: 0px!important;
}

.cart_total {
    border-radius: 0px; 
}

.single-blog img{
    width: 100%;
}

.sign-modal {
    width: 60%!important;
    height: 572px!important;
}

.dashboard-emty-quotation{
    text-align: center;
       padding: 160px;
}

.dashboard-emty-quotation img{
    margin-bottom: 25px;
}

.dashboard-emty-quotation a{
    color: #e4062b!important;
    text-decoration: underline;
}

 .dash-address-pin{
    float: left;
    margin-right: 15px;
}

.dash-address{
    float: left;
    padding-top: 4px;
}
.dash-address-icon{
    text-align: right;
}



.search-all-img{
    position: relative;
    width: 100%;
    background: #fff;
}

.list-group-flush li a{
    font-size:13px!important;
}

.search-all-img-head{
    padding: 20px;
}
.search-all-img-head p{
       margin: 0px;
    font-weight: 600;
    font-size: 13px;
}

.search-all-img-head a{
    color: #FB641B!important;
    display: inline-block;
    font-size: 13px;
}

.search-all-img-cont a{
    display: block;
    border-top: 0.5px solid #ccc;
    padding: 8px 2px;
}

 .search-result-box-brand h5{
    font-size: 14px;
    padding: 5px 10px;
    background: #f1f1f1;
    font-size: 13px;
    color: #999;
    font-weight: 600;
}


.search-all-img-cont-item{
    display: flex;
}

.search-all-img-cont-item-img {
    width: 70px;
    padding: 0px 10px;
}


 .search-all-img-cont-item-text p{
    line-height: 17px;
    font-size: 12px;
    margin: 0px;
}
.serch-price{
    color:#e4062b!important;
}

.search-result-box-brand ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.search-result-box-brand ul li a {
    display: block;
    padding: 3px 10px;
    font-size: 13px;
}
.search-result-box-brand ul li a:hover {
    background: #f1f1f1;
}
.search-result-box{
    padding:0px!important;
}

.search-result-box-sec{
    width: 100%;
}



/*-----------------Checkout page---------------*/
.list-group-item {
    border: 1px solid rgba(0, 0, 0, 0.085)!important;
    border-radius: 0px!important;
}

.add-shipping-address{
    border: none;
}
.add-shipping-address:hover{
    background: none;
    color:#000;
}

.checkmark{
    margin-right: 10px;
    padding-top: 10px!important;
    display: inline-block;
}

.order-note-box{
    padding: 0px 20px;
}

.make-payment-btn{
    padding: 0px 20px 20px;
}

.payment-wrapper .nav.nav-tabs .nav-link:not(:last-child) span {
    border-bottom: none!important;
    border-right: none!important;
}

.payment-wrapper .nav.nav-tabs .nav-link:not(.active) span {
    border-right: none!important;
}




.pay-tab {
    display: block;
    padding: 6px 15px!important;
    border-right: 1.5px solid #B8B8B8!important;
    border-top: 1px solid #B8B8B8!important;
}

#tabs .nav-tabs .nav-item.show .nav-tabs .pay-tab.active {
    
    border-bottom: 0px!important;
    font-size: 14px!important;
}

.payment-wrapper .nav.nav-tabs .nav-link.active {
    border-bottom: 0px!important;
    font-size: 14px!important;
    border-right: 0px!important;
}
.payment-wrapper .nav.nav-tabs .nav-link:focus {
    border-top: 0px!important;
}

.payment-wrapper .nav.nav-tabs .nav-link span {
    padding: 15px 7px;
}

.payment-wrapper .nav.nav-tabs .nav-link.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%; 
    border-left: 4px solid #FB641B;
}

.pay-confirm{
    padding: 6px 15px;
}

#order_note{
    border-radius: 0px;
}


.more-offer ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.more-offer ul li{
    display: block;
    padding: 5px 0px;
}

.check-offer{
    padding: 20px;
}
.more-offer{
    padding: 0px 20px 20px;
}
.check-offer-apply{
    float: right;
}

.check-offer-apply{
    background: #0E2F56;
    text-transform: uppercase;
    color: #fff!important;
    font-size: 14px;
}

.check-offer-apply a{
        color: #fff!important;
    padding: 2px 15px;
    display: block;
}
.checkout-offer-input{
    position: relative;
}
.cupon-apply-btn{
    border-radius: 0px;
    padding: 4px 15px;
    position: absolute;
    right: 0px;
    top: 0px;
    border: none;
    color: #0E2F56!important;
    background: none;
    font-weight: 600;
}

.cupon-apply-input{
    border-radius: 0px;
    padding: 3px!important;
    height: 35px;
    padding-right: 85px!important;
}

.offer-summary {
    box-shadow: 0 4px 10px 0 #0000001a;
    background-color: #FFFFFF;
    
    margin-bottom: 20px;
}

.payment-summary-sec{
    position: sticky;
  top: 80px;
  margin-bottom: 20px;
}

.checkout-method{
    margin: 0px;
}

.send-price-bank{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}






.top-margin {
    border-radius: 0px!important;
    padding: 2px 7px!important;
}


.checkout-change-btn{
    position: absolute;
    right: 0px;
    padding: 3px 20px;
    margin-right: 21px;
    cursor: pointer;
    color: gray;
    border: 1px solid gray;
}

.checkout-ok{
    padding: 4px;
    margin-right: 10px;
    border: 2px solid #e4062b;
    color: #e4062b;
    border-radius: 20px;
}

.cart-custom-select-2{
    padding: 0px 20px;
}


.fa-circle-exclamation{
    color:#fff;
    font-size: 21px;
}

.exclamation-icon {
    background: #e4062b;
    padding: 12px;
    float: left;
}

.checkout-login-p{
    border: 1px solid #b1b1b1;
    padding: 11.5px 10px;
    overflow: hidden;
    border-left: 0px;
        width: 60%;
}

#review-order-panel{
    overflow: hidden;
}

#si-email{
    border-radius: 0px;
}

#si-password {
    border-radius: 0px;
    margin-top: 10px;
}

#identity {
    border-radius: 0px;
}

 .pull-right{
    border-radius: 0px;
}

.main-p {
    text-align: right;
    font-weight: 600;
}

.compaer-img{
    width: 180px;
}

.sold-out{
    height: 200px;
    position: absolute;
    width: 92%;
    background-color: rgba(255, 255, 255, .7);
    padding: 80px 46px;
}

.sold-out p{
    display: inline-block;
    padding: 5px 23px;
    color: #000;
    background: #ffdee3;
    border-radius: 20px;
    font-size: 17px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.details-sold-out{
    font-size: 17px;
    color: #e4062b;;
    font-weight: 600;
}

.j-dashborder-border h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #e4062b;
}


.upload-request{
    font-size: 22px;
    padding-left: 20px;
}

.d-genaret-invoice{
       background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px!important;
    font-size: 15px;
    display: inline-block;
}


.d-genaret-invoice-submit {
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff!important;
    padding: 4px 15px!important;
    font-size: 15px;
    display: inline-block;
}

.order-cancle{
       background-color: gray;
    color: #fff!important;
    padding: 5px 15px!important;
    font-size: 15px;
    display: inline-block;
}


.form-select {
    padding: 10px 16px;
    color: #6C6C6C;
    font-size: 14px;
    border-color: #ADAAAA;
    border-radius: 0;
    margin-bottom: 15px;
}


.coupon_discount_p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2B2B2B;
    width: 100%;
    margin: 0px;
}
.coupon_code_p{
    margin: 0px;
    font-size: 12px;
    color: #e4062b;
}

.close-code-coupon{
    color: #fff!important;
    margin-left: 20px;
    background: red;
    padding: 2px 5px;
    float: right;
}

.checkout-eft-view {
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff;
    padding: 7px 15px;
}

.contact-title h1{
    margin-top: 20px;
    font-size: 30px!important;
    
}


.address-box{
    border: 1px solid #f7f7f7!important;
    background: #f7f7f7;
    border-radius: 0px;
}


/*-------------------order success-------------*/
.order-success-box{
    display: flex;
}

.corporate-sme{
    padding: 20px;
}

.corporate-sme-p{
    font-weight: 600;
}

.success-price-sum{
    display: flex;
    margin-top: 17px;
    border-top: 1px solid #dae1e7;
    border-bottom: 1px solid #dae1e7;
    padding: 5px 0px;
}

.sme-po-number{
    background: #e4062b;
    color: #fff!important;
    padding: 4px 20px;
    border-radius: 0px;
    border: 0px;
}

.success-price-sum p{
    font-size: 20px;
    font-weight: 600;
    margin-right: 10px;
    margin-bottom: 0px;
}

.success-price-sum span{
    color:gray;
    padding-top: 4px;
}

.complete-order-all-btn-sec{
    padding: 20px;
    border: 1px solid #dae1e7!important;
    border-radius: 0px;
    margin-top: 10px;
    background: #fff;
}

.complete-item-process{
    overflow: hidden;
    border: 1px dashed #b0b0b0;
    width: 66%;
    margin: 0px auto;
}

.complete-item-process ul{
        list-style: none;
    margin: 0px;
    padding: 0px;
}

.complete-item-process ul li{
    float: left;
    padding: 20px 40px 0px;
    font-size: 18px;
    
}

.complete-item-process ul .active{
    color: #e4062b;
}

.process-item{
    display: flex;
}

.process-item-icon{
    margin-right: 10px;
}

.process-item{
    margin: 0px;
}
.process-item-icon i{
    font-size:25px!important;
}


.icon-center{
    position: absolute;
    margin-left: 17px;
}

.complete-order-all-btn-box ul{
    list-style: none;
    margin:0px;
    padding:0px;
    display: inline-flex;
}

.complete-order-all-btn-box ul li a{
    float:left;
    padding: 13px 20px 7px;
    display: block;
}

.complete-order-all-btn-box ul li a span{
    background: #b5b5b5;
    padding: 5px;
    color: #fff;
    margin-left: 10px;
}

.complete-order-all-btn-box{
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 20px;
    text-align: center;
}


.complete-order-summary{
    text-align: center;
    margin-bottom: 20px;
}
.complete-order-summary h4{
    font-size: 18px;
    margin: 0px;
}

.complete-order-summary p{
    font-size: 16px;
    color: gray;
}

.complete-cart-tb-head{
    background: #ffdee3;
}

.complete-order-all-btn-box ul li a i{
    background: red;
    color: #fff;
    padding: 0px 2px;
    border-radius: 4px;
}

/*.modal-content{
    background: #f7f7f7;
}*/

/*.modal-header {
    border-bottom: none;
    background-color: gray;
    border-radius: 0px;
}*/

/*.close{
    background: transparent!important;
    
}
*/


.close span{
    color:#000;
}
.closeB{
    background-color: #e4062b;
    border-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px;
    font-size: 15px;
}

.empty-upload-rfq{
    background: #e4062b!important;
}

.footer-link-list ul{
    margin:0px;
}
.footer-all-categories{
    text-align:right;
}

.footer-all-categories a{
    color: #fff!important;
    margin-right: 76px;
}

.btn-scroll-top-tooltip {
    display: none;
}

.footer-alllcatrgories-btn {
        margin-right: 47px!important;
   /* color: red!important;
    margin-right:52px!important;
    position: absolute;
    right: 0px;
    margin-top: -77px;*/
}

.search-div{
    width: 42%;
    margin-left: 70px;
}

.product-details-card-mobile{
    display:none;
}


/*---------------refund page------------*/
.overflow-hidden ul{
    margin-left: 20px;
}

.overflow-hidden ul li{
    margin-bottom: 10px;
}

.overflow-hidden h2{
    font-size: 20px;
}


/*----------------quotation popup----------*/
.swal2-content p{
    float: left;
    margin-bottom: 0px;
    font-size: 20px;
    /*color: #fff;*/
}

.swal2-content a{
    font-size: 20px;
    color: #e4062b!important;
    text-decoration: underline;
}

.swal2-popup{
    /*background: #2b2a2a!important;*/
    background: #F3F3F3!important;
}

#fa-check{
    float: left!important;
    font-size: 20px!important;
    background: #fff!important;
    color: #e4062b!important;
    border-radius: 20px!important;
    padding: 5px!important;
    margin-right: 10px!important;
}

.swal2-popup #swal2-content {
    text-align: center!important;
     padding-left: 0px;
    /*color: #fff;*/
    margin-bottom: 10px!important;
    font-size: 20px;
}

.close {
    background: none!important;
}
.for-padding ul{
    margin-left: 20px;
}

.t-sec-item-collapse {
    padding-top: 1px!important;
    width: 48px;
    float: right!important;
    position: absolute;
    right: 0px!important;
    margin-right: 10px!important;
}

  [data-toggle="collapse"] .fa:before {  
  content: "\f068"; 
}

[data-toggle="collapse"].collapsed .fa:before {
  content: "\f068";
}

.arrow-expand{
  margin-left:10px;
}


.collapsing {
   position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.7s ease;
}

.t-order-item-box{
    border: 1px solid #ebebeb!important;
    background: #f7f7f7;
    padding: 10px 7px 10px;
}
.t-op-btn{
   background: gray;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 0pc;
    color: #fff!important;
}


 .t-sec{
    display: flex;
}
.t-po-number p{
    float:left;
}

.t-sec-item{
    margin-right: 12px;
}

.emi-price-box{
    margin-bottom: 20px;
}

.t-order-item p{
    margin: 0px;
    font-weight: 600;
    color: gray;
}

.t-order-date p{
    margin:0px;
    color: gray;
}
.t-po-number p{
    margin:0px;
    margin-right: 10px;
    color: gray;
    font-weight: 600;
}

.t-order-amount p{
    margin:0px;
    margin-right: 10px;
    color: gray;
}


.accordion{
    margin-bottom:20px;
}

.t-collapse{
        background: #f7f7f7;
}

 .collapse-footer-cont{
    overflow: hidden;
}
.collapse-footer-item1{
    float: left;
}
.collapse-footer-item2{
    float: right;
}
.t-cancle{
    color:#e4062b !important;
}

.btn-view{
    background-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px!important;
    font-size: 15px;
    display: inline-block;

}

.btn-generate-invoice{
    background-color: #2a3f64;
    color: #fff!important;
    padding: 5px 15px!important;
    font-size: 15px;
    display: inline-block;
}
.btn-track-order{
    background-color: #e4062b;
    color: #fff!important;
    padding: 5px 15px!important;
    font-size: 15px;
    display: inline-block;
}

.mobile-vew-all-categories a{
    border: 1px solid #0000001f;
    display: block;
    padding: 7px 20px;
    border-right: 0px;
    border-left: 0px;
    background: #fff;
    color: #041A33!important;
    text-transform: uppercase;
    font-size: 16px;
    text-align: center;
}

.mobile-categories-sec{
    display:none;
}

.mobile-sign{
  display:none;  
}



.has-search .form-control {
    padding-left: 2.375rem;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.product-details-wrapper{
    background-color: #F3F3F3;
}

body{
    background-color: #F3F3F3!important;
}

.bg-transparent {
    position: relative;
    z-index: 0;
}





.mobile-pre-order a{
    display: inline-block;
    background: red;
    color: #fff;
    font-size: 20px;
    padding: 10px 20px;
    text-align: center;
}

/*=================*/
.offcanvas {
      position: fixed;
      top: 0;
      left: -260px;
      width: 250px;
      height: 100%;
      background-color: #fff;
      color: #000;
      transition: left 0.3s ease-in-out;
      z-index: 1040;
      overflow-y: auto;
      box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    }

    .offcanvas.show {
      left: 0;
    }

.offcanvas-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: #ffdee3;
    }

.offcanvas-header h5{
    margin: 0px;
}
    .offcanvas-body {
      padding: 1rem;
    }
    
.mob-other-menu li a{
    color: #000;
    padding: 7px 0px;
    display: inline-block;
}


/*=======================*/

 .sidebar-panel {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      color: white;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      z-index: 1050;
    }

    .sidebar-panel.active {
      transform: translateX(0);
    }

    .sidebar-header {
      padding: 1rem;
      background: #ffdee3;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
.sidebar-header h5{
    margin: 0px;
}

    .sidebar-content {
      padding: 1rem;
    }

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

    .sidebar-overlay.visible {
      display: block;
    }

.mob-main-cat-item {
    width: 48%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 3px;
}

.mob-main-cate{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mob-main-cat-item a{
    display: flex;
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 7px;
    align-items: center;
}

.mobj-cat-name p{
   margin: 0px;
    line-height: 17px;
    font-size: 14px;
    color:#000;
}

.mob-j-cat-icon img{
    width: 50px;
}

.mob-btm-item a:not([href]):hover {
    color: #fff;
    text-decoration: none;
}



/*====================*/


.sliding-menu {
      position: fixed;
      top: 0;
      left: -103%;
      width: 100%;
      height: 100%;
      background-color: #fff;
      color: white;
      box-shadow: 3px 0 5px rgba(0, 0, 0, 0.5);
      transition: all 0.4s ease-in-out;
      z-index: 1050;
    }

    .sliding-menu.active {
      left: 0;
    }

.sliding-menu-header {
    padding: 1.25rem;
    background-color: #ffdee3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sliding-menu-header h5{
    margin: 0px;
}

.sliding-menu-header button{
    background: red;
    color: #fff !important;
}

    .sliding-menu-content {
      padding: 1rem;
    }

    .sliding-menu a {
      color: #000;
      text-decoration: none;
      padding: 0.5rem;
      display: block;
      border-radius: 5px;
      transition: background-color 0.3s;
    }

   /* .sliding-menu a:hover {
      background-color: #5a6268;
    }*/

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

    .menu-backdrop.visible {
      display: block;
    }

.list-unstyled > li {
    margin-bottom: 0px;
}




.mobail-pre-order-sec{
    display:none;
}





















/*-------------------jebuayer responsive----------*/

@media screen and (max-width: 768px){
   .flash_deal_title {
    font-size: 16px;
    padding-top: 8px;
    margin-right: 20px!important;
} 

.flash-deals-box {
    padding: 5px;
}

    
/*.jb-search{
    display: none;
}    
*/
.container {
    padding-right: 8px;
    padding-left: 4px;
}    
    
 /*   .container {
    padding-right: 5px;
    padding-left: 4px;
}*/
   
 .fa-ellipsis-vertical{
    font-size: 24px!important;
    color:#fff!important;
}  

.navbar-brand {
   padding: 15px 10px;
   margin-right: 0px;
}

.mobile-sign{
  display:block;  
}


.w-100 {
    height: auto!important;
    margin-bottom: 10px;
}    
 
 
 .side-category-bar {
    height: 110px!important;
    width: auto!important;
}   


.side-category-bar img {
    width: 30px!important;
}

.mobile-vew-all-categories{
    margin-top:20px;
}
.mobile-vew-all-categories p{
    background: #0E2F56;
    margin: 0px;
    padding: 8px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    font-weight: 600;
    
}

.cat-span p{
    margin: 0px;
    font-size: 10px;
}

.big-adds img {
    height: auto;
    width: 100%;
}

.section-heading {
    font-size: 18px;
    line-height: 22px;
}

/*-----------search bar-----------*/
.navbar-toolbar {
    display: none!important;
}
.j-categories {
    display: none;
}

.input-group-overlay {
    width: 57% !important;
    margin-right: 10px !important;
    margin-top: 10px;
}



.search-bar-input {
    padding-left: 13px;
    font-size: 13px;
    margin-top: -10px;
}

.search_button {
    background-color: #fff!important;
    border: none;
    height: 30px;
    margin-top: -10px;
}

/*.search-card {
    width: 100%!important;
}*/



.password-toggle-btn {
    top: 63%;
    right: 0px;
}

.trending-search-area{
    
    top: 23px!important;
    left: 2px!important;
}

/*.search-all-img{
    display:none;
}*/

/*.exculsive-search-area{
   width: 330px !important;
   top: 33px !important;
   left: -85px !important;
}*/

.trending-search-area {
    top: 52px !important;
    left: -134px !important;
    max-width: 365px !important;
    width: 365px !important;
    margin: 0px auto;
    border-radius: 0px;
}

.search-card {
    width: 365px !important;
    left: -135px !important;
    top: 52px !important;
}
.card-body.search-result-box {
    overflow: scroll;
    height: 100%!important;
    overflow-x: hidden;
}

.search-result-box-sec {
    width: 100%;
    float: left;
    border-right: 0px;
}

.product-details-wrapper{
    padding-top: 38px;
}











    
  .j-social {
    margin-bottom: 0;
    font-size: 12px;
    display: inline-block;
    padding: 0 10px;
    text-align: left;
    float: left;
    margin-top:3px;
}
.mob-emil{
    display:none!important;
}

.right-big-adds{
    display:none!important;
}
.carousel-wrap {
    width: 99%;
}

.owl-nav {
    width: 90%!important;
}

/*---------------slider----------*/

.w-100{
    height:220px!important;
}




.mobile-categories-sec{
    display:block;
}

.owl-carousel .owl-item img {
    display: block;
    width: auto;
    margin: 0px auto;
}

.right-adds-sec{
    display:none!important;
}

.desk-category{
    display:none!important;
}
.j-query span{
    display:none!important;
}
.product-card .product-card-body .product-image {
    height: 170px;
}
.p-img {
    height: 150px;
    width: 100%;
}


.val{
    width: 50px!important;
}

.product-card .product-card-footer .price-without-offer p strike {
    font-size: 12px;
}
.product-card .price-with-offer p {
    font-size: 12px;
}
.price-with-offer span {
    font-size: 11px!important;
}

.save-p{
    margin-top: 4px;
}

.footer-contact-card{
    margin-bottom: 20px;
}
footer .footer-newsletter {
    padding: 40px 10px;
}

.footer-featured-card{
    margin-bottom: 20px;
} 
.footer-featured-card h5 {
    font-size: 14px;
}

#tabs .nav-tabs .nav-link {
    font-size: 12px;
}
.nav-link {
    display: block;
    padding: 18px 5px!important;
}

.footer-alllcatrgories-btn {
    margin-right: 70px!important;
    margin-top: -36px;
}

.footer-all-categories a {
    margin-right: 16px;
}
.j-details-sticky{
    display:none!important;
}
.product-description{
    padding:10px;
}

.j-specification-card {
    margin-top: 10px;
}

.product-details-card {
    padding: 5px;
}

.owl-item .cloned{
    width:226px!important;
}

.product-details-card-mobile{
    display:block;
    margin:10px 30px;
}


 .product-details-card-desktop{
    position: absolute;
    z-index: 999;
    margin-top: 700px;
}


.d-tab {
    padding: 9px 12px;
    font-size: 14px;
}

.cz-image-zoom-pane{
    display:none;
}

/*---------------------quotation------------*/

.quotation-table-box {
    display: block!important;
}
.quotation-content {
    padding: 2px;
}

.spinbutton-wrapper1 {
    width: 80px;
}

.quotation-table-pro-name {
    width: 100%;
}

.quo-price-update i{
    display:none;
}

.quo-price-update {
    font-size: 11px;
}


.text-danger {
    margin-top: 6px;
}

.quotation-back-btn {
    text-align: center;
    margin-top: 20px;
}

.contact_info {
     padding-top: 38px;
}
.contact_info-p {
    width: 100%;
}

.back-quotation {
    top: 2px;
    padding: 5px;
    margin-right: 2px;
}

.quotation-contact-header{
    margin:10px;
}

/*--------track order modal-------*/

.track-modal {
    width: 100%!important;
}
.auth-content-wrapper .auth-form {
    width: 97%!important;
}

.track-intro {
    width: 28%;
}

.track-intro-img img {
    padding-top: 110px;
}

.emty-cart-box a {
    padding: 10px 10px;
    font-size: 14px;
}

.sold-out {
    width: 100%;
    padding: 70px 25px;
}


/*---------------checkput page---------------*/

.checkout-login-p {
    width: 87%;
}


.pay-tab {
    display: block;
    padding: 0px 5px!important;
}
.payment-wrapper .nav.nav-tabs {
    min-width: 170px;
}

.payment-wrapper .nav.nav-tabs .nav-link span img {
    margin-right: 5px;
    display: inline-block;
    max-width: 15px;
    max-height: 15px;
}

.me-3 {
    margin-right: 0px!important;
}

.success-price-sum p {
    font-size: 16px;
}
.success-price-sum{
    margin-bottom: 10px;
}

.complete-order-all-btn-sec {
    padding: 8px;
}

.complete-order-cont{
    width: 100%;
    overflow-x: auto;
}

.complete-item-process {
    width: 100%;
    padding-top: 14px;
}
.complete-item-process ul li {
    float: left;
    font-size: 15px;
    width: 50%;
    padding: 4px 15px;
}

.complete-order-all-btn-box ul {
    display: block;
}
.complete-order-all-btn-box ul li{
    width: 100%;
}
.complete-order-all-btn-box {
    padding-bottom: 10px;
}

.table-responsive {
    margin-left: 6px;
    width: 98%;
    overflow-y: scroll;
}

 .table-responsive table{
    width: 170%!important;
    overflow: scroll;
}

.intro {
    display: none!important;
}

.jn-modal {
    width: 98%!important;
}


.desktop-view{
    display:none;
}

.mobile-view{
    display:block!important;
}
.align-items-start {
    width: 600px;
}
.checkout-eft-view {
    margin-bottom: 10px;
}
.accordion-body{
    padding: 9px;
}
.checkout-eft{
    margin-bottom: 10px;
}
.checkout-login-p {
    padding: 11px 5px;
}

#make-payment-panel{
    overflow-x: auto!important;
}

.payment-widt{
    width: 160%!important;
}

.text-break a{
    font-size: 13px!important;
}
.checkout-change-btn {
    padding: 3px 5px;
    margin-right: 10px;
}
.text-accent{
    font-size:14!important;
}
 

#sub_total265{
    font-size: 14px!important;
}

.pay-confirm {
    padding: 6px 10px!important;
    font-size: 13px!important;
}
.checkout-eft-view {
    padding: 6px 10px!important;
    font-size: 13px!important;
}

#cart_details{
    overflow-x: auto!important;
    scrollbar-width: none;
}

.card-table{
    width:160%!important;
}
.text-accent {
    font-size: 12px!important;
}

.text-break{
    width: 90%!important;
}
.btn--primary{
    padding: 6px!important;

}
.pull-right {
    float: inherit;
}

.cart-order-note{
    padding:20px;
}

.cart_information {
    overflow-x: auto;
}






.footer-link-list{
    margin-bottom:30px!important;
}

.mobile-asid{
    display:block!important;
}

.desktop-asid{
    display:none!important;
}
.j-dashborder-border {
    padding: 30px 0px;
}
.dash-view-right{
    padding:3px!important;
}
#navbar-wrapper{
    display:block!important;
}
.sidebarR {
    padding: 0px!important;
}

.t-sec-item{
    float: left;
    width: 48%;
    margin-right: 0px;
}
.t-sec {
    display: block;
    overflow:hidden;
}
.t-sec-item-collapse {
    width: 24px;
    margin-right: 0px!important;
}

.t-order-item p {
    font-size: 12px;
}
.t-order-date p {
    font-size: 12px;
}

.t-po-number p {
  font-size: 12px;
}
.t-order-amount p {
    font-size: 12px;
}

.for-glaxy-name{
    font-size: 13px;
}
/*-------------dashboard btn-----------*/
.btn-track-order {
    padding: 5px 8px!important;
    font-size: 13px;
}
.btn-generate-invoice {
    padding: 5px 8px!important;
    font-size: 13px;
    margin-bottom:10px;
}

.j-dashborder-border h2 {
    padding-left: 10px;
}
.order-cancle {
    padding: 5px 8px!important;
    font-size: 13px;
}
.btn-view {
    padding: 5px 8px!important;
    font-size: 13px;
}
.card-body {
    padding: 5px;
}

.for-tab-img{
    width: 15%;
}
.for-tab-img img{
    width:100%;
}

.text-dark{
    color:#000!important;
}
.new-traking-sec{
    padding: 10px;
}
.new-ad-mobile{
    padding: 15px;
}
.dash-right-side {
    min-height: 600px;
}
.mobile-table{
    width:180%!important;
}

.view-show-card{
    overflow-x: auto!important;
}

.carousel-control-next {
    margin-top: -17px;
    margin-right: 4px;
}
.carousel-control-prev {
    margin-left: 5px;
    margin-top: -17px;
}

.no-padding {
    margin-left: 5px;
}

.product-card .product-card-body {
    padding: 5px 5px 0px;
    min-height: 290px;
}
.product-card-hover-content {
    padding: 5px!important;
}

.product-card .product-card-footer {
    height: 70px;
}

.no-padding {
    height: 730px;
}

.cz-preview-item > img {
    width: 100%;
    height: 300px!important;
}

.footer-bottom-cont{
    padding: 0px 10px;
}

.czi-user-circle {
    margin-top: 12px!important;
}



}



.custom-cart-title span {
    font-size: 25px;
}

.pay-title {
   background-color: #ffdee3 !important;
}

.pay-title h5 {
    color: #000!important;
}

.cart-tb-head {
    font-size: 15px!important;
    background-color: #000!important;
}
.table:not(.table-dark) thead:not(.thead-dark) th {
    color: #000;
}
.text-break a{
    color: #000;
}

.tr-border {
    border: 1px solid #e5e5e5!important;
}

.custom-cart-header p{
    margin: 0px;
    font-size: 18px;
    text-align: right;
    color: #e4062b;
    font-weight: bold;
    padding-top: 10px;
}

.cart-checkout-btn{
    background: #e4062b;
    color: #fff !important;
    border-radius: 3px;
    display: inline-block;
}

.continue_shopping_btn{
    background: #000!important;
    color: #fff !important;
    border-radius: 3px;
    display: inline-block;
}
.cart_total {
    padding: 0px!important;
}

.pay-title h5 {
    font-size: 20px!important;
}

.pay-title {
    padding: 12px!important;
}
.categories-page-title h1{
    font-size: 25px;
}

.product-description h1{
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.do-want-btn {
    background-color: #e4062b!important;
    color: #fff!important;
}
/*
.checkbox-color label {
    border: 1px solid #e4062b!important;
}*/

/*.checkbox-color input:checked~label {
    background: #e4062b!important;
}*/

.checkbox-color input:checked~label:after {
    content:none!important;
}

.checkbox-color input:checked~label:after {
    font-family: "Ionicons", serif;
    position: absolute;
    content: "\2713" !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e4062b!important;
    font-size: 14px;
    
}
.checkbox-color input:checked~label {
    transform: scale(1.1);
    opacity: 1;
    border: 1px solid #e4062b !important;
}
.d-tabs li {
    border: none!important;
}

.details-tab {
    border-bottom: none;
}

.owl-carousel {
    z-index: 0;
}

.copyright{
    margin-top: 10px;
    font-size: 12px;
}

.btn-cat-search{
    background: #000;
    color: #fff;
}

.mb-20{
    margin-bottom:20px;
}
.d-tab-cont ol{
    margin-left:20px;
}
#navbar-wrapper{
    display:none;
}

.dash-view-right{
    overflow: auto;
    padding:20px;
}

.canvas-cont p{
    background: gray;
    padding: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-mt-n1{
    height: 70vh!important;
    padding-bottom:50px!important;
}



.coupon-group button {
    border: navajowhite;
    position: absolute;
    padding: 7px;
    right: 0px;
    width: 100px;
    top: 0px;
    margin-top: 0px;
    background: gray;
    color: #fff;
}

.coupon-group{
    position: relative;
}


.input_code {
    height: 35px!important;
    border-radius: 0px!important;
    padding-right: 110px;
}




.text-accent {
    font-size: 14px!important;
}

.mobile-view{
    display:none;
}

.form-content1{
    padding:20px;
}

#otp_show_button{
    padding: 6px!important;
    margin-top: 10px!important;
}


.j-google{
     padding: 6px!important;
}


.btn-facebook{
    padding: 6px!important;
}
.email_signin_required{
    padding: 6px!important;
}
.btn-google,.email_signup_required{
    background: #fff;
    padding: 6px!important;
}






#wrapper {
  padding-left: 0;
  transition: all 0.5s ease;
  position: relative;
}

#sidebar-wrapper {
    z-index: 000;
    position: absolute;
    left: 0;
    width: 0;
    transition: all 0.5s ease;
}

#wrapper.toggled #sidebar-wrapper {
  width: 250px;
}

.sidebar-brand {
  position: absolute;
  top: 0;
  width: 250px;
  text-align: center;
  padding: 20px 0;
}
.sidebar-brand h2 {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.sidebar-nav {
  position: absolute;
  top: 75px;
  width: 250px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-nav > li {
  text-indent: 10px;
  line-height: 42px;
}
.sidebar-nav > li a {
  display: block;
  text-decoration: none;
  color: #757575;
  font-weight: 600;
  font-size: 18px;
}
.sidebar-nav > li > a:hover,
.sidebar-nav > li.active > a {
  text-decoration: none;
  color: #fff;
  background: #F8BE12;
}
.sidebar-nav > li > a i.fa {
  font-size: 24px;
  width: 60px;
}

#navbar-wrapper {
    width: 100%;
    position: absolute;
    z-index: 2;
}
#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}
#navbar-wrapper .navbar {
  border-width: 0 0 0 0;
  background-color: #eee;
  font-size: 24px;
  margin-bottom: 0;
  border-radius: 0;
}
#navbar-wrapper .navbar a {
  color: #757575;
}
#navbar-wrapper .navbar a:hover {
  color: #F8BE12;
}

#content-wrapper {
  width: 100%;
  position: absolute;
  /*padding: 15px;*/
  top: 100px;
}
#wrapper.toggled #content-wrapper {
  position: absolute;
  margin-right: -250px;
}

@media (min-width: 992px) {
  #wrapper {
    padding-left: 250px;
  }
  
  #wrapper.toggled {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 250px;
  }
  
  #wrapper.toggled #sidebar-wrapper {
    width: 60px;
  }
  
  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -190px;
}
  
  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -190px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 60px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 60px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #wrapper {
    padding-left: 60px;
  }

  #sidebar-wrapper {
    width: 60px;
  }
  
#wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
}
  
  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 250px;
  }
}

@media (max-width: 767px) {
  #wrapper {
    padding-left: 0;
  }

  #sidebar-wrapper {
    width: 0;
  }

  #wrapper.toggled #sidebar-wrapper {
    width: 250px;
  }
  #wrapper.toggled #navbar-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #wrapper.toggled #content-wrapper {
    position: absolute;
    margin-right: -250px;
  }

  #navbar-wrapper {
    position: relative;
  }

  #wrapper.toggled {
    padding-left: 250px;
  }

  #content-wrapper {
    position: relative;
    top: 0;
  }

  #wrapper.toggled #navbar-wrapper,
  #wrapper.toggled #content-wrapper {
    position: relative;
    margin-right: 250px;
  }
}


/*----------------EMI Price----------*/
.emi-price{
    overflow: hidden;
}


.emi-price h3{
    float: left;
    font-size: 17px;
    color: #e4062b;
    margin-right: 9px;
}


.emi-price span{
    color: gray;
}

.emi-price-box a{
    color: #e4062b!important;
    border: 0.5px solid #e4062b;
    padding: 3px 10px;
    font-size: 13px;
    font-weight: normal;
}

.emi-modal-sec{
    height: 420px;
    display: flex;
    margin: 10px;
}

.emi-modal-bank{
    width: 42%;
    border-right: 1px solid #0000001f;
}

.emi-modal-bank ul{
    list-style:none;
    width: 96%;
}

.emi-modal-bank ul li a{
    display: block;
    padding: 10px 0px;
    border-bottom: 1px solid #0000001f;
}

.emi-modal-bank ul li a:hover {
    background: #0000001f;
}

.emi-modal-price{
    width: 58%;
}
/*----------------categories pages-----------*/

 .categories-page-sec h1{
    font-size: 25px;
    text-transform: uppercase;
    padding-left: 10px;
    margin-bottom: 20px;
    color: gray;
}

.categories-inner {
    position: relative;
    width: 95%!important;
    overflow: hidden;
    margin: 0px auto;
}
.cat-slide{
    width: 3%!important;
}

.categories-page-sec{
    box-shadow: 0px 0px 5px grey;
    padding: 20px 0px;
    background: #fff;
}




.slide-box-item a{
    display: flex;
}

.slide-box-item1 {
    width: 30%;
    text-align: center;
}

.slide-box-item1 img{
    width:80%!important;
}
.slide-box-item1 p{
    margin: 0px;
    font-size: 12px;
}

.slide-box-item2 p{
    margin: 0px;
    font-size: 12px;
}

.slide-box-item2 img{
    width:80%!important;
}

.sub-categories-box{
    border: 1px solid #0000001f;
    padding:10px;
    margin: 10px;
}

.cat-main-heading{
    font-size: 20px;
    color: #e4062b!important;
    padding: 20px 10px;
    display: inline-block;
}



.categories-main-cat{
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.sub-cat-list-box-list ul li a{
    display: inline-block;
    padding: 4px 0px;
    color: gray!important;
    font-size: 13px;
}

.sub-cat-list-box-list ul li a:hover {
    color: #e4062b!important;
}

.sub-cat-list-box-list ul{
    list-style: none;
}

.justify-content-between{
    margin-top: 8px;
}





.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}

.descrip {
	font-size:12px;
	color:#999;
}


.nesttabs a.nav-link {
	 background-color: #eef1f6;
    border-bottom: 1px solid #cfd6e1;
    border-left: 1px solid #cfd6e1;
    border-radius: 0px;
    color: #000!important;
    z-index: 1;
    padding: 15px 16px!important;
    text-align: left;
	
}

.emi-tab{
    background: #f3f5f9!important;
}

.nesttabs a.nav-link.active.show {
	background-color:#FFF;
	z-index:10000;
	box-shadow:0px 18px 12px -12px rgba(226, 231, 237, 1);
	border-right:#FFF;
	font-size: 14px!important;
    padding: 10px!important;
}
.page{
    width: 100%;
}

.nesttabs{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.modal_tab{
    margin-right: 20px;
}

.password-toggle-btn {
    top: 63%!important;
}


/*-----------quotation success page-------------*/
.quot-succe-box{
    text-align: center;
    padding: 40px 0px;
    background: #fff;
    border: 0.5px solid #d2d1d1;
    margin: 30px 0px;
}

.quot-succe-box h1{
    font-size: 23px;
    font-weight: bold;
    margin-bottom:40px;
}
.quot-succe-box h2{
    font-size: 23px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 30px;
}


.quot-succe-box p{
    font-size: 17px;
}

.quot-succe-box a{
    background: #e4062b;
    font-size: 18px;
    text-decoration: none;
    color: #fff!important;
    font-weight: 600;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 5px;
}

.carousel-control-prev{
    margin-bottom: 18px;
}
.carousel-control-prev{
    margin-bottom: 18px;
}

.carousel-control-next{
    margin-bottom: 18px;
}

.flash-deals-box{
     background: #fff;
    display: flex;
    padding: 10px;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 5%);
}

.flash_deal_title{
    margin-right: 30px;
    color: #e4062b;
}

.clon{
    color: red;
}

.bs-example {
    margin: 0px!important;
}

/*.bs-example a{
    display: block;
    border: 1px solid #8888883b;
    margin: 10px 0px;
    border-radius: 5px;
    padding: 9px;
}*/
.bs-example a {
    border: 1px solid #8888883b;
    margin: 10px 0px;
    border-radius: 5px;
    padding: 9px;
    height: 64px;
    display: grid;
    justify-content: center;
}

.dreek-ads-sec{
    background: #fff;
    padding: 35px 0px;
    overflow: hidden;
}

.sec-heading{
    font-size:25px;
}

.nav-right{
    display: flex;
    flex-wrap: wrap;
}
.nav-right-menu a{
    padding: 19px 10px;
    display: inline-block;
}
#cart_items{
    padding: 9px 0px;
    margin-left: 20px;
}



/*=========================mega============*/

a{
    text-decoration: none;
}

.navbar {
    position: sticky;
    z-index: 1;
}

.menu-large {
  position: static !important;
}

.megamenu {
  padding: 20px 20px;
  width: 100%;
}

.megamenu > div > li > ul {
  padding: 0;
  margin: 0;
}

.megamenu > div > li > ul > li {
  list-style: none;
}

.megamenu > div > li > ul > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: normal;
}

.megamenu > div > li > ul > li > a:hover,
.megamenu > div > li > ul > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  color: #999999;
}

.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
  cursor: not-allowed;
}

.megamenu.dropdown-header {
  color: #428bca;
  font-size: 18px;
}

/*.nav-link {
    color: #000!important;
}*/

.megamenu {
    position: absolute;
    width: 95%;
    left: 0px;
    right: 0px;
    margin: 0px auto;
    background: #fff1f3;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px!important;
}

.nav-brand-name {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand-name a {
    padding: 0px 15px;
    text-align: center;
    width: 11%;
    margin-bottom: 15px;
}

.nav-brand-name a img{
    width: 70px;
}

.nav-brand-name a p {
    margin: 0px;
    font-size: 14px;
    margin-top: 15px;
    color:#000;
}

.appended-form-control{
    border-radius: 20px!important;
}

.my_account a{
    color:#fff!important;
}

.navbar-brand img{
    width:150px;
}

.jb-search{
    position: relative;
}


.s-icon {
    position: absolute;
    right: 0;
    top: 0px;
    color: red;
    background: #ffdee3;
    height: 100%;
    width: 50px;
    text-align: center;
    padding: 9px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.search-bar-input:focus {
    border-color: #fff!important;
}

.color-red{
    color: #007284 !important;
}

.navbar-tool-icon {
    font-size: 20px;
    line-height: 16px;
    margin-right: 20px;
}


.mob-btm-home{
    display:none;
}

.mob-btm-shop{
    display:none;
}

.mob-btm-acount{
    display:none;
}

.mob-cart-text{
    display:none;
}

.carousel-indicators {
    bottom: -36px;
}
.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    height: 10px;
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 40px !important;
}

.owl-dots{
    display:none;
}

.d-add-to-cart{
    padding: 8px 6px !important;
    width: 140px;
}
.d-buy-now {
    padding: 8px 6px !important;
    width: 140px;
}

.dreekk-header{
    padding: 5px 0px;
   background: #007284;
    z-index: 999;
    position: relative;
}
.cz-preview-item.active {
    
    z-index: 0;
}

@media (max-width: 768px) {
  .megamenu {
    margin-left: 0;
    margin-right: 0;
  }
  .megamenu > li {
    margin-bottom: 30px;
  }
  .megamenu > li:last-child {
    margin-bottom: 0;
  }
  .megamenu.dropdown-header {
    padding: 3px 15px !important;
  }
  .navbar-nav .open .dropdown-menu .dropdown-header {
    color: #fff;
  }
}

.mob-b{
    display:none;
}


@media only screen and (max-width: 767px) {
    
.mob-b{
    display:block;
}

.desk-b{
    display:none;
}


    .add-to-cart {
    font-size: 10px;
}

.buy-now {
    font-size: 10px;
}

.grid-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.footer-item {
    width: 50%;
    margin-bottom: 20px;
}
footer .footer-newsletter {
    padding: 0px 10px;
}
.drekk-footer-bottom a {
    padding: 5px 10px;
}

.main-cat-item a{
    display: block;
    width: 110px;
}

.main-cate {
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  overflow: auto;
  padding: 25px 0px;
  justify-content: left;
}
.main-cate::-webkit-scrollbar {
  display: none; 
}
.main-cat-item {
    width: 95px;
}

.j-cat-icon {
    width: 75px;
    height: 75px;
    padding: 10px;
    border-radius: 5px;
}
.main-cat-item a p {
    font-size: 13px;
}

.navbar-brand img {
    width: 100px;
}
.s-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    color: red;
    width: 35px;
}

.dreekk-header{
    position: fixed;
    z-index: 99;
    width: 100%;
}

.navbar-sticky {
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 9999;
    padding: 0px;
} 

.mob-btm-item{
    display: inline-block;
    text-align: center;
}
.mob-btm-item a{
    display: inline-block;
    padding: 15px 0px;
            color: #fff;
}
.mob-btm-item a p{
    margin:0px;
    color: #fff;
}

.nav-right-menu{
    display:none;
}

.nav-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px 25px;
    width: 100%;
    background: #e4062b;
}
#cart_items {
    padding: 0px 0px;
    margin-left: 0px;
}
#cart_items {
    padding: 0px;
    margin-left: 0px;
}
.navbar-tool-icon {
    margin-top: 0px !important;
    line-height: 20px;
    margin-right: 0px;
    color: #fff;
}

.navbar-tool.dropdown::before {
    display:none;
}
.ml-3{
    margin-left: 0px !important;
}

.navbar-tool-icon-box {
    line-height: 20px;
}
.mob-cart-text{
    display:block;
}
.mob-b-cart{
    top: 10px !important;
    right: -7px !important;
}
.home-slider{
    margin-top: 67px;
}
footer .footer-copyright {
    padding: 20px 0;
    margin-bottom: 75px;
}
/*.owl-theme .owl-nav{
    display: none;
}*/
.product-card .product-card-body {
    min-height: 226px !important;
}
.action-wrapper {
    gap: 5px;
}
.product-card .product-card-footer {
    padding: 0px 5px;
}
.owl-item{
    margin-right: 6px;
}
.navbar-tool .navbar-tool-label {
    position: absolute;
    top: 12px !important;
    right: -12px !important;
    
}
.btn-scroll-top.show {
    right: 0.5rem;
    bottom: 85px;
    background: #ffcdd4;
}

.btn-scroll-top i{
    color:#000;
}

.cz-product-gallery {
    padding-right: 0px;
}
.mob-top{
    margin-top:80px;
}

.custom-cart-header p {
    font-size: 15px;
    padding-top: 2px;
}
.custom-cart-title span {
    font-size: 18px;
    font-weight: bold;
}
.continue_shopping_btn {
    padding: 10px 10px;
    margin-right: 8px;
}
.j-social li a {
    font-size: 12px !important;
    width: 25px;
    height: 25px;
    border-radius: 20px;
}
.j-social li:not(:last-child) {
    margin-right: 5px;
}

.mobail-pre-order-sec{
    display:block;
}
#sidebar-wrapper {
    width: 250px;
    display: none;
}
#wrapper {
    padding-left: 0px;
}
.navbar-inverse{
    display: none;
}

.j-dashborder-border {
    border: 0px!important;
}

.dash-right-side {
    min-height: auto;
}
#offcanvasToggle{
    margin-left: 10px;
    color: #fff;
}
.d-add-to-cart, .d-buy-now {
    font-size: 13px !important;
}
.d-action-wrapper{
    gap: 15px;
}


}



.all_order{
    background: #EAF7E9;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}

.complete_order{
    background: #FFF3EB;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}


.pro_order{
    background: #EAF7E9;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}

.canceled_order{
    background: #ffdee3;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}

.pending_order{
    background: #FFF3EB;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 8px;
}
.j-dash-card {
    display: flex;
    gap: 20px;
    align-items: center;
}
.j-d-card-text{
    text-align: left;
}

.j-d-card-text h4{
        margin: 0px;
}
















.mega-dp{
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 30px;
}

.custom-dropdown-header{
    margin-bottom: .25rem;
    padding-top: .425rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid #e3e9ef;
    font-weight: 500;
}

.custom-dropdown-header a{
    font-size: 14px;
    color: #e4062b;
}

/*.dropdown-item{
    padding:0px;
}*/

.dropdown-item ul{
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.dp-sub-item a{
    display: inline-block;
    color: #000;
    font-size: 13px;
    padding: 4px 0px;
}

.dp-sub-item a:hover{
    color: red;
}

.features {
    margin-bottom: 15px;
}

/*===================new cart details==============*/
.new-cart-p-items {
    display: flex;
    gap: 20px;
    padding: 15px 10px;
    border-bottom: 1px solid #d4d4d4;
}
.new-cart-p-cont h3{
    font-size: 15px;
    margin: 0px;
}

.new-cart-p-cont{
    width: 100%;
}

.new-cart-p-cont h3 a{
    display: inline-block;
    color: #000;
    margin-bottom: 10px;
}
.new-cart-p-cont-items {
    display: flex;
    gap: 60px;
}

.new_cart_btn a{
    padding: 10px 40px !important;
}

.cart_contune_shopping{
    color: #e4062b;
    border-radius: 0px;
    font-weight: bold;
    font-size: 16px;
}


.cart_contune_shopping:hover{
    color: #e4062b;
}
.text-danger {
    color: #e4062b!important;
    margin-top: 10px;
}
.cart-header {
    background-color: #ffdee3!important;
    padding: 14px!important;
}

.checkout-box{
    background: #ffdee3;
    padding: 30px;
}

.checkout-header h3{
    font-size: 25px;
    margin-bottom: 30px;
}


.cus-form-check{
    border: 1px solid #c2c2c2;
    display: block;
    padding: 8px 31px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.check-place-order{
    background: #e4062b;
    color: #fff;
    border-radius: 0px;
    padding: 8px 30px;
    margin-top:20px;
}

.check-place-order:hover{
    background: #e4062b;
    color: #fff;
}

.new-order-details-item{
    display: flex;
    border-bottom: 1px solid #d6d6d6;
    padding: 15px 0px;
    gap: 20px;
}


.new-order-details{
    margin: 0px 14px;
}

.mr-right{
    margin-right: 7px;
}

.new-order-list-item{
    border-bottom: 1px solid #d3d3d3;
    padding: 15px;
}

.all-span span{
    color: #4b566b;
    margin-right: 15px;
}

.all-span{
    margin-bottom: 6px;
}

.new-order-list-box{
    display: none;
}

.mobile-ads{
    display:none;
}


@media only screen and (max-width: 767px) {
    .new-cart-p-cont-items {
    display: block;
}
.spinbutton-wrapper {
    justify-content: flex-start;
}
.new-cart-p-cont h3 a {
    font-size: 14px;
}
.new-cart-p-items {
    gap: 9px;
    padding: 10px 8px;
}
.new_cart_btn{
    display: flex;
    justify-content: space-between;
}

.new-feature_header{
    margin-top: 70px;
}
.dash-right-side {
    padding-left: 0px;
}
.j-round {
    margin-bottom: 20px;
}

.for-mobile-glaxy {
    width: 100%;
    text-align: center;
    display: flex !important;
    justify-content: space-between;
    padding: 0px 6px;
    margin-bottom: 20px !important;
    margin-left: 0;
}
.d-genaret-invoice {
    background-color: #2a3f64;
    border-color: #2a3f64;
    color: #fff !important;
    padding: 7px 5px !important;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}
.order-cancle{
   margin-bottom: 10px; 
   font-size: 13px;
}
 .dashboard-track-order{
     margin-bottom: 10px;
     font-size: 13px;
 }
 
 .new-order-list-box{
    display: block;
}
.desk-oder{
    display:none;
}
.mob-btm-item a i{
    color: #fff!important;
}
.mob-btm-item a svg{
    color: #fff!important;
}
.sec-heading {
    padding-left: 6px;
}
.mp-0{
    padding:0px;
}
.p-mp-0{
    padding-right: 5px;
    padding-left: 8px;
}

.product-card .product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.owl-dots {
    display: block;
}
.owl-stage {
    height: 308px;
}
.owl-nav .owl-next {
    right: -10px!important;
}
.mobile-ads{
    display:block;
}
.desk-ads{
    display:none;
}
}












@media only screen and (max-width: 360px) {
.input-group-overlay {
    width: 55% !important;
}
    .bg-light {
    background-color: transparent !important;
}
.navbar-sticky {
        position: fixed;
        bottom: 0px;
        width: 100%;
        z-index: 9999;
        padding: 0px;
    }
.sec-heading {
    padding-left: 6px;
}
.mp-0{
    padding:0px;
}
.p-mp-0{
    padding-right: 5px;
    padding-left: 5px;
}
.owl-dots {
    display: block;
}
.owl-stage {
    height: 308px;
}
/*.owl-nav .owl-next {
    right: -22px!important;
    color: #fff !important;
}*/
.owl-nav button {
    margin-right: 10px !important;
}

}




.owl-nav.disabled {
    display: block!important;
}

.toast-top-right{
    margin-top:60px;
    color:green;
}

.color_tooltip{
    display:none;
}

.color_tooltip {
    position: absolute;
    background-color: #ffdee3;
    color: #000;
    padding: 3px;
    border-radius: 2px;
    font-size: 9px;
    top: -25px;
    left: -38px;
    min-width: 100px;
}

/* Show the color_tooltip when the input is checked */
input[type="radio"]:checked + label .color_tooltip {
    display: inline-block; /* Or 'block' based on your design */
}


.color_tooltip{
    
}
.color_tooltip::before {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 44px;
    width: 13px;
    height: 13px;
    background-color: rgb(255 222 227);
    transform: rotate(45deg);
    z-index: -1;
}


.checkbox-color input:checked~label:after {
    font-family: "Ionicons", serif;
    position: absolute;
    content: "\2713" !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   color: #fff !important;
    font-size: 14px;
    font-weight: bold;
}

#buzz table td, #discription table td, #quicklinks table td {
    border: 0px;
    border-bottom: 1px solid #efefef;
}


.d-tab-cont table td[colspan="2"] {
    background-color: #ffdee3;
    font-size: 17px;
}
.d-tab-cont table td[colspan="2"] p{
    margin:0px;
}


/*==================Product details gallery=================*/
.product-description{
    padding-left: 30px;
}


@media (max-width: 768px) {
  
  .product-description{
    padding-left: 0px;
}
}













