@import url('https://fonts.googleapis.com/css2?family=Fasthand&family=Hanuman:wght@100;300;400;700;900&family=Noto+Serif+Khmer:wght@800&family=Poppins:wght@400;600;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
  --font-hunuman: "Hanuman", serif;
  --border-color-grey: rgba(128, 128, 128, 0.442);
  --bg-card: #d4d4d440;
  --bg-sale: #3CB043;
  --color-green: #3CB043;
  --bg-hover-card: #bfc1be;
  --color-grey: rgba(128, 128, 128, 0.442);
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family:"Poppins", sans-serif  ,  "Fasthand", cursive;
}

.container {
  width: 1200px;
  margin: 0px auto;
}
.text-capitalize {
  text-transform: capitalize;
}
.fs-1 {
  font-size: 60px;
}
.fs-3 {
  font-size: 30px;
}
.fs-2 {
  font-size: 40px;
}
.fs-5 {
  font-size: 20px;
}
.fs-6 {
  font-size: 16px;
}
.text-muted {
  color: var(--border-color-grey);
}
.fw-bold {
  font-weight : bold;
}
.text-green {
  color: var(--color-green);
}
.text-grey {
  color: grey;
}
.bg-grey {
    background-color : var(--bg-card);
}
.bg-black {
    background-color: black;
}
.bg-green {
    background-color: var(--color-green);
}


.pe-2 {
  padding-right: 20px;
}
.pe-3 {
  padding-right: 30px;
}
.pe-4 {
  padding-right: 40px;
}
.pe-5 {
  padding-right: 50px;
}
.pe-1 {
  padding-right: 10px;
}
.ps-1 {
  padding-left: 10px;
}
.ps-4 {
  padding-left: 40px;
}
.ps-3 {
  padding-left: 30px;
}
.ps-4 {
  padding-left: 40px;
}
.ps-2 {
  padding-left: 20px;
}
.px-1 {
  padding: 0px 10px;
}
.p-3 {
    padding : 30px;
}
.p-2{
    padding : 20px;
}
.p-1{
  padding : 10px;
}
.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pt-3 {
  padding-top: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-1 {
  padding-bottom: 10px;
}
.border-bottom{
  border-bottom : 1px solid var(--border-color-grey);
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}
.pt-5 {
  padding-top: 50px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-2 {
  margin-top: 20px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}
.mb-2 {
  margin-bottom: 20px;
}
.px-2 {
  padding: 0px 20px;
}
.px-3 {
    padding: 0px 20px;
  }
.me-1 {
  margin-right: 10px;
}
.me-2 {
  margin-right: 20px;
}
.me-3 {
  margin-right: 30px;
}
.py-2 {
  padding: 20px 0px;
}
.py-3 {
  padding : 30px 0px;
}
.text-gold {
  color: gold;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.col-12 {
  width: 100%;
}
.col-10 {
  width : 80%;
}
.col-8 {
  width: 66.66%;
}
.col-3 {
  width: 25%;
}
.col-9 {
  width: 75%;
}
.col-4 {
  width: 33.33%;
}
.col-6 {
  width: 50%;
}

.col-2 {
  width: 16.66%;
}

.text-align-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.flex-direction-column {
  flex-direction: column;
}
.g-2 {
  gap: 20px;
}
 .align-item-start {
  align-items: start;
}
.align-item-center {
  align-items: center;
}
.align-item-end {
  align-items: end;
}
.text-decoration-none {
  text-decoration: none;
}
.justify-content-end {
  justify-content: end;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-between {
  justify-content: space-between;
}
.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar-order {
    display: flex;
    /* background : red ; */
    list-style-type : none;
    position: relative;
}
.navbar-order .navbar-order-item {
    display: flex;
    gap : 10px;
    flex-direction: column;
    align-items: center;
    font-size : 16px;
  
}
.navbar-order .navbar-order-item  .navbar-order-link-pagination {
  text-decoration: none;
  width : 30px;
  height : 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index : 40px;
  border : 1px solid var(--border-color-grey);
}
.navbar-order .navbar-order-item  .navbar-order-link-pagination.active {
background-color: var(--bg-sale);
color : white;
border: none;
}
.text-white {
  color  : white;
}
.text-black {
  color : black
}
.bordered {
  border: 1px solid var(--border-color-grey);
}
.line-order{
     width : 270px;
     position: absolute;
     height : 2px ;
     background : var(--color-green);
     z-index : -20px;
}
.line-order.line-1 {
    top : 14px;
    left:  165px;
}
.line-order.line-2{
    top : 14px;
    left: 465px; 
}
.line-order.line-3{
    top : 14px;
    right:165px; 
}

.payment {
    background: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width : 100%;
    height : 100%;
}
.payment .title-top-payment{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border-color-grey);
}
.payment .title-top-payment .text-title {
  font-size : 24px;

}

.payment .payment-form {
    padding : 30px;
    padding-top : 50px;
    width : 80%;
}
.payment .payment-form  .text-total {
    font-size : 16px;
}
.payment .payment-form  .credit-payment {
    display: flex;
    gap : 10px;
}
.payment .payment-form  .credit-payment .img-credit {
    width: 80px;
    height  : 40px;
    object-fit: cover;
}
.payment .payment-form  .credit-payment .img-credit img {
   object-fit: cover;
   width : 100%;
   height : 100%;
}
.payment .payment-form .input-group {
    display: flex;
    align-items: center;
    gap : 10px;
}
.payment .payment-form  .form-label {
    font-size : 14px;
    width : 100%;
}
.payment .payment-form  .form-control {
    height : 40px ;
    padding : 20px;
    outline: none;
    border : 1px solid var(--border-color-grey);
    border-radius: 5px;
    width: 100%;
}

.payment .payment-form .btn-group .btn-complete{
  width  : 160px;
  height : 40px;
  border : none;
  background: var(--color-green);
  color : white;
  font-size : 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.footer-payment {
  display: flex;
  width : 100%;
  justify-content: space-between;
  padding : 30px 0px;
  font-size : 14px;

}


.footer-payment > div {
  display: flex;
  gap : 20px;
}