*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
    font-size: 12px;
}
body{
    background: #021227;
    font-family: Arial;
    font-weight: bold;
    margin:0;
}
header{
    font-weight: 500;
    color: white;
    background: #041E42;
    font-weight: bold;
    font-size: 2rem;
    width: auto;
    height: auto;
}
.appname{
    font-size: 1.167rem;
    padding-left: 1rem;
}
#header{
    display: flex;
    position: sticky;
    height: 4rem;
    color: white;
    background: rgb(4,30,65);
    padding: 0.833rem 0 0.5rem 0;
}
#headertext{
    margin: 0 1rem;
    vertical-align: middle;
    height: 50%;
}
#oxp{
    height: 3.333rem; /* 40px */
}
#appbutton{
    padding: 3px 0;
}
#linkbutton{
    padding: .667rem 1.333rem;
    overflow: hidden;
    width: 70%;
}

#region{
    height: 25%;
    text-transform: uppercase;
    font-size: 1rem;
}
#columnheader{
    color: #CCD2D9;
    margin-left: 1rem;
    text-align: left;
}
#stag{
    margin-right: 100px;
}
#helplink{
    margin-right: 1.667rem;
}
#linkstyle{
    color: #2D6BFF;
    font-weight: bold;
}
#linkstyle:hover{
    text-decoration: underline;
}
h2{
    color: white;
    font-size: 1rem;
}
h3{
    color: white;
    text-transform: uppercase;
    font-size: 1.333rem;
}
svg{
    position: absolute;
    top: .5px;
    left: 5px;;
}
.row{
    display: flex;
    width: auto;
    height: 50%;
}
.column{
    padding: 1.333rem;
    flex: 50%
}
.tooltip{
    position: relative;
    display: inline;
}
.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #FFFFFF;
    color: black;
    font-weight: lighter;
    text-transform: none;
    text-align: center;
    font-size:small;
    padding: 5px 0;
    position: absolute;
    top: 150%;
    left: -53px;
    margin-left: -25%;
}
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    margin-left: -5px;
    border-width: 5px;
    bottom: 100%; 
    left: 65px;
    border-style: solid;
    border-color: transparent transparent white transparent;
}
.tooltip:hover .tooltiptext{
    visibility: visible;
}
.tooltip:focus .tooltiptext{
    visibility: visible;
}

table{
    background: rgb(4,30,65);
    background-repeat: no-repeat;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1em 1em;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
td{
    color: white; 
}
table, td, th{ 
    border: 1.5px solid #021125;
}
th{
    font-size: 1rem;
    height: 2.667rem; /* 32 px */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
tr{
    height: 1.333rem !important;
}
p, button, #region{
    margin-left: 0rem;
}
a{
    margin: 1.333rem auto;
    white-space: wrap;
    text-decoration: none;
}
div{
    width: auto;
}
button{
    border: 2px solid #2D6BFF;
    text-transform: uppercase;
    color: #FFFFFF;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    background: #2D6BFF;
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: 0.4s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
button:hover{
    border: 2px solid #E0E3E8;
    color: #021227;
    background: #E0E3E8;
    cursor: pointer; 
}
@media screen and (max-width: 992px){
    .row{
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    html{
        font-size: 13px;
    }
    button{
        height: 34px;
        font-size: 13px;
    }
    .tooltip .tooltiptext {
        top: 125%; 
        left: -57px;
    }
    .tooltip .tooltiptext::after {
        left: 69px;
    }
}
@media screen and (max-width: 576px) {
    html{
        font-size: 11px;
    }
    tr{
        line-height: 2rem;
    }
    button{
        height: 34px;
        font-size: 9px;
    }
    .tooltip .tooltiptext {
        width:200px;
        left: -47px;
    }
    .tooltip .tooltiptext::after {
        left: 60px;
    }
    .tooltip .tooltiptext {
        top: 150%; 
    }
}
@media screen and (max-width: 280px){
    html{
        font-size: 10px;
    }
    button{
        height: 34px;
        font-size: 7px;
    }
    svg{
        top: -1px;
    }
    .tooltip .tooltiptext {
        width:200px;
        left: -44px;
    }
    .tooltip .tooltiptext::after {
        left: 57px;
    }
    .tooltip .tooltiptext {
        top: 175%; 
    }
}