.cookie-css-loaded {
    display: none;
    content: "successful"
}

.cookie-banner {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.cookie-banner .cookie-banner-wrapper {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 10px 20px rgba(199, 166, 27, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;

    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr fit-content(200px);
    font-family: "Prompt";

    width: max(600px, 50vw);
}

.cookie-banner .cookie-banner-wrapper label {
    grid-column: span 2 / span 2;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
}

.cookie-banner .cookie-banner-wrapper p {
    font-size: 12px;
    line-height: 1.2;
    color: #757575;
    max-width: 400px;
    margin-bottom: 0;
}

.cookie-banner .cookie-banner-wrapper a {
    font-size: 12px;
    line-height: 1.2;
    text-decoration-line: underline;
    color: #00916E;
    cursor: pointer;
}

.cookie-banner-btn {
    background: linear-gradient(114.89deg, #FFCF00 -2.03%, #FF8200 87.96%);
    border-radius: 50px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #FFFFFF;
    border: none;
    width: 80px;
    height: 28px;
    text-align: center;

    align-self: flex-end;
}

.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: auto;
    visibility: hidden;
}

.cookie-popup-content {
    background-color: #fff;
    max-width: 90%;
    height: fit-content;
    margin: 5rem 0;
    border-radius: 15px;
    border: 1px solid #707070;
    padding: 1rem;
    position: absolute;
}

.cookie-popup-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    background: #C8102E;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-popup-content h3 {
    font-family: "Prompt";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 1rem;
}

.cookie-popup-content .cookie-popup-sub {
    font-family: "Prompt";
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    color: #757575;
    margin-bottom: 1rem;
}

.cookie-popup-detail {
    padding: 0.5rem;
    background: #F8F8F8;
    border-radius: 10px;
}

.cookie-popup-detail label {
    font-family: "Prompt";
    font-weight: bold;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
}

.cookie-popup-detail p {
    font-family: "Prompt";
    font-weight: normal;
    font-size: 10px;
    line-height: 15px;
    color: #000000;
    margin-bottom: 1rem;
}

.cookie-popup-close {
    margin-top: 1rem;
    font-size: 1rem;
    color: #00916e;
    text-align: center;
    display: flex;
    justify-content: center;
}

.cookie-popup-blocker {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: ' ';
    /* -1 from propmotion-popup z-index (9999) */
    z-index: -1;
}

@media screen and (min-width:768px) {
    .cookie-banner .cookie-banner-wrapper label {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .cookie-banner .cookie-banner-wrapper a, .cookie-banner .cookie-banner-wrapper p {
        font-size: 14px;
    }
}
