.shadow {
  box-shadow: 0px 1px 7px -1px rgba(132, 128, 128, 0.72);
}
.fast {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.purchase-options {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  font-family: inherit;
  max-width: 600px;
  list-style-type: none !important ;
  padding-left: 0px;
}
.purchase-options aside {
  font-family: inherit;
  text-transform: uppercase;
  width: 100%;
}
.purchase-options a {
  font-family: inherit;
  margin-top: 5px;
  width: 48%;
  color: #fff;
  display: block;
  max-width: 300px;
  background: #888;
  margin-bottom: 10px;
  font-weight: bold !important;
  text-align: center;
  padding: 10px 15px;
  border-radius: 0;
}
.purchase-options a:hover {
  background: red;
}
.purchase-options a.current {
  outline: 2px solid #888;
}
form.cart {
  max-width: 680px;
}
form.cart table.variations tbody {
  display: flex;
  flex-direction: column;
}
form.cart table.variations tr {
  display: flex;
  flex-direction: row;
}
@media (max-width: 759px) {
  form.cart table.variations tr {
    flex-wrap: wrap;
  }
}
form.cart table.variations td:first-child {
  text-align: left;
  width: 200px;
  display: inline-block;
}
form.cart table.variations .label {
  text-align: left;
  width: 200px;
  display: inline-block;
}
form.cart table.variations th.label {
  text-align: left;
  width: 125px;
  display: inline-block;
}
form.cart table.variations td {
  flex-grow: 1;
}
@media (max-width: 759px) {
  form.cart table.variations {
    flex-wrap: wrap;
  }
  form.cart table.variations td {
    width: 100% !important;
  }
  form.cart table.variations td.value {
    margin-bottom: 10px;
  }
}
form.cart .options-container {
  margin-top: 20px;
  flex-wrap: wrap;
  order: 3;
}
form.cart .options-container td.label {
  width: 100%;
}
form.cart .options-container select#purchase-options,
form.cart .options-container .select2 {
  display: none;
}
form.cart .new-variant-swatchs {
  margin-top: 0;
}
form.cart .new-variant-swatchs li {
  margin-bottom: 5px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
}
form.cart .new-variant-swatchs li:before {
  content: '';
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  border-radius: 50%;
  border: 1px solid;
}
form.cart .new-variant-swatchs li:hover {
  text-decoration: underline;
}
form.cart .new-variant-swatchs li.is-active:before {
  background-color: #888;
}
table#purchase-options {
  width: 100%;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.147);
}
table#purchase-options tr {
  display: flex;
  flex-direction: row;
  padding-bottom: 8px;
}
table#purchase-options th.label {
  text-align: left;
  width: 115px;
  display: inline-block;
  font-family: inherit;
}
table#purchase-options td {
  flex-grow: 1;
}
table#purchase-options td select {
  display: inline-block;
  width: 100%;
}
table#purchase-options td .select2-container {
  width: 100% !important;
}
#fold-out-cart {
  position: fixed;
  height: 100%;
  right: 0;
  top: 0;
  min-width: 300px;
  width: 26%;
  display: block;
  z-index: 1400;
  background-color: #fff;
  padding: 20px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  box-shadow: 0px 1px 7px -1px rgba(132, 128, 128, 0.72);
  font-size: 16px;
}
#fold-out-cart.closed {
  right: -200%;
}
#fold-out-cart .fold-out-toggle {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  background-color: #222;
  color: #fff;
}
#fold-out-cart .fold-out-toggle:before {
  content: 'X';
  display: block;
}
#fold-out-cart p {
  margin: 10px 0;
}
#fold-out-cart ul.cart_list li.mini_cart_item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #eee;
}
#fold-out-cart ul.cart_list li.mini_cart_item:before,
#fold-out-cart ul.cart_list li.mini_cart_item:after {
  display: none;
}
#fold-out-cart .buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
