:root{
    --colorA:#222E60;
    --fontA:'Lato';
    --fontB:'Montserrat';
}

@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: 'Montserrat';
    src: url("../fonts/Montserrat-Medium.ttf");
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url("../fonts/Lato-Regular.ttf");
    font-weight: 300;
}

@font-face {
    font-family: 'Lato';
    src: url("../fonts/Lato-Bold.ttf");
    font-weight: 600;
}
@font-face {
    font-family: 'Lato';
    src: url("../fonts/Lato-Bold.ttf");
    font-weight: bold;
}
html {
    margin:0;
    transition: opacity 0.3s;
}
body{
    margin:0;
    font-family: var(--fontA), sans-serif;
    font-style: normal;
    height:100%;
}

.waitScreen{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(66 66 66 / 65%);
    color: #FFFFFF;
    font-size: 200%;
    text-align: center;
    z-index: 200;
    opacity: 0;
    transition: all .3s;
}
.spinCont{
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    width: 100%;
    max-height: 45px;
    padding: 0;
    border: 0;
    overflow: hidden;
    height: 0;
}
.spinChar{
    position: relative;
    top: 45%;
    font-size: 60%;
    font-family: var(--fontA);
    color: #FFFFFF;
    font-weight: 400;
    text-align: center;
}

.textCenter{
    text-align:center;
}
.textLeft{
    text-align:left;
}
.container{
    width: 100%;
}
.stdText {
    color: var(--colorA);
    font-size: 90%;
    line-height: 29px;
    text-align: left;
    margin: 10px auto;
    font-style:normal;
}
.stdText.textMd {
    font-size: 100%;
}
.stdText.textLg {
    font-size: 115%;
}
.stdText.textXl {
    font-size: 140%;
}

.stdSubText {
    margin: 10px auto;
    color: #4A4A4A;
    font-size: 14px;
    line-height: 17px;
    text-align: left;
}

.pointer{
    cursor:pointer;
}



  

