/*
.loader {
    width: 70px;
    height: 30px;
    overflow: hidden;
    position: relative;
}
.loader:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius:50%;
    inset:0;
    margin:auto; 
    background: #000;
    transform-origin: bottom;
    animation: l10-1 3s infinite;
}
.loader:after {
    content: "";
    position: absolute;
    width:8px;
    height:14px;
    bottom:calc(50% - 4px);
    background: #000;
    animation: l10-2 3s infinite;
}
*/
.loader{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
}
.glass{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

#paypal-button-container .paypal-buttons {
    height: 1rem !important;
}