﻿.pay-card {
    max-width: 400px;
    font-family: Roboto;
    border-radius: 15px;
    overflow: hidden;
    position:relative;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0, 0.3);
}

    .pay-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(125deg, rgba(255, 255, 255, 0.076) 50%, rgba(255, 255, 255, 0) 50%);
        pointer-events: none;
    }

.pay-card-header {
    padding: 20px;
    background-color: var(--excel-mid);
    color: white;
    font-size:1.5em;
}

.pay-card-header>p {
    margin-bottom:0px;
}

.pay-card-body {
    background: #e3e3e3;
    padding:20px;
    height:400px;
}

    .pay-card-body > p {
        font-size: 1.1em;
        min-height: 75px;
    }

    .pay-card-body>ul {
        margin-top:25px;
    }

        .pay-card-body > ul > li {
            margin-bottom: 20px;
            font-size: 1.2em;
        }

.pay-card-footer {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--excel-dark);
}

.pay-card-row{
    gap: 50px;
    justify-content: center;
    align-items: start;
    margin-top:50px;
}

.buy-button {
    background: var(--excel-mid);
    border: 2px solid #e3e3e3;
    color: white;
    font-size: 1.4em;
    padding: 5px 20px;
    border-radius: 5px;
    transition: 0.2s;
    opacity: 0.9;
    box-shadow: 0px 0px 5px 0px rgba(255,255,255, 0.3);
}

    .buy-button:hover {
        opacity: 1;
        box-shadow: 0px 0px 10px 0px rgba(255,255,255, 0.5);
    }

.buy-button:disabled {
    opacity: 0.5;
}

    .buy-button:disabled:hover {
        opacity: 0.5;
        box-shadow: none;
    }