/**
 * Rentals Unlimited Sitewide Banner
 */
.ru-banner {
    width: 100%;
    background-color: #1a3d6d;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    position: relative;
    z-index: 9999;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.ru-banner.is-hidden {
    display: none;
}

.ru-banner__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 50px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
}

.ru-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.ru-banner__text {
    font-weight: 500;
}

.ru-banner__text a {
    color: inherit;
    text-decoration: underline;
}

.ru-banner__link {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.15s ease;
}

.ru-banner__link:hover,
.ru-banner__link:focus {
    text-decoration: underline;
}

.ru-banner__close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    color: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 3px;
    opacity: 0.75;
    transition: opacity 0.15s ease, background-color 0.15s ease;
}

.ru-banner__close:hover,
.ru-banner__close:focus {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
}

@media (max-width: 600px) {
    .ru-banner__inner {
        padding: 10px 44px 10px 14px;
        font-size: 14px;
    }

    .ru-banner__content {
        gap: 8px;
    }

    .ru-banner__close {
        right: 6px;
        font-size: 24px;
    }
}
