.floating_cart {
  width: 100%;
  height: 80px;
  background: #f8f8f4;
  -webkit-box-shadow: 0px -3px 5px rgba(0,0,0,0.161);
          box-shadow: 0px -3px 5px rgba(0,0,0,0.161);
  position: fixed;
  bottom: 0px;
}
.floating_cart_inner {
  width: 1180px;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px;
}
.floating_cart_left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60px 1fr;
  grid-template-columns: 60px 1fr;
  gap: 0 1em;
}
.floating_cart_img {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.floating_cart_img img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}
.floating_cart_misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.floating_cart_name {
  font-size: 18px;
  font-weight: 600;
}
.floating_cart_spec {
  font-size: 14px;
  font-weight: 300;
}
.floating_cart_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.floating_cart_fav {
  position: relative;
}
.floating_cart_fav button {
  display: table-cell;
  vertical-align: middle;
  font-size: 0;
  width: 50px;
  height: 50px;
  border: none;
  background-color: #f2f2f0;
  color: #333;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.floating_cart_fav button.is-registered,
.floating_cart_fav button:hover {
  color: rgba(200,16,46,0.7);
}
.floating_cart_fav button:before {
  content: "\02665";
  font-size: 20px;
}
.floating_cart_fav-balloon {
  position: absolute;
  bottom: calc(100% - 8px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  white-space: nowrap;
  min-width: 20px;
  padding: 10px;
  border-radius: 6px;
  opacity: 1;
  z-index: 32767;
  text-align: left;
  font-size: 12px;
  border: 1px solid #777;
  -webkit-box-shadow: #555 4px 4px 4px;
          box-shadow: #555 4px 4px 4px;
  color: #fff;
  background: #333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, visibility 0.1s ease-in-out;
}
.is_balloon .is-animating .floating_cart_fav-balloon {
  visibility: visible;
  opacity: 1;
}
.floating_cart_fav-balloon:before,
.floating_cart_fav-balloon:after {
  content: '';
  display: block;
  position: absolute;
  height: 0px;
  width: 0px;
  border-style: solid;
  -o-border-image: initial;
     border-image: initial;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.floating_cart_fav-balloon:before {
  border-width: 8px 5px 0px;
  border-color: #777 transparent transparent;
}
.floating_cart_fav-balloon:after {
  border-width: 6px 3px 0px;
  border-color: #333 transparent transparent;
}
.floating_cart_review {
  width: 125px;
  height: 50px;
}
.floating_cart_review a {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #ceb48c;
  color: #fff;
  text-decoration: none;
}
.floating_cart_btn {
  width: 350px;
  height: 50px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  outline: none;
  border: none;
  background: #c6112f;
  cursor: pointer;
}
.floating_cart_btn.is_disabled {
  color: #fff;
  background: #adadad;
  pointer-events: none;
}
