.quick-exit-container {
    border-bottom: 2px solid #d6d6d6;
    background: #fff;
    z-index: 1;
}

.quick-exit-container.sticky {
    position: fixed;
    top:0;
    width:100%;
}

.quick-exit {
    max-width: 78rem;
    margin: 0 auto;
    padding:0 1rem;
    display: flex;
    gap: 1rem;
    box-sizing: border-box;
}
.quick-exit .text {
    flex: 1;
    line-height: 1.6;
    padding: 1rem 0;
}
.quick-exit > a:last-child {
    display: flex;
    align-items: center;
    background-color:  #FF0000;
    line-height: 1.6;
    padding: 1rem 1rem;
    color: #fff;
    text-decoration: none;
    outline-offset: -2px;
}

/* Site Max Width Breakpoint */
@media screen and (max-width: 78em) {
    .quick-exit {
        padding-right: 0;
    }
}
