@media (min-width: 1100px){
    .subscription-plans{display: flex;}}
    .subscription-plans button {
        flex: 1 0 0%;
        box-shadow: 0 0 6px 0px #00000052;
        border-radius: 10px;
        padding: 30px 20px;
        margin: 15px;
    }
    button.paypal-button {
    background: none;
    font-size: unset;
    text-align: unset;
    border: none;
    line-height: unset;
    letter-spacing: unset;
    display: unset;
    text-transform: none;
    text-decoration: unset;
    color: unset;
    font-weight: unset;
    }
    .subscription-plan-card img {
    width: 70px;
    }

    button.paypal-button:hover, button.paypal-button:active,button.paypal-button:focus  {
        text-decoration: none;
        color: inherit;
        background: linear-gradient(45deg, #b38c4e12, #d6b68424);
    }
    .loader-container{    display: flex;
        gap: 20px;
        background: #fffffff2;
        position: fixed;
        top: 50%;
        width: 100%;
        left: 0;
        height: 100vh;
        top: 0;
        justify-content: center;
        align-items: center;}
    .loader {
            border: 6px solid #f3f3f3;
            border-top: 6px solid #3498db;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 2s linear infinite;
        }
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
#paypal-dialog {
        max-width: 500px;
        width: 100%;
}