/**
 General additional css - cross section

 Seperate files for each section on its own TBA

 2023 onward - pjc

*/


.hideThis {
    display: none;
}

.relative-position {
    position: relative;
}

.color-red {
    color: red;
}

.pad-3 {
    padding: 3px;
}

.mar-r-40 {
    margin-right: 40px;
}

.global-alert {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: auto;
    background-color: rgba(240, 64, 51, 0.25);
    color: #fff;
    z-index: 9999;
    text-align: center;
    font-size: 0.7em;
    letter-spacing: 2px;
    pointer-events: none;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
    font-weight: 600;
    padding: 3px 10px;
    display: inline-block;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.fullscreen-feed .global-alert {
    display: none;
}

.global-alert-browser {
    position: fixed;
    top: 0;
    width: 100%;
    display: block;
    background-color: #e64431;
    color: #fff;
    z-index: 9999;
    text-align: center;
    font-size: 0.8em;
    letter-spacing: 2px;
    pointer-events: none;
}

.global-alert small {
    display: block;
    margin-top: -5px;
    padding-bottom: 2px;
}