/**
Styles for products_product.html
 */
.quantity-variants {
  margin-right: auto !important;
  margin-left: auto !important;
  max-height: 5rem !important; }
  .quantity-variants .stock {
    width: 6rem;
    white-space: nowrap;
    position: relative;
    top: -18px;
    color: #1AC2A6; }
    .quantity-variants .stock.no-stock {
      color: #F44336; }
    .quantity-variants.avoid-qtybuttons .stock.no-stock {
      top: 25px !important;}
  .quantity-variants .qtybutton {
    height: 5rem;
    line-height: 5rem;
    /* Avoid selectable text*/
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none; }

.product-order-table.table tbody td {
  padding: 0.5rem 0.5rem; }

/**
Styles for products_sidebar.html
 */
input.sidebar-price {
  height: 3rem;
  font-size: 1.2rem;
  border: 0;
  border-bottom: 1px solid #a3a3a3;
  width: 16.5rem;
  text-align: left;
  padding: 1rem 0;
  background-color: transparent;
  transition: all .3s ease-out;
  font-weight: 300;
  max-width: 100%;
  color: #111111; }

.product-widget__list #id_colors li,
.product-widget__list #id_sizes li {
  display: inline-block;
  min-width: 30%;
  padding-right: 10px; }

/* LOADER ELLIPSIS USED IN PRODUCTS FEED*/
.loader-ellips {
  font-size: 20px;
  /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto; }

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite; }

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0; }

.loader-ellips__dot:nth-child(3) {
  left: 1.5em; }

.loader-ellips__dot:nth-child(4) {
  left: 3em; }

@keyframes reveal {
  from {
    transform: scale(0.001); }
  to {
    transform: scale(1); } }

@keyframes slide {
  to {
    transform: translateX(1.5em); } }

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal; }

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide; }

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse; }

/* END LOADER ELLIPSIS USED IN PRODUCTS FEED */

.searchform-products{
    background-color: #efefef;
    display: block;
    padding: 5px;
    border-radius: 50px;
    width: 180px;
    height: 40px;
    line-height: 30px;
    text-align: left;
    margin-right: 15px;
}

.searchform-products button {
  display: inline;
  width: 20px;
  border: 0px;
  padding: 0px;
  margin: 0px;
  background: transparent;
  height: 20px;
  line-height: 20px;
  padding-left: 6px;
  box-sizing: content-box;
  top: 2px;
  position: relative;
}

.searchform-products input {
  display: inline-block;
  width: 100px;
  padding: 0px;
  border: 0px;
  background: transparent;
  font-size: 14px;
}

.breadcrumb-area h1.page-title {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0px;
}

/*.product-navigation{
  display: inline-block;
  vertical-align: top;
  height: 30px;
  padding: 5px;
  padding-right: 10px;
  margin: 5px;
  box-sizing: content-box;
  background-color: #efefef;
}
.product-navigation span{
  display: inline-block;
  height: 30px;
  vertical-align: top;
}*/

.product-navigation-wrapper{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  width: 100%;
}

.product-navigation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
    padding: 5px 8px;
    margin-right: 1%;
    text-decoration: none;
    color: black;
    width: 49%;
    border-radius: 5px;
}

.product-navigation .arrow {
    font-size: 20px;
    margin: 0px;
}

.product-navigation.prev .arrow {
    margin-right: 10px;
}

.product-navigation.next .arrow {
    margin-left: 10px;
}