.c_topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.c_topbar svg {
    width: 30px;
    height: 30px;
    opacity: .5;
}

.c_topbar .light-mode-img {
    max-width: 85px;
}
.checkout-page {
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    position: relative;
}
 .checkout-page:before{
    content: "";
    position: absolute;
    background: #f8f2f0;
    border-left: 1px solid #fbdcd2;
    width: 100%;
    max-width: 50%;
    height: 100%;
    right: 0;
    top: 0;
 }
.coupan-inline .form-control {
    background: #fff;
}
.checkout-right-inner {
    color: #000;
    font-weight: 400;
    max-width: 450px;
}
.right-checkout {
    background: #f6f4f2;
    display: flex;
    justify-content: start; 
    padding: 35px;
    border-left: 1px solid #efe1d3;
}

.left-checkout { 
    display: flex;
    justify-content: end;
    padding: 35px;
}
.left-checkout-container {
    padding-right: 30px;
}
.checkout-inner {
    
    max-width: 1100px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #000;
    border-radius: 8px;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    border: 2px solid #fff;
}
.checkout-cart {
    position: relative;
    margin-right: 15px;
}

.checkout-cart img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    border: 2px solid #fff;
}
.cart-data a {
    font-size: 14px;
    font-weight: 400;
}

.cart-data p {
    margin-bottom: 0;
    font-size: 12px;
}

.checkout .form-control:not(.border-primary) {
    font-size: 14px;
    background: transparent;
    border: 1px solid #c9c9c9 !important;
    border-radius: 8px;
}
.checkout .form-check-input[type="checkbox"] {
    border-radius: 0.25em;
    border: 1px solid #ccc;
    border-radius: 3px !important;
}

.payment-card {
    background: rgb(248 242 240 / 51%);
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    color: #000;
    font-weight: 400;
}

.pay-header {
       display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
    background: #f8f2f0;
}

.pay-header img {
    width: 130px;
    height: auto;
}

.pay-header p {
    margin: 0;
    font-size: 12px;
}

.pay-body {
    padding: 30px;
    text-align: center;
}

.pay-body svg {
    width: 120px;
    height: 60px;
    margin-bottom: 20px;
}

.pay-body p {
    margin: 0 auto;
    font-size: 13px;
    max-width: 300px;
}

.radio-box{
    background:#fff;
    margin-top: 15px;
    border: 1px solid #ccc;
    border-radius:10px;
    overflow: hidden;
  }

  .choice{
    display:flex;
    align-items:center;
    gap:10px;
    padding: 15px;
    border-radius: 0;
    cursor:pointer;
    background: #ffffff;
    /* overflow: hidden; */
  }

  /* custom radio */
  .choice input{
    appearance:none;
    width:18px;
    height:18px;
    border:2px solid #ccc;
    border-radius:50%;
    position:relative;
  }
  .choice input:checked{
    border-color:#6b614f;
    box-shadow: inset 0 0 0 5px #6b614f;
  }

  .choice span{
    font-size:14px;
  }

  /* toggle div */
  .toggle-box{
    padding: 15px;
    background: rgb(248 242 240 / 51%);
    display: none;
    border-top: 1px solid #ccc;
  }
  .choice.active {
  background: #f8f2f0;
}
.choice:first-child{
     border-bottom: 1px solid #ccc;
}

.toggle-box .form-control:not(.border-primary){
     background: #fff !important;
}

@media (max-width:767px) {
   .checkout-page:before{
    display: none;
}
.checkout-page {
    padding: 25px;
} .left-checkout-container {
    padding-right: 0;
} 
.position-sticky.top-0.px-5 {
    padding: 0 !important;
}

.checkout-right-inner .px-9 {
    padding: 0 !important;
}
}
