.c-grey
{
    color: #888;
}

.border, .border-nohover
{
    border-radius: 10px;
    border: 1px solid #888;
    padding: 10px;
    transition: 1s;
    box-shadow: 2px 2px 10px #ccc;
}

.border-nohover
{
    border: 1px solid #ccc!important;
}

.border:hover
{
    border: 3px solid #ea4c89!important;
}

.bigtopmargin
{
    margin-top: 50px;
}

.card-image
{
    margin-top: -60px;
    display: block;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    transition: 1s;
}

.card-name
{
    text-transform: uppercase;
    font-size: 18px;
    font-weight: bold;
}

.hidden
{
    display: none;
}

.card-details
{
    transition: 0.8s;
    font-size: 14px;
}

.cart-button
{
    background: #ea4c89;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    border-radius: 10px;
    width: 80%;
    margin: 0 auto;
    cursor: pointer;
    transition: 1s;
}

.cart-button:hover
{
    filter: brightness(1.2);
}

.btn-pink
{
    background: #ea4c89!important;
    border: none;
    font-size: 1em;
    font-weight: bold;
    width: 100%;
}

.amountbox
{
    transition: 1s;
}

.details-button
{
    display: none;
}

.centerblock
{
    width: fit-content;
    margin: 0 auto;
}

.hideondesktop
{
    display: none;
}

.hideonmobile
{
    display: flex;
}

.smallinfo
{
    color: #aaa;
    font-size: 12px;
    font-style: italic;
}

.paddinger
{
    padding-left: 15%; 
    padding-right: 15%
}

.carddiv 
{
    margin-top: 0;
}


.warning
{
    border: 3px solid red!important;
    background: #ffe5e5;
    animation: blinker 1s linear;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}


/* MOBILE SPEC CSS */

@media only screen and (max-width: 768px) {

    .details-button
    {
        background: white;
        border: 2px solid #ea4c89;
        color: #ea4c89;
        font-weight: bold;
        text-align: center;
        padding: 5px;
        border-radius: 10px;
        width: 80%;
        margin: 0 auto;
        cursor: pointer;
        transition: 1s;
        display: block;
    }
    
    .details-button:hover
    {
        background: #ea4c89;
        color: white;
    }

    .hideondesktop
    {
        display: inline;
    }

    .hideonmobile
    {
        display: none;
    }
    
    .card-details, .guarantee, .amountbox
    {
        display: flex;
    }

    .paddinger
    {
        padding-left: 2%; 
        padding-right: 2%
    }

    .carddiv 
    {
        margin-top: 2em;
    }
}

.stripeframe{
    width: 100%;
    height: 75vh;
}