html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

@font-face {
    font-family: FranklinGothicMedium;
    src: url(/fonts/OPTIFranklinGothic-Medium.otf);
}

.hidden{
    display: none !important;
}

.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;*/
    font-family: FranklinGothicMedium;
    background: rgb(166,65,168);
    background: linear-gradient(127deg, rgba(166,65,168,1) 0%, rgba(163,64,165,1) 100%);
    color: #B29ACD;
}

header {
    /*font-weight: bold;*/
    font-size: 2vh;
    background-color: #1E1E1E;
}

nav {
    border-bottom: 1px solid #101010 !important;
}

a, nav-link {
    color: #746686 !important;
}

    a:visited {
        color: #746686;
    }

    .IsHere {
        color: #B29ACD !important;
    }

.nav-item {
    /*padding-left: var(--bs-gutter-x, .75rem);*/
}

table {
    color: #B29ACD !important;
}

.table-striped > tbody > tr:nth-of-type(2n+1) {
    color: #746686 !important;
}






.StatusPopup {
    position: absolute;
    width: 40%;
    height: 100px;
    z-index: 1001;
    left: 30%;
    margin: -100px 0 0 -150px;
    background: red;
}

.StatusPopup {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 1em;
    font-size: large;
    font-weight: bold;
    position: fixed;
    text-align: center;
    left: 50%;
    margin-left: -120px;
    width: 13em;
    z-index: 9999;
    bottom: 10px;
    height: 4em;
}

@media (min-width: 768px) {
    .StatusPopup {
        display: none;
        background-color: #28a745;
        color: white;
        padding: 1em;
        font-size: large;
        font-weight: bold;
        position: fixed;
        text-align: center;
        left: 50%;
        margin-left: -100px;
        width: 20em;
        z-index: 9999;
        bottom: 10px;
    }
}


