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;
  background-color: lightgray;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

#LantechLogo {
    position: absolute;
    top: -50px;
    right: 1em;
}

#ManualAccessBox {
    width: 70%;
    height: 20em;
    border: 2px solid black;
    border-radius: .5em;
    background-color: #014377;
    display: flex;
    color: white;
    position: relative;
    margin-top: 80px;
}

#ManualAccessTitle{
    text-align: left;
    padding-left: .25em;
    font-weight: 500;
    padding-top: .25em;
    padding-left: .5em;
}

.imageHolder {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
}

#ManualAccessImage {
    display: block;
    margin: auto;
}

.manuals-left {
    width: 30%;
    height: 100%;
    text-align: left;
}

.manuals-right{
    width: 65%;
    height: 100%;
    text-align: left;
    padding-top: 1em;
}

.manuals-input-holder {
    text-align: left;
    display: flex;
    padding-top: 2.5em;
}

.manuals-input{
    padding-right: 1em;
}

#ManualAccessSubmitBtn {
    position: absolute;
    bottom: .25em;
    right: .25em;
    outline: 2px solid black;
    width: 7.5em;
    align-content:center;
    background-color: #C96D09;
    font-weight: bold;
    font-size: large;
    border-radius: 4px;
    height: 2em;
    color: antiquewhite;
}

    #ManualAccessSubmitBtn:focus, #ManualAccessSubmitBtn:hover {
        background-color: #A35C0F;
    }

    #ManualAccessSubmitBtn:disabled,
    button[disabled] {
        border: 1px solid #999999;
        background-color: #cccccc;
        color: #666666;
    }


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.manual-row {
    border: 1px solid black;
    border-radius: 3px;
    background-color: #BAC1CF;
    cursor: pointer;
    margin-bottom: .15em;
    min-height: 2.5em;
    display: inline-flex;
    width: 100%;
}

    .manual-row:hover {
        background-color: #CCD0D9;
    }

    .manual-row div {
        width: 100%;
        align-content: center;
    }

.manual-icon {
    padding: 2.5px;
}

#ManualDownloadsHolder {
    text-align: left;
    /*width: 30%;*/
    min-width: 25em;
    width: 20%;
}

.error-message {
    margin-bottom: auto;
    margin-top: auto;
    padding-top: .5em;
    color: red;
    font-weight: bold;
}

.interactable-btn {
    outline: 1px solid black;
    align-content: center;
    background-color: #C96D09;
    font-weight: bold;
    border-radius: 4px;
    color: antiquewhite;
    padding-bottom: .25em;
    padding-top: .25em;
    text-decoration: none;
    width: 12.5em;
}

    .interactable-btn:hover {
        background-color: #D68A38;
    }

#DownloadAllBtn{
    cursor: pointer;
}

@media only screen and (max-width: 1360px) {
    #ManualAccessBox {
        width: 100%;
        height: 20em;
        border: 2px solid black;
        border-radius: .5em;
        background-color: #014377;
        display: flex;
        color: white;
        position: relative;
    }
}

@media only screen and (max-width: 990px) {
    #ManualAccessBox {
        margin-top: 60px;
        width: 100%;
        height: 100%;
        border: 2px solid black;
        border-radius: .5em;
        background-color: #014377;
        display: flex;
        color: white;
        position: relative;
    }

    .manuals-left {
        display: none;
    }

    .manuals-right {
        padding-left: 1em;
        padding-right: 1em;
        width: 100%;
    }

    .manuals-input-holder{
        width: 100%;
    }
}

@media only screen and (max-width: 750px) {
    #ManualAccessSubmitBtn {
        margin-top: 10em;
        position: absolute;
        bottom: .5em;
        margin-right: 10%;
        width: 75%;
    }

    .manuals-input-holder {
        padding-bottom: 15%;
    }

    .manual-row{
        width: 99%; /*Ensure entire row appears on mobile*/
    }
}


