.frontend-admin-toolbar {
    position: sticky;
    top: 0;
    z-index: 1031;
    min-height: 2.25rem;
    color: #fff;
    background: #20252a;
    font-size: .78rem;
}

.frontend-admin-toolbar .container,
.frontend-admin-toolbar-actions,
.frontend-admin-toolbar-status {
    display: flex;
    align-items: center;
	padding:5px 10px;
}

.frontend-admin-toolbar .container {
    min-height: 2.25rem;
    justify-content: space-between;
    gap: 1rem;
}

.frontend-admin-toolbar-actions {
    gap: 1rem;
}

.frontend-admin-toolbar-status,
.frontend-admin-toolbar .btn {
    gap: .4rem;
	background-color: #ffaa00 !important;
}

.frontend-admin-toolbar a:not(.btn) {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
}

.frontend-admin-toolbar a:not(.btn):hover,
.frontend-admin-toolbar a:not(.btn):focus {
    color: #fff;
    text-decoration: underline;
}

.has-admin-toolbar .site-navbar.sticky-top {
    top: 2.25rem;
}

@media (max-width: 575.98px) {
    .frontend-admin-toolbar-status {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .frontend-admin-toolbar-actions {
        width: 100%;
        justify-content: flex-end;
        gap: .75rem;
    }
}

@media print {
    .frontend-admin-toolbar {
        display: none !important;
    }

    .has-admin-toolbar .site-navbar.sticky-top {
        top: 0;
    }
}

.content-hero {
    position: relative;
    display: grid;
    min-height: clamp(17rem, 34vw, 20rem);
    overflow: hidden;
    background-color: var(--myconvento-darkblue, #002d3f);
    background-image:
        linear-gradient(135deg, rgba(0, 45, 63, .9), rgba(0, 118, 169, .9)),
        var(--content-hero-image, none);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    place-items: center;
}

.content-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.content-hero .lead {
    max-width: 62rem;
    color: rgba(255, 255, 255, .92);
}

@media (max-width: 767.98px) {
    .content-hero {
        min-height: 14rem;
    }

    .content-hero-content {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media print {
    .content-hero {
        min-height: 0;
        color: #000 !important;
        background: none !important;
    }
}
