html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;

}

body {
/*    margin-bottom: 60px;
    position: relative;
    overflow-y: hidden;*/
}

#MainContainer {
    background-image: url('../images/hexagon.svg');
    
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.footer {
    
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
}
main {
    opacity: 1;
}

#divLoading {
    display: none;
}

    #divLoading.show {
        display: block;
        position: fixed;
        z-index: 100;
        /* background-image: url('~/loading.gif');*/
        background-color: #666;
        opacity: 0.4;
        background-repeat: no-repeat;
        background-position: center;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
    }

#loadinggif {
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 101;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
}
#alertRow {
    z-index: 110;
    position: fixed;
    min-width: 100% !important;
    left: 0%;
    top: 0%;
}

#fileUploading {
    /* display: none;*/
}

    #fileUploading.show {
        display: block;
        position: fixed;
        z-index: 2000;
        /* background-image: url('~/loading.gif');*/
        background-color: #666;
        opacity: 0.8;
        background-repeat: no-repeat;
        background-position: center;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
        color: white;
    }

#FilePercent {
    left: 50%;
    top: 50%;
    position: absolute;
    color: white;
    text-align: center;
    margin-left: -100px;
    margin-top: -100px;
}