/* Basic Styling */
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  font-family: "Poppins";
}

.container {
  max-width: 2200px;
  margin: 0 auto;
  display: flex;
}

/* Columns */
.left-column {
  width: 50%;
  position: relative;
}

.right-column {
  width: 50%;
}
.produc-detail.MuiBox-root.css-0 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.left-column.MuiBox-root.css-0 {
  width: 100%;
  flex-basis: 50%;
}
.left-column img {
  width: 80%;
}
.right-column {
  width: 100%;
  flex-basis: 50%;
}

.left-column img.active {
  opacity: 1;
}

/* Product Description */
.product-description {
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 20px;
}
.product-description span {
  font-size: 12px;
  color: #358ed7;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.product-description h1 {
  font-weight: 300;
  font-size: 52px;
  color: #43484d;
  margin: 10px 0;
}
.product-description p {
  font-size: 16px;
  font-weight: 300;
  color: #86939e;
  line-height: 24px;
}

/* Product Color */
.product-color {
  margin-bottom: 30px;
}

.color-choose div {
  display: inline-block;
}

.color-choose label span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 50%;
}

/* Cable Configuration */
.cable-choose {
  margin-bottom: 20px;
}

.cable-choose button {
  border: 2px solid #e1e8ee;
  border-radius: 6px;
  padding: 13px 20px;
  font-size: 14px;
  color: #5e6977;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.5s;
}

.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
  border: 2px solid #86939e;
  outline: none;
}

.cable-config {
  border-bottom: 1px solid #e1e8ee;
  margin-bottom: 20px;
}

.cable-config a {
  color: #358ed7;
  text-decoration: none;
  font-size: 12px;
  position: relative;
  margin: 10px 0;
  display: inline-block;
}
/*---------------------------------*/

/* Product Price */
.product-price {
  display: flex;
  align-items: center;
}

.product-price span {
  font-size: 26px;
  font-weight: 300;
  color: #43474d;
  right: auto;
  margin-right: 20px;
}

.cart-btn {
  background-color: #7dc855 !important;
  border-radius: 6px !important;
  font-size: 16px !important;
  color: #ffffff !important;
  padding: 10px 30px !important;
}

.cart-btn-not-active {
  border-radius: 6px !important;
  font-size: 16px !important;
  padding: 10px 30px !important;
}

/* Responsive */
@media (max-width: 940px) {
  .container {
    /* flex-direction: column;
    margin-top: 60px; */
  }

  .left-column,
  .right-column {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .left-column.MuiBox-root.css-0 {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
  }
  .left-column img {
    width: 100%;
  }
  .right-column {
    width: 100%;
    flex-basis: 90%;
  }
  .right-column {
    flex-basis: 100%;
    margin-top: 30px;
  }
  .product-description h1 {
    font-size: 32px;
  }
}
