﻿/* From Uiverse.io by 00Kubi */
#paymentModal {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.19);
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.redirect-card {
    width: 550px;
    height: 220px;
    background-color: rgb(31, 41, 55, 1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align:center;
    padding: 20px 20px;
    gap: 13px;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
    z-index:99999;
}

#cookieSvg {
    width: 180px;
    height:50px;
    margin: 15px;
}

.cookieHeading {
    font-size: 1.8em;
    font-weight: 800;
    color: white;
}

.cookieDescription {
    text-align: center;
    font-size: 0.8em;
    font-weight: 600;
    color: white;
}

    .cookieDescription a {
        --tw-text-opacity: 1;
        color: #3b82f6;
    }

        .cookieDescription a:hover {
            text-decoration-line: underline;
        }

.buttonContainer {
    display: flex;
    gap: 20px;
    flex-direction: row;
}

.acceptButton {
    width: 80px;
    height: 30px;
    background-color: #7b57ff;
    transition-duration: 0.2s;
    border: none;
    color: #f1f1f1;
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px #977ef3, 0 2px 4px -1px #977ef3;
    transition: all 0.6s ease;
}

.declineButton {
    width: 80px;
    height: 30px;
    background-color: #dadada;
    transition-duration: 0.2s;
    color: #2e2e2e;
    border: none;
    cursor: not-allowed;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px #bebdbd, 0 2px 4px -1px #bebdbd;
    transition: all 0.6s ease;
}

    .declineButton:hover {
        background-color: #ebebeb;
        box-shadow: 0 10px 15px -3px #bebdbd, 0 4px 6px -2px #bebdbd;
        transition-duration: 0.2s;
    }

.acceptButton:hover {
    background-color: #9173ff;
    box-shadow: 0 10px 15px -3px #977ef3, 0 4px 6px -2px #977ef3;
    transition-duration: 0.2s;
}


@media (max-width: 768px) {
    .redirect-card {
        width: 350px;
    }
    #cookieSvg {
        width: 150px;
        height: 40px;
        margin: 5px;
    }
    .cookieHeading {
        font-size: 1.4em;

    }

    .cookieDescription {
        font-size: 0.9em;
    }
}