.site-change-alert {
    position: fixed;
    bottom: 5vh;
    left: 50%;
    transform: translatex(-50%);
    z-index: 100;
    padding: 8px 16px 8px 32px;
    background-color: #272727;
    border-radius: 4em;
    text-align: center;
    box-shadow: 3px 3px 4px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    transition: opacity 0.2s linear;

    &.is-hidden {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;		
    }

    &, a {
        color: #fff;
    }

    a {
        text-decoration: underline;
        text-underline-offset: 0.3em;
        font-weight: 600;

        &:hover {
            opacity: 0.7;
        }
    }

    button {
        padding: 8px;
        cursor: pointer;
        border-radius: 8px;

        * { pointer-events: none; }

        &:hover {
            background-color: rgba(255,255,255,0.1);
        }
    }

    svg {
        display: block;
    }
}