.drybn-alert-bar {
    align-items: center;
    background: #b00020;
    color: white;
    left: 0;
    position: fixed;
    top: 0px;
    width: 100vw;
    z-index: 99999999;
}

.drybn-alert-bar__content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 80em;
    padding: 1em;
}

.drybn-alert-bar__overlay {
    width: 100%;
}

.drybn-alert-bar__actions {
    position: absolute;
    right: 1em;
    top: 0;
}

.drybn-alert-bar__text {
    margin: auto;
    padding-right: 48px;
}

.drybn-alert-bar a {
    color: currentColor;
    font-weight: bold;
    text-decoration: underline;
}

.drybn-alert-bar a:hover, .drybn-alert-bar a:focus {
    color: currentColor;
    text-decoration: underline;
}

.drybn-alert-bar .btn {
    background: none;
    border: none;
    color: currentColor;
    font-size: 2rem;
    min-height: 48px;
    min-width: 48px;
    outline: none;
}

.drybn-alert-bar .btn:hover {
    border: 1px solid transparent;
}

.drybn-alert-bar .btn:focus,
.drybn-alert-bar .btn:active {
    border: 1px dot-dash currentColor;
}

