body.home, body.catalog {
  background-color: #d1d5db;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-image: url("/images/white-simple-textured-design-background.jpg");
  background-size: contain;
  padding-bottom: 60px;
}

.card-img-top {
  height: 400px;
  object-fit: cover;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}
.cart-item img {
  border: 1px solid #ddd;
  border-radius: 4px;
}

.col-md-3.product-card[data-status*="Sold"] {
  display: none;
}
p.card-text {
  font-size: 13px;
}

img.logo {
  width: 200px;

  display: block;
}

@keyframes flashBackground {
  0% {
    background-color: #ea2461;
  }
  50% {
    background-color: black;
  }
  100% {
    background-color: #ea2461;
  }
}

span.On.Sale.overlay {
  display: block;
  position: absolute;
  font-size: 14px;
  top: -1px;
  text-transform: uppercase;
  left: -1px;
  background: #ea2461;
  color: white;
  padding: 5px 10px;
  font-weight: bolder;
  animation: flashBackground 0.5s infinite;
}

span.On.Sale.overlay {
  display: block;
  position: absolute;
  font-size: 15px;
  top: -1px;
  left: -1px;
  background: #198754;
  color: white;
  padding: 5px 18px;
  font-weight: bolder;
  animation: flashBackground 1s infinite;
}

span.category.badge.bg-secondary {
  display: none;
}

a.BuyNow {
  text-decoration: none;
  background: #ea2461;
  color: white;
  padding: 5px 10px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 50%;
  font-size: 12px;
}
a.BuyNow:hover {
  background: black;
  color: white;
  text-decoration: none;
}

button.btn.btn-sm.btn-primary.add-to-cart {
  background: #0e101a;
  border: unset;
  padding: 5px 10px;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  font-size: 12px;
  color: white;
  padding: 5px 10px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 50%;
}
button.btn.btn-sm.btn-primary.add-to-cart:hover {
  background-color: #ea2461;
}

.buttons {
  display: flex;
}

.col-md-3.product-card[data-category*="Purse"] span.size {
  display: none;
}
.header {
  display: none;
}

.header .print-logo {
  width: 300px;
  display: block;
  margin: 0 auto;
}
.header h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 25px;
}
@media print {
  .cart-buttons,
.cart div#cart-items button.remove-item,
  .social-block,
  .disclaimer {
    display: none;
  }

  .prices {
    text-align: right;
  }
  .header {
    display: block;
  }
}

.card-item strong {
  font-size: 25px;
}

body {
  margin: 0 auto !important;
}

h3#total {
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}
#cart-count.cart-animate {
  animation: pop 0.8s ease-in-out;
}
.cart-item small {
    font-size: 10px;
    background: #ea2461;
    color: white;
    padding: 2px;
    margin: 2px;
    border-radius: 81px;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.9);
  }
  100% {
    transform: scale(1);
  }
}

a#cart-icon.btn-outline {
  color: #ea2461;
  border: 1px solid #ea2461;
}
#cart-count.badge-danger {
  color: #fff;
  background-color: #ea2461;
}

button#clear-cart {
  background: #ea2461;
  color: white;
  padding: 5px 10px;
  border: none;
}

button#print-cart {
  background: black;
  color: white;
  padding: 5px 10px;
  border: none;
}

.navbar-light .navbar-brand {
  background: #ea2461;
  color: white !important;
  padding: 5px 10px;
  font-size: 16px;
}

h5.card-title {
  min-height: 33px;
}

.col-md-3.product-card {
  margin: 5px 0;
}

/* From Uiverse.io by PapaUiiss404 */
.social-block .card {
  width: fit-content;
  height: fit-content;
  background-color: rgb(238, 238, 238);
  display: flex;
  flex-direction: row;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: unset;
  gap: 12px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.social-block .socialContainer {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ea2461;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  transition-duration: 0.3s;
}
/* instagram*/
.social-block .containerOne:hover {
  background-color: #d62976;
  transition-duration: 0.3s;
}
/* twitter*/
.social-block .containerTwo:hover {
  background-color: #00acee;
  transition-duration: 0.3s;
}
/* linkdin*/
.social-block .containerThree:hover {
  background-color: #0072b1;
  transition-duration: 0.3s;
}
/* Whatsapp*/
.social-block .containerFour:hover {
  background-color: #128c7e;
  transition-duration: 0.3s;
}

.social-block .socialContainer:active {
  transform: scale(0.9);
  transition-duration: 0.3s;
}

.social-block .socialSvg {
  width: 17px;
}

.social-block .socialSvg path {
  fill: rgb(255, 255, 255);
}

.social-block .socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.social-block.sticky-bottom {
  position: fixed;
  z-index: 3;
  right: 6px;
  bottom: 10px;
}

@media (max-width: 1199px) {
  .buttons {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .buttons a,
  button.btn.btn-sm.btn-primary.add-to-cart {
    width: 100%;
  }
  .col-md-3.product-card {
    -ms-flex: 0 0 33.33%;
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  h5.card-title {
    min-height: 15px;
  }
}

@media (max-width: 991px) {
  .card-img-top {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .container.mt-3 div#product-list .col-md-3.product-card {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  img.logo {
    width: 120px;
    display: block;
  }

  .card-img-top {
    height: 215px;
  }
  .col-md-3.product-card .card img.card-img-top {
    width: 30%;
  }

  .col-md-3.product-card .card {
    flex-direction: row;
  }
  .buttons {
    flex-direction: row;
  }
  .buttons a,
  button.btn.btn-sm.btn-primary.add-to-cart {
    width: 50%;
  }

  span.On.Sale.overlay {
    font-size: 10px;
    top: 9px;
    right: 9px;
    left: unset;
  }
}

.home .main-slideshow img
{
  width: 100%;
}

@media (max-width: 991px)
{
  .home .main-slideshow img
  {
    content: url("/images/slideshow/slide-1-mobile.jpg");
  }
}

.cart div#cart-items button.remove-item {
    border: unset;
    background: none;
    color: grey;
    font-size: 23px;
    /* height: unset; */
    line-height: unset;
    padding-right: 10px;
}

.cart div#cart-items button.remove-item:hover span
{
  color: red;
}

.main-slideshow {
    display: flex;
    width: 100%;
}

.main-slideshow  .slides {
    width: 70%;
}

.main-slideshow  .index-cta {
    width: 30%;
}

.main-slideshow  .index-cta ul.button-list {
    padding: 0;
    list-style: none;
}

.main-slideshow  .index-cta ul.button-list li.list-item
{
    text-align: center;
    color: white;
    background: #ea2461;
    
}
.main-slideshow .index-cta ul.button-list li.list-item a {
    padding: 47.5px 0;
    display: block;
}

.main-slideshow .index-cta ul.button-list li.list-item a
{
    color: white;
    text-decoration: none;
    font-weight: bolder;
    text-transform: uppercase;
}

.main-slideshow  .index-cta ul.button-list li.list-item:hover
{
  
    color: white;
 background: #000;   
   
}
@media (max-width: 1199px)
{
  .main-slideshow .index-cta ul.button-list li.list-item {
    padding: 30.7px 0;
}
}
@media (max-width: 991px)
{
  .main-slideshow {
    flex-wrap: wrap;
  }
  .main-slideshow .index-cta, .main-slideshow .slides
  {
    width: 100%
  }

  .main-slideshow ul.button-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  
}
 .main-slideshow .index-cta ul.button-list li.list-item 
{
    width: 50%;
   
}
}

@media (max-width: 767px)
{

   .main-slideshow .index-cta ul.button-list li.list-item {
    width: 100%;
    padding: 15px 0;
}
}


main.container {
    padding-top: 20px;
}