.sw-stipe-form-container {
    display: flex;
    justify-content: center;
    height: 100vh;
    position: relative;
    align-items: center;
    background-color: #f0f0f0;
}

form#don-form {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    height: max-content;
    padding: 20px;
    background-color: white;
}

form#don-form h1,
form#don-form h2,
form#don-form h3,
form#don-form h4,
form#don-form h5,
form#don-form h6,
p {
    text-align: center;
    color: #005679;
}
.sw-upcase{
    text-transform: uppercase;
}

.sw-stripe-form {
    max-width: 100%;
    width: 100%;
    padding: 8px;
}

.sw-payer-id {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.sw-payer-id div {
    width: 100%;
    margin: 5px 0;
    position: relative;
}

.sw-payer-id div input,
.sw-form-flex div input {
    width: 100%;
    outline: none;
    border-width: 0px;
    padding: 15px 20px;
    background-color: #f0f0f0;
    max-height: 50px;
    border-radius: 0;
    font-size: 0.9rem !important;
    color: #9b9b9b;
}

.sw-form-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sw-form-flex div {
    width: calc(50% - 4px);
}

.amount-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 18px !important;
}

.amount-selection button.sw-pay-value {
    width: calc(25% - 2px);
    padding: 10px 22px;
    max-height: 50px;
    border-width: 0px;
    /* border: 1px solid #ccc; */
    background-color: #f0f0f0;
    color: #ccc;
    outline: none;
    font-size: 0.9rem !important;
}

.amount-selection .sw-pay-value:hover,
.amount-selection .sw-pay-value.active {
    color: #005679;
}

.card-element {
    display: block;
    padding: 12px 14px;
    /* border: 1px solid #ccc; */
    background-color: #f0f0f0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 20px;
    min-height: 50px;

}

.pay-check-box {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 0 4px;
}

.pay-check-box input {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    color: #ccc;
}

.sw-payment {
    padding: 0 4px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.sw-payment button {
    padding: 10px 22px;
    max-width: 100%;
    width: 100%;
    max-height: 50px;
    color: white;
    background-color: #005679;
    font-size: 0.99rem !important;
}

.sw-payment button:disabled {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

/*Context display*/
#sw-give-overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    flex-direction: column;
}


/* Custom checkBox */
.sw-custom-chackbox {
    padding: 0 10px;
}

.sw-checkbox-container {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 0.9rem;
    color: gray;
}

.sw-checkboxs {
    /* border: 1px solid gray; */
    width: 25px !important;
    height: 25px !important;
    position: relative;
    cursor: pointer;
    background-color: #f0f0f0;
    margin-right: 10px;
}



.sw-checkboxs svg {
    width: 100% !important;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: all .3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.sw-checkboxs svg path{
    fill: #9b9b9b;
}

.sw-checkboxs.active svg {
    opacity: 1;
}