.fixed_cart {
  position: fixed;
  right: 80px;
  bottom: 80px;
  z-index: 9;
}

.fixed_cart__link {
  font-size: 2.4rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  color: #ff9800;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  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;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.fixed_cart__link:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 480px) {
  .fixed_cart {
    right: 5%;
    bottom: 60px;
  }
  .fixed_cart__link {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}

/*# sourceMappingURL=../map/fixed_cart.css.map */
