.message {
    opacity: 0;
    position: fixed;
    bottom: -100%;
    right: 30px;
    transition: all .3s ease;
    overflow: hidden;
}

.message.open {
    opacity: 1;
    bottom: 30px;
    height: auto;
    overflow: visible;
    transition: all .3s ease;
    z-index: 2;
}

.message button {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 40px;
    cursor: pointer;
    z-index: 9999999;
}

.bt-noir {
    background-color: #000;
    font-size: 20px;
    padding: 6px;
}

.bt-noir, .menuToggle button {
    border: 0;
    color: #faf5f3;
    font-weight: 700;
    mix-blend-mode: hard-light;
}

.medium {
    font-size: 20px;
    line-height: 30px;
}