.product_view {
  width: 90vw;
  height: 450px;
  border: 1px solid #e7e7ea;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 4.5vw;
}
.product_view * {
  transition: all ease-in 0.1s;
}
.product_view .product_images {
  justify-content: space-around;
  align-self: center;
  padding: 4.5vw;
  padding-bottom: 0;
}
.product_view .product_images img {
  height: 85.5vw;
  width: 85.5vw;
}
.product_view .product_information {
  display: flex;
  flex-direction: column;
}
.product_view .product_information * {
  display: flex;
  margin: 10px;
  justify-content: center;
}
.product_view .product_information .title {
  font-size: 1.25em;
  margin: 10px 10px 0;
}
.product_view .product_information .price {
  flex-direction: row;
  font-size: 1.5em;
  margin: 0 10px;
  color: #0f0f0f;
}
.product_view .product_information .price .old {
  text-decoration: line-through;
  color: #4a4a4a;
}
.product_view .product_information .price .sale {
  color: #e52728;
}
.product_view .product_information .stock {
  margin: 0 10px 10px;
}
.product_view .product_information .stock p {
  text-align: center;
  margin: 0 10px;
}
.product_view .product_interact {
  display: flex;
  flex-direction: row;
}
.product_view .product_interact * {
  font-size: 1em;
  width: 90vw;
  height: 67.5px;
}
.product_view .product_interact label {
  display: none;
}
.product_view .product_interact input {
  height: 65.5px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product_view .product_interact input::-webkit-outer-spin-button,
.product_view .product_interact input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product_view .product_interact .add_to_cart_quantity {
  width: 27vw;
}
.product_view .product_interact .quantity_buttons {
  width: 9vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product_view .product_interact .quantity_buttons button {
  width: 9vw;
  color: #ceab61;
  background-color: #e7e7ea;
}
.product_view .product_interact .quantity_buttons button:hover {
  background-color: #4a4a4a;
}
.product_view .product_interact .quantity_buttons button:active {
  background-color: #2b2b2b;
}
.product_view .product_interact button {
  display: flex;
  align-content: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  border: none;
  border-top: 1px solid #e7e7ea;
  align-items: center;
}
.product_view .product_interact button img {
  border-right: 1px solid wheat;
  padding-right: 0.5em;
  height: 2em;
  width: 2em;
}
.product_view .product_interact button.product_read_more {
  color: #242424;
  background-color: #e7e7ea;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  font-weight: bold;
}
.product_view .product_interact button.product_read_more img {
  filter: invert(7%) sepia(10%) saturate(6%) hue-rotate(327deg) brightness(105%) contrast(85%);
}
.product_view .product_interact button.product_read_more:hover {
  background-color: #ceab61;
  color: #242424;
}
.product_view .product_interact button.product_read_more:hover img {
  filter: invert(7%) sepia(10%) saturate(6%) hue-rotate(327deg) brightness(105%) contrast(85%);
}
.product_view .product_interact button.product_read_more:active {
  background-color: #8a713b;
  color: #242424;
}
.product_view .product_interact button.product_read_more:active img {
  filter: invert(7%) sepia(10%) saturate(6%) hue-rotate(327deg) brightness(105%) contrast(85%);
}
.product_view .product_interact button.add_to_cart {
  width: 54vw;
  color: #242424;
  background-color: #ceab61;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
  font-weight: bold;
}
.product_view .product_interact button.add_to_cart img {
  filter: invert(7%) sepia(10%) saturate(6%) hue-rotate(327deg) brightness(105%) contrast(85%);
}
.product_view .product_interact button.add_to_cart:hover {
  background-color: #242424;
  color: #fff;
}
.product_view .product_interact button.add_to_cart:hover img {
  filter: invert(90%) sepia(93%) saturate(28%) hue-rotate(195deg) brightness(107%) contrast(100%);
}
.product_view .product_interact button.add_to_cart:active {
  background-color: #0f0f0f;
  color: #fff;
}
.product_view .product_interact button.add_to_cart:active img {
  filter: invert(98%) sepia(1%) saturate(335%) hue-rotate(201deg) brightness(92%) contrast(100%);
}
