.popup-notice {
    position: fixed;
    bottom: 10px;
    right: 10px;
    max-width: 400px;
    background: white;
    border-radius: 8px;
    padding: 35px 30px 30px 30px;
    z-index: 999;
    box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.5s;
    transform: translateY(0);
    opacity: 1;
}

.popup-notice:not(.popup-triggered) {
    transform: translateY(120%);
    opacity: .8;
}

a.popup-notice-button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    margin-top: 10px;
    background: var(--blue-button);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
}

a.popupo-notice-button:hover {
    background: var(--blue-button-hover);
}

button.popup-notice-close {
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    transform: scale(1.4, 1);
    background-color: transparent;
}

h3.popup-notice-headline {
    margin-bottom: 8px;
    max-width: calc(100% - 20px);
}

@media (max-width:768px) {
    .popup-notice {
        right: 0;
        bottom: 0;
        width: 100%;
        border-radius: 8px 8px 0 0;
        padding: 30px 20px 20px 20px;
    }
}