﻿#content {
    background: #fff;
}

section {
    min-height: 65vh;
}

.card {
    border-radius: 0.25rem;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    margin-top: 10px;
    height: 100%;
}
    /* Add hover effect. */
    .card:hover {
        cursor: pointer;
        filter: brightness(0.95);
    }

/*Change colors for different card headers. */
#guestCard .card-header {
    background: linear-gradient(to bottom,#2e2656 0%, #332a60 50%, #5c5580 100%);
}

#cancelCard .card-header {
    background: linear-gradient(to bottom,#961f28 0%, #a7222c 50%, #b94e56 100%);
}

#rescheduleCard .card-header {
    background: linear-gradient(to bottom,#eb711d 0%, #ef8d4a 50%, #f3aa77 100%);
}

/* Styling for card icons. */
.card-header {
    padding: 0;
    text-align: center;
    font-size: 6rem;
    color: white;
}

.card-body {
    color: #696969;
    display: flex;
    flex-direction: column;
}

    .card-body p {
        font-size: 14px;
        margin-top: auto;
    }

.card-btn {
    width: 100%;
    text-align: center;
    border: 1px solid rgba(105,105,105,0.5);
    color: rgba(105,105,105,1);
    margin-top: 16px;
}

    .card-btn:hover {
        color: rgba(105,105,105,1);
    }

h2 {
    font-weight: 200;
    margin-bottom: auto;
    font-size: 1.25rem;
}

.wave {
    z-index: -1;
}

@@media screen and (min-width: 768px) and (max-width: 923px) {
    .card-body {
        height: auto !important;
    }
}

@@media screen and (max-width: 601px) {
    .col {
        flex-basis: auto !important;
    }

    .card {
        margin: 16px 32px 0 32px;
    }

        .card img {
            height: 144px !important;
        }

    .card-body {
        height: auto !important;
    }
}

@@media screen and (max-width: 370px) {
    h3 {
        font-size: 1.25rem !important;
    }

    p {
        font-size: 12px !important;
        margin-top: 4px !important;
    }

    .card {
        margin: 16px 16px 0 16px;
    }
}

.card-container {
    margin-bottom: 1.5rem;
}
