.payment {
  width: 100%;
  height: 100vh;
}
.container {
  width: 1200px;
  height: auto;
  margin: auto;
}
.payment .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 135px;
}
.payment .d-flex .payment-details {
  width: 650px;
  height: 600px;
  background-color: #2e2e32;
  padding: 10px 30px;
  border-radius: 10px;
  box-shadow: 0px 1px 3px 2px #ffffffa6;
}
.payment .d-flex .payment-details h2 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 10px 0 25px 0;
}
.payment .d-flex .payment-details p {
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}

/* payment method */
.payment .d-flex .payment-method {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.payment .d-flex .payment-method .method {
  padding: 15px 25px 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  background-color: #ffffffa6;
  border-radius: 10px;
}
.payment .d-flex .payment-method .method input[type="radio"] {
  width: 20px;
  height: 50px;
  margin-right: 10px;
}
.payment .d-flex .payment-method .method img {
  width: 70px;
  height: auto;
}

/* Card details */
.payment .d-flex .card-details .TextBox1 {
  display: flex;
}
.payment .d-flex .card-details .TextBox1 h3 {
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}
.payment .d-flex .card-details .TextBox1 input {
  font-family: "Noto Sans Khmer", sans-serif;
  width: 350px;
  height: 50px;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 25px;
  margin-right: 30px;
  border: 1px solid #fff;
  border-radius: 5px;
}
.payment .d-flex .card-details .TextBox1 select {
  font-family: "Noto Sans Khmer", sans-serif;
  width: 210px;
  height: 50px;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 25px;
  border: 1px solid #fff;
  border-radius: 5px;
  & option {
    font-size: 18px;
  }
}

.payment .d-flex .card-details .TextBox2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.payment .d-flex .card-details .TextBox2 h3 {
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}
.payment .d-flex .card-details .TextBox2 input {
  width: 265px;
  height: 50px;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 25px;
  border: 1px solid #fff;
  border-radius: 5px;
  text-align: center;
}
.payment .d-flex .card-details .TextBox2 input::placeholder {
  font-family: "Noto Sans Khmer", sans-serif;
}
.payment .d-flex .card-details .TextBox2 select {
  font-family: "Noto Sans Khmer", sans-serif;
  width: 80px;
  height: 50px;
  font-size: 18px;
  padding: 10px;
  margin-bottom: 25px;
  margin-right: 5px;
  border: 1px solid #fff;
  border-radius: 5px;
  text-align: center;
  & option {
    font-size: 18px;
    text-align: left;
  }
}

/* CVV Number */
.payment .d-flex .card-details .TextBox2 .CVV h3 {
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}
.payment .d-flex .card-details .TextBox2 .CVV input {
  font-family: "Noto Sans Khmer", sans-serif;
  width: 90px;
  height: 50px;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 25px;
  border: 1px solid #fff;
  border-radius: 5px;
  text-align: center;
}
.payment .d-flex .card-details .TextBox2 .CVV input::placeholder {
  font-family: "Noto Sans Khmer", sans-serif;
}

/* Checkbox */
.payment .d-flex .checkbox {
  display: flex;
  justify-content: left;
  align-items: center;
}
.payment .d-flex .checkbox label {
  font-size: 18px;
  color: #ffffffa6;
  text-align: center;
}
.payment .d-flex .checkbox input {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.payment .d-flex .checkbox input::placeholder {
  font-family: "Noto Sans Khmer", sans-serif;
}

/* button payment */
.payment .d-flex .button {
  padding-top: 30px;
  text-align: center;
}
.payment .d-flex button {
  width: 100%;
  font-family: "Noto Sans Khmer", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  padding: 10px 250px;
  background-color: #2dee1b;
}
.payment .d-flex button:hover {
  background-color: #78d41c;
}

/* Order summary */
.payment .d-flex .order-summary {
  width: 450px;
  height: 600px;
  background-color: #2e2e32;
  box-shadow: 0px 1px 3px 2px #ffffffa6;
  border-radius: 10px;
  padding: 20px;
}
.payment .d-flex .order-summary h2 {
  font-size: 40px;
  font-weight: 600;
  color: white;
  text-align: center;
  padding: 10px 0 25px 0;
}
.payment .d-flex .order-summary .your-order {
  display: flex;
  gap: 25px;
  padding: 10px;
  border-radius: 5px;
  background-color: #363941;
}
.payment .d-flex .order-summary .your-order img {
  width: 170px;
  height: 100px;
  border-radius: 5px;
}
.payment .d-flex .order-summary .order-info {
  width: 100%;
  height: auto;
}
.payment .d-flex .order-summary .order-info h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  color: white;
  margin-bottom: 15px;
}

/* Discount price */
/* .payment .d-flex .order-summary .order-info .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
} */
.payment .d-flex .order-summary .order-info .price .discount-percent {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #ffffffa6;
  margin-bottom: 15px;
  & span {
    background-color: #2dee1b;
    color: #161616;
    border-radius: 5px;
    padding: 2px 5px;
    font-weight: 600;
    margin-right: 10px;
  }
}
.payment .d-flex .order-summary .order-info .price .discount-price {
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 600;
}
.payment .d-flex .order-summary .order-info .price .not-discount {
  font-family: "Roboto", sans-serif;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

/* Summery */
.payment .d-flex .order-summary .summary {
  padding: 30px 5px 10px 5px;
}
.payment .d-flex .summary .diacount-code h3 {
  font-family: "Noto Sans Khmer", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
}
.payment .d-flex .summary .diacount-code .flex-input {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
}
.payment .d-flex .flex-input input {
  width: 75%;
  height: 50px;
  border-radius: 5px;
}
.payment .d-flex .flex-input input::placeholder {
  font-family: "Noto Sans Khmer", sans-serif;
  font-size: 18px;
}
.payment .d-flex .flex-input a {
  font-family: "Noto Sans Khmer", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  text-align: center;
  color: #161616;
  background-color: #2dee1b;
  width: 20%;
  height: 50px;
  border-radius: 5px;
}
.payment .d-flex .flex-input a:hover {
  background-color: #78d41c;
}

.payment .d-flex .summary .f-price {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment .d-flex .summary .f-price p {
  font-size: 18px;
  font-weight: 300;
  color: white;
}
.payment .d-flex .summary .d-percent {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment .d-flex .summary .d-percent p {
  font-size: 18px;
  font-weight: 300;
  color: white;
}
.payment .d-flex .summary .total-price {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.payment .d-flex .summary .total-price p {
  font-size: 18px;
  font-weight: 300;
  color: white;
}

.payment .d-flex .summary .points {
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(60deg, #06bfff, #2b74ff);
}
.payment .d-flex .summary .points p {
  font-size: 24px;
  font-weight: 300;
  color: white;
}
