﻿.loginLabel {
    font-family: Verdana;
    font-size: 12px;
    color: gray;
    margin: 2px;
    margin-right: 5px;
}

.loginLabelMobile {
    font-family: Verdana;
    font-size: 35px;
    color: gray;
    margin: 10px;
    margin-right: 5px;
}

.goLabel {
    font-family: Verdana;
    font-size: 14px;
    color: gray;
    margin: 10px;
    margin-right: 5px;
}

.goLabelMobile {
    font-family: Verdana;
    font-size: 30px;
    color: gray;
    margin: 10px;
    margin-right: 5px;
}


/************************************************************************/
/* Includes border width in complete object width rather than adding it
/************************************************************************/
.includeBorderInBoxSize {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/************************************************************************/
/* Horizontally Center items within the div (better with Flexbox)     
/************************************************************************/
.centerDiv {
    margin: 0 auto;
}

/************************************************************************/
/* Used to ensure the blue select drag box is not shown 
/************************************************************************/
.noSelect {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}