   #order-form {
        width: 100%;
    }

    #order-form-inner {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .text-input {
        height: 40px;
        width: 100%;
        padding-left: 12px;
        border: 1px solid #d1d5db;
    }

    .iti {
        width: 100%;
    }

    #submit-button {
        background-color: #37ca37;
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        height: 56px;
        border: 1px solid rgba(0,0,0,.1);
        border-radius: 4px;
        font-size: 2rem;
    }

    .cart {
        font-style: italic !important;
        font-size: 20px;
        margin-right: 10px;
    }
    
    #payment-label {
        font-family: "Barlow";
        font-size: 12px;
        font-weight: 700;
        color: #626262;
    }
    
    .payment-bar {
        height: 2px;
        width: 100%;
        background-color: #e5e7eb;
    }
    
    #order-description {
        background-color: #f8efef;
        border: 2px dashed #F33A6A;
        padding: 10px;
        font-family: 'Barlow';
        font-size: 14px;
        font-weight: 400;
    }
    
    #order-description b {
        color: rgb(243, 58, 106);
        text-decoration: underline;
    }
    
    #description-button {
        background-color: #5E17EB;
        padding: 10px;
        font-family: 'Barlow';
        font-size: 18px;
        font-weight: 700;
        color: white;
        border-radius: 5px;
    }
    
    #order-form table{
        border-collapse: collapse;
        border-spacing: 0;
    }
    
    #order-form th, #order-form td {
        text-align: left;
        font-size: 13px;
        font-family: 'Barlow';
    }
    
    #order-form thead th {
        border-bottom: 2px solid #e5e7eb;
        padding-bottom: 5px;
    }
    
    #order-form tbody td {
        padding-top: 5px;
        padding-bottom: 5px;
    }
    
    #order-form .price {
        color: rgb(21, 113, 168);
        font-weight: 700;
    }
    
    #order-form .summary {
        font-family: 'Barlow';
        font-size: 13px;
        font-weight: 400;
        min-width: 90px;
    }
    
    #order-form .item {
        width: 70%;
    }
    
    #submit-button:hover {
        cursor: pointer;
    }
    
    .hidden {
        display: none;
    }
    
    .green-icon:before{
        color: green;
    }
    
    #thank-you-message {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
     
