﻿.productSelection-selectedProduct-main {
  text-align: center;
  border: solid #ccc 1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
}
.productSelection-selectedProduct-main div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buyout {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  color: #2C2C2C;
  gap: 20px;
  justify-content: space-between;
}
.buyout hr {
  flex: 1 1 100%;
}
.productSelection-internal {
  font-size: 14px;
}
.buyout-left {
  display: flex;
  flex-direction: column;
}
.buyout-left__h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 25px;
}
.buyout-middle-selectedProduct {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}
.buyout-middle-selectedProduct picture img {
  max-width: 100%;
}
.buyout-middle-selectedProduct-textwrap {
  max-width: 270px;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.buyout-middle-selectedProduct-textwrap__h2 {
  font-size: 18px;
  line-height: 24px;
  color: #777;
  margin-bottom: 20px;
}
.buyout-middle-selectedProduct-textwrap__h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 15px;
}
.buyout-middle-selectedProduct-textwrap__h4 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
  color: #777;
}
.buyout-middle-selectedProduct-textwrap__price {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 15px;
  color: #d7007f;
}
.buyout-right {
  max-width: 380px;
}
.buyout-right-item {
  display: flex;
  padding: 32px;
  font-size: 14px;
  border-top: solid #ddd 1px;
}
.buyout-right-item:first-child {
  padding-top: 0;
  border: none;
}
.buyout-right-item img {
  width: 50px;
  margin-right: 32px;
}
.buyout-right-item__text span {
  font-weight: 600;
  font-size: 16px;
}
.buyout-buttons {
  flex: 1 1 100%;
  align-items: center;
}
.buyout-buttons .link {
  font-size: 18px;
  line-height: 24px;
}
@media screen and (max-width: 1425px) {
  .buyout-left {
    flex: 1 1 47%;
  }
  .buyout-middle {
    flex: 1 1 47%;
    padding-right: 50px;
  }
}
@media screen and (max-width: 1000px) {
  .buyout-middle {
    padding-right: 16px;
  }
}
@media screen and (max-width: 800px) {
  .buyout-middle {
    flex: 1 1 100%;
    padding-right: 0;
  }
  .buyout-middle-selectedProduct {
    justify-content: space-around;
  }
  .buyout-right {
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .buyout-middle-selectedProduct-textwrap__h3 {
    font-size: 22px;
    line-height: 28px;
  }
  .buyout-middle-selectedProduct-textwrap__h4 {
    font-size: 16px;
    line-height: 22px;
  }
  .buyout-middle-selectedProduct {
    justify-content: center;
  }
  .buyout-middle-selectedProduct picture img {
    width: 250px;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .buyout-left {
    text-align: center;
  }
  .buyout-left label {
    text-align: left;
  }
  .buyout-left select {
    max-width: 100%;
  }
  .buyout-middle-selectedProduct {
    flex-direction: column;
  }
  .buyout-middle-selectedProduct-textwrap {
    text-align: center;
  }
  .buyout-buttons {
    text-align: center;
  }
  .buyout-right-item {
    padding-left: 16px;
    padding-right: 16px;
  }
}