#catalog_stat {
  color: #0f427a;
  font-size: 15px;
  padding-bottom: 0.5rem;
}
.catalog_options_container {
  display: flex;
  flex-direction: column-reverse;
}

#catalog_options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

#catalog_options fieldset {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: baseline;
}

#catalog_options label {
  color: #868686;
  padding: 0.2rem 0.8rem;
  font-size: 12px;
}

#catalog_options select {
  outline: none;
  border: 1.5px solid #0f427a;
  border-radius: 1rem;
  background: transparent;
  color: #0f427a;
  font-family: inherit;
  padding: 0.5rem;
  font-size: 15px;
}

.catalog_option_sticky {
  z-index: 100;
  position: sticky;
  border-radius: 0.5rem;
  justify-content: end !important;
}

.catalog_option_sticky #catalog_stat {
  display: none;
}

.layout_side_menu.catalog_option_sticky {
  background-color: white;
}

.catalog_option_sticky #catalog_options {
  background-color: white;
  box-shadow: 0px 0px 15px 5px #00000010;
}

.catalog_option_sticky fieldset {
  flex-direction: row !important;
  align-items: center !important;
}

.product_related_items {
  margin-top: 2rem;
}

.product_related_items > p {
  color: #0f427a;
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 1rem;
}

.product_flag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
}

#product_stock {
  margin-bottom: 1rem;
}

.product_flag img {
  height: 2rem;
}

.product_flag p {
  color: #333333;
  font-weight: 400;
  line-height: 1em !important;
}

.product_menu_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap:0.5rem;
}

#product_selector {
  width: fit-content;
}

.product_property_dropdown {
  min-width: 100px;
  border-radius: 1rem;
  border: 1px solid #10437a;
}

.product_menu_sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  gap: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: 0.3s ease-in-out;
}

.product_to_cart_sticky {
  margin-top: 0 !important;
  width: fit-content !important;
  padding: 0.4rem 0.6rem;
  color: white;
  text-transform: uppercase;
  border-radius: 1rem;
  background-color: #10437a;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.product_menu_sticky.visible {
  transform: translateY(0%);
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

@media screen and (min-width: 1024px) {
  #catalog_stat {
    font-size: 18px;
  }

  #catalog_options {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0.5rem;
  }

  #catalog_options label {
    font-size: 15px;
  }

  #catalog_options select {
    font-size: 17px;
  }

  .catalog_options_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-direction: row;
  }

  .product_flag {
    max-width: 30%;
    margin-bottom:0;
  }

  #product_stock {
    margin-bottom: 0rem;
  }

  .product_menu_sticky {
    justify-content: center;
  }
}
