#cookie-banner {
    position: fixed;
    top: 100%;
    left: 1pc;
    transform: translateX(calc(-100% - 1pc)) translateY(calc(-100% - 1pc));
    width: 320px;
    aspect-ratio: 1/1;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 1pc;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0 3px #676767;
    transition: 1s transform ease, .4s opacity ease, .4s visibility ease;
}

#cookie-banner.active {
    transform: translateX(0) translateY(calc(-100% - 1pc));
    opacity: 1;
    visibility: visible;
}

#cookie-banner .cnt {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: .7pc;
    width: 100%;
    height: 100%;
    padding: 1pc;
}

#cookie-banner .cnt .icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

#cookie-banner .cnt .name p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
}

#cookie-banner .cnt .comment p {
    font-family: "Quicksand", sans-serif;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.25pc;
    color: white;
}

#cookie-banner .cnt .comment a {
    font-weight: 900;
    color: var(--pink);
}

#cookie-banner .cnt .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1pc;
    width: 100%;
}

#cookie-banner .cnt .buttons .button {
    flex: 1;
    padding: .5pc;
    text-align: center;
    border-radius: .5pc;
    cursor: pointer;
    transition: .2s ease;
}

#cookie-banner .cnt .buttons .button:hover {
    transform: translateY(-5%);
    filter: brightness(120%);
}

#cookie-banner .cnt .buttons .button:active {
    transition: .1s ease;
    transform: translateY(0%);
}

#cookie-banner .cnt .buttons .button:nth-child(1) {
    background-color: var(--effect-color);
}

#cookie-banner .cnt .buttons .button:nth-child(2) {
    border: 1px solid rgba(255, 255, 255, 0.8);
}

#cookie-banner .cnt .buttons .button p {
    font-family: "Quicksand", sans-serif;
    font-size: .8rem;
    font-weight: 900;
    color: white;
}