/* Styles for disabled javascript */

html, body
{
    width: 100%;
    height: 100%;
}

/* Message styling */

.noscript-message
{
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #2a80ca;
    color: white;
    opacity: 0.75;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem;
    width: 100%;
}

.noscript-message .js-disabled-top-label
{
    font-size: 1.5rem;
}

.noscript-message .link-to-js-enable
{
    color: white;
    border-bottom: 1px solid #8ecbff;
    text-decoration: none !important;
}

.noscript-message .link-to-js-enable:hover
{
    color: white !important;
}
