html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

a, a:hover {
    color: #0099cc;
}

.delete, .delete:hover {
    color: #EE3123;
}

.deleteButton {
    background-color: #EE3123 !important;
}

.customButton {
    min-width: 150px;
    /*width: 100%;*/
    /*height: 75px;*/
    margin-top: 25px;
    display: inline-block;
    background-color: #0099cc;
    color: white;
}

    .customButton :hover {
        min-width: 150px;
        /*width: 100%;*/
        /*height: 75px;*/
        margin-top: 25px;
        display: inline-block;
        background-color: #0099cc;
        color: white;
    }

.welcome {
    color: #0099cc !important;
}

    .customLink :hover {
        color: #0099cc !important;
    }

.wizardButton {
    /*font-size: smaller;*/
    min-width: 80px;
/*    width: 250px;
    height: 75px;*/
/*    margin-top: 25px;*/
    display: inline-block;
    /*max-width: 30% !important;*/
}

.wizardBullet {
    height: 25px;
    width: 25px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.wizardBulletSelected {
    height: 25px;
    width: 25px;
    background-color: #0099cc;
    border-radius: 50%;
    display: inline-block;
}


.customlabel {
    font-size: smaller;
    color: gray;
    white-space: nowrap;
}

.customlabelbold {
    font-size: small;
    font-weight: 800;
    margin-bottom: 10px;
    /*color: darkgray;*/
}

.customlabelnote {
    font-size: smaller;
    padding: 0;
    color: gray;
}

.nowrap {
    white-space: nowrap;
}

.authformsize
{
    max-width:400px;
}

.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 3px 6px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    padding-top: 10px;
}

.cardvalue {
    font-size: smaller;
    font-weight: bolder;
    display: block;
}

.customtooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black;*/
}

    .customtooltip .tooltiptext {
        font-size: smaller;
        display: inline-block;
        visibility: hidden;
        /*min-width:200px;*/
        background-color: #0099cc;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 1px 3px 1px 3px;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: -2px;
        left: 105%;
        margin-left: 4px;
    }

    .customtooltip:hover .tooltiptext {
        visibility: visible;
    }

    .customtooltip:active .tooltiptext {
        visibility: visible;
    }

    .customtooltip:after .tooltiptext {
        visibility: visible;
    }