.close-icon-form {
    /*font-size: 6rem;
    cursor: pointer;
    color: red;
    z-index: 2;
    */
    position: absolute;       /* Ensure it can be positioned */
    top: 10px;                /* Distance from the top */
    right: 10px;              /* Distance from the right */
    font-size: 5rem;          /* Adjust size as needed */
    cursor: pointer;
    color: greenyellow;
    z-index: 2;
}

.error-name,
.error-number,
.error-amount {
    color: red;
}

.donate-container {
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.donate-box-main {
    width: 45%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    background-image: url(../Assets/cowimage.jpg);
    background-size: cover;
    border-radius: 20px;
}

.donate-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 20px 0;
    z-index: 1;
    overflow-x: hidden;
    overflow-y: auto;
}

.background-color {
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.678);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.donate-box h1 {
    font-size: 2rem;
    font-weight: bold;
    color: orange;
    text-shadow: 0 0 20px black;
    z-index: 2;
}

.form {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    z-index: 10;
}

.form label {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: aqua;
}

.span-text {
    color: red;
}

.form label input {
    width: auto;
    height: 40px;
    font-size: 0.9rem;
    padding: 0 10px 0;
    outline: none;
    border: 1.5px outset rgb(118, 114, 114);
    border-radius: 5px;
    transition: all 0.5s;
    box-shadow: inset 0 0 2px 0 gray;
}

.form label input:hover {
    border-color: orangered;
}

.form button {
    width: auto;
    padding: 10px 30px;
    margin: 10px 0 0 0;
    font-size: 1.2rem;
    background-color: orangered;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.form button:hover {
    border-radius: 5px;
    transform: scale(0.9);
    background: transparent;
    outline: 3px outset orangered;
    color: greenyellow;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.623);
    z-index: 10;
    display: none;
    justify-content: center;
    align-items: center;
}

.loader-div {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    padding: 2px;
    border-top: 3px solid blue;
    animation: circle 1s infinite;
}

.loader-div-underdiv {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border-bottom: 2px solid orangered;
    animation: circle2 1s infinite;
}

/* Payment successfull popup  */

.successfull-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.674);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
}

.popup {
    width: 50%;
    height: 50vh;
    background: radial-gradient(circle, pink 0%, gray 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
}

.close-box-payment {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 1.4rem;
    color: red;
}

.popup p {
    font-size: 2rem;
    color: rgb(38, 241, 38);
    font-weight: bold;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.694);
    text-align: center;
}

.popup dl {
    color: black;
    text-align: center;
}

.popup dl dd {
    color: yellow;
}

.donate-box table {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    color: white;
    z-index: 10;
    font-size: 0.75rem;
    position: relative;
    font-weight: bold;
    word-spacing: 1px;
}

.donate-box thead tr {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.donate-box tbody tr {
    display: flex;
    flex-direction: column;
    align-items: end;
}


@keyframes circle {
    to {
        transform: rotate(360deg);
    }
}

@keyframes circle2 {
    to {
        transform: rotate(-360deg);
    }
}

@media screen and (max-width:1024px) {
    .donate-box-main {
        width: 60%;
    }

    .donate-box table {
        font-size: 0.68rem;
    }
}

@media screen and (max-width:768px) {

    .donate-box-main,
    .popup {
        width: 75%;
    }

    .donate-box table {
        font-size: 0.63rem;
    }

}

@media screen and (max-width:550px) {

    .donate-box-main,
    .popup {
        width: 95%;
    }

    .donate-box h1 {
        font-size: 1.8rem;
    }

    .form {
        padding: 20px 0px;
    }

    .form label,
    .form label input {
        font-size: 0.8rem;
    }

    .form button {
        font-size: 0.9rem;
    }
}

/* Qr Code Css  */
.main-box-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.qr-image {
    width: 200px;
    height: 200px;
}

.links-image {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.links-image-main {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.qr-image img,
.links-image img {
    width: 100%;
    height: 100%;
}

.form p {
    color: white;
    text-align: center;
}
.form a{
    text-decoration: none;
    display: flex;
    flex-direction: column;
}



@media screen and (max-width:768px) {
    .links-image {
        width: 70px;
        height: 70px;
    }
}

/* Qr Code Css  */