﻿/*
    Copyright (c) 2001 Envision Technology Partners, Inc. All rights reserved.
*/

#PageTitle {
    max-width: 60% !important;
}

.title-bar {
    background-color: white;
}

#helpButton {
    color: #3271E7;
}

/* This is for the title bar. Also when we get to the medium screen we don't want sticky any longer. Let it scroll up. */
@media (min-width: 992px) {
    /* This is for the title bar. Also when we get to the medium screen we don't want sticky any longer. Let it scroll up. */
    @supports ((position: -webkit-sticky) or (position: sticky)) {
        #TitleBarDiv {
            position: -webkit-sticky;
            position: sticky;
            top: var(--sticky-top); /* May need to experiment with this number to get it to always display right */
            z-index: 1019 !important; /* This is one below what the navbar uses .sticky-top */
        }
    }
}