.checkout-container {
    width: 1200px;
    margin: 20px;
    padding: 20px;
    border-radius: 6px;
    background: white;
}

@media screen and (max-width: 1200px) {
    .checkout-container {
        width: calc(100% - 20px);
    }

}

.checkout-container .checkout-content {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}


@media screen and (max-width: 724px) {
    .checkout-container .checkout-content {
        grid-template-columns: 1fr;
    }
    .checkout-container {
        padding: 10px;
    }
}

.checkout-container .checkout-content .left-side {
    width: 100%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.checkout-container .checkout-content .right-side {
    width: 100%;
    min-width: 380px;
}

@media screen and (max-width: 781px) {
    .checkout-container .checkout-content .right-side {
      min-width: 320px;
    }
}


.checkout-container .checkout-content .left-side .checkout-section {
    display: flex;
    flex-direction: column;
}

.checkout-container .checkout-content .left-side .checkout-section h3 {
    margin-bottom: 10px;
    color: #63656b;
}

.checkout-container .checkout-content .left-side .checkout-section form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}


.checkout-container .checkout-content .left-side .checkout-section form input,
.checkout-container .checkout-content .left-side .checkout-section form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    outline: none;
}

.checkout-container .checkout-content .left-side .checkout-section form button {
    background-color: #ff9000;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
}



.checkout-section .radio-input input {
    display: none;
}

.checkout-section .radio-input label {
    --border-color: #cccccc;

    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 5rem;
    margin-bottom: 1rem;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}
.checkout-section .radio-input {
    width: 100%;
}
.checkout-section .radio-input input:checked+label {
    --border-color: #ff9000;
    border-color: var(--border-color);
    border-width: 2px;
}

.checkout-section .radio-input label:hover {
    --border-color: #cccccc;
    border-color: var(--border-color);
}


.checkout-section .circle {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #cccccc;
    margin-right: 0.5rem;
    position: relative;
}

.checkout-section .radio-input input:checked+label span.circle::before {
    content: "";
    display: inline;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff9000;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.checkout-section .text {
    display: flex;
    align-items: center;
    font-size: 14px;

}



.checkout-container .checkout-content .right-side {}

.checkout-container .checkout-content .right-side .master-container {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .card {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #ccc;
    overflow: hidden;
  }
  
  .checkout-container .checkout-content .right-side .master-container .title {
    width: 100%;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-bottom: 1px solid #efeff3;
    font-weight: 700;
    font-size: 11px;
    color: #63656b;
  }
  
  /* cart */
  .checkout-container .checkout-content .right-side .master-container .cart {
    border-radius: 19px 19px 7px 7px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .products {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .products .product {
    display: grid;
    grid-template-columns: 60px 2fr 1fr;
    gap: 10px;
  }
  .checkout-container .checkout-content .right-side .master-container .cart .products .product .image {
    width: 60px;
    height: 60px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 12px;
  }
  .checkout-container .checkout-content .right-side .master-container .cart .products .product .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .products .product span {
    font-size: 13px;
    font-weight: 600;
    color: #47484b;
    margin-bottom: 8px;
    display: block;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .products .product p {
    font-size: 11px;
    font-weight: 600;
    color: #7a7c81;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .quantity {
    height: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin: auto;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    filter: drop-shadow(0px 1px 0px #efefef)
      drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .quantity label {
    width: 20px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
    font-size: 15px;
    font-weight: 700;
    color: #47484b;
  }
  
  .checkout-container .checkout-content .right-side .master-container .cart .quantity button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: none;
    background-color: transparent;
    padding-bottom: 2px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .card .small {
    font-size: 15px;
    margin: 0 0 auto auto;
  }
  
  .checkout-container .checkout-content .right-side .master-container .card .small sup {
    font-size: px;
  }
  
  /* coupons */
  .checkout-container .checkout-content .right-side .master-container .coupons {
    border-radius: 7px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .coupons form {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 10px;
    padding: 10px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .input_field {
    width: 100%;
    height: 36px;
    padding: 0 0 0 12px;
    border-radius: 5px;
    outline: none;
    border: 1px solid #e5e5e5;
    filter: drop-shadow(0px 1px 0px #efefef)
      drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  }
  
  .checkout-container .checkout-content .right-side .master-container .input_field:focus {
    border: 1px solid transparent;
    box-shadow: 0px 0px 0px 2px #242424;
    background-color: transparent;
  }
  
  .checkout-container .checkout-content .right-side .master-container .coupons form button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    gap: 10px;
    width: 100%;
    height: 36px;
    background: #ff9000;
    box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5);
    border-radius: 5px;
    border: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: #ffffff;
  }
  
  /* Checkout */
  .checkout-container .checkout-content .right-side .master-container .checkout {
    border-radius: 9px 9px 19px 19px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .details {
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 10px;
    gap: 5px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .details span {
    font-size: 13px;
    font-weight: 600;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .details span:nth-child(odd) {
    font-size: 11px;
    font-weight: 700;
    color: #707175;
    margin: auto auto auto 0;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .details span:nth-child(even) {
    font-size: 13px;
    font-weight: 600;
    color: #47484b;
    margin: auto 0 auto auto;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .checkout--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 20px;
    background-color: #efeff3;
  }
  
  .checkout-container .checkout-content .right-side .master-container .price {
    position: relative;
    font-size: 22px;
    color: #2B2B2F;
    font-weight: 900;
  }
  
  .checkout-container .checkout-content .right-side .master-container .price sup {
    font-size: 13px;
  }
  
  .checkout-container .checkout-content .right-side .master-container .price sub {
    width: fit-content;
    position: absolute;
    font-size: 11px;
    color: #5F5D6B;
    bottom: 5px;
    display: inline-block;
  }
  
  .checkout-container .checkout-content .right-side .master-container .checkout .checkout-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 36px;
    background: #ff9000;
    box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5);
    border-radius: 7px;
    border: 0;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  }

