.mr-auto, .mx-auto {
  margin-right: 0 !important;
}

section.about_section.layout_padding {
  padding-bottom: 20px !important;
}

.user_option .mycart_link:after{
  content:attr(value);
  font-size:12px;
  color: #fff;
  background: red;
  border-radius:50%;
  padding: 0 5px;
  position:relative;
  left:-8px;
  top:-10px;
  opacity:0.9;
}

.fly-cart{
  z-index: 9999;
  /*   transition: 2s; */
  fliter: brightness(200%);
  width:5px;
}

.floating-cart {
  position: fixed;
  z-index: 5000;
  right: 0px; /*or left: 0px; (if you want to use cart on the left side of the browser)*/
  padding: 10px 10px;
  color: #fff;
  background-color: #222831;
  top: 0px;
  border-right: 0px;
  width:100%;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}


.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 7px solid #ddd;
  border-top-color: #ffbe33;
  animation: loading 1s linear infinite;
}
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}