
/* better_togeather */
.bt_top_shadow {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
  height: 41px;
  position: relative;
  top: 60px;
}

.bt_bot_shadow {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.31);
  height: 41px;
  position: relative;
  bottom: 60px;
}

#better_together {
  display: flex;
  flex-direction: column;
}

.better_together_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.better_together_box .bt_middle_section .discount, .better_together_box .bt_middle_section .new_price {
  margin: 0 0 5px;
}

.better_together_box .bt_middle_section .old_price {
  margin: 0;
}

.better_together_box .item {
  text-align: center;
}

.better_together_box .bt_product {
  display: flex;
  margin-bottom: 20px;
  padding: 20px;
  gap: 15px;
  border-radius: 5px;
  border: 1.5px solid var(--color-light);
  text-align: center;
}

.better_together_box .bt_product:hover {
  border-color: var(--color-hover);
}

.better_together_box .bt_product .new_price {
  font-size: 18px;
  text-align: start;
}

.better_together_box .name,
.better_together_box .model_product {
  font-size: 12px;
  color: #000;
  text-align: start;
} 

.better_together_box .bt_product > div {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 10px;
}
.bt_product {
  width: 50%;
}
.bt_product .p_img_href {
  /* display: none; */
  height: 170px;
  width: 160px;
}
.bt_product img {
  max-height: 100px;
  max-width: 100px;
  width: 100px;
  height: 100px;
}
.bt_product .image div {
  display: flex;
  justify-content: center;
}

.btogether-plus {
  text-align: center;
  font-size: 30px;
  color: #000;
}


.together {
  display: flex;
  align-items: center;
}

.together-order {
  display: flex;
  align-self: flex-end;
  align-items: center;
  gap: 40px;
  flex: 1;
  
}

.together-order > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.together-order p {
  font-size: 24px;
  margin: 0;
}

.together-order .old_price {
  font-size: 20px;
}

.together-order button {
  background-color: var(--color-blue);
}

.together-order button:hover {
  background-color: var(--color-blue);
  opacity: .9;
}

@media screen and (max-width: 991px) {
  .bt_product {
    width: 100%;
    gap: 15px;
  }
  .together {
    flex-direction: column;
  }

  .better_together_box .together .bt_product {
    margin: 0;
  }
  .together-order {
    flex-direction: column;
    gap: 20px !important;
    width: 100%;
  }
  .together-order div {
    width: 100%;
  }
}