/*Main*/
* {
    font-family: Ubuntu, Arial, 'Helvetica', sans-serif;
}

    *:focus {
        box-shadow: none !important;
        outline: none;
    }

body {
    font-family: Ubuntu, Arial, 'Helvetica', sans-serif;
    min-width: 360px;
}

html {
    font-size: 14px;
    min-height: 100%;
    position: relative;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

form {
    width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/*Logos*/
.ahdbLogo {
    height: 70px;
    margin: 10px;
    width: 140px;
}

#imgAhdbLogo {
    height: 70px;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 140px;
}

#imgQmsLogo {
    height: 43px;
    margin-bottom: 25px;
    margin-top: 25px;
    width: 96px;
}

.logoMargin {
    margin-left: 10px;
    margin-right: 10px;
}

/*Scroll*/
.disable-scroll {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

/*Urn inputs*/
#urn, #txtUrn, #txtCustomerReferenceNumber {
    letter-spacing: 3px;
    text-align: center;
    word-spacing: 20px;
}

/*Wave images*/
.wave-header {
    height: 175px;
    left: 0;
    margin-bottom: -25px;
    margin-top: -50px;
    padding: 0;
    position: absolute;
    top: 215px;
    width: 100%;
    z-index: -9999;
}

@media (min-width: 1200px) {
    .wave-header {
        top: 190px;
    }
}

.wave-footer {
    height: 175px;
    left: 0;
    margin-top: -20px;
    margin-bottom: 0;
    padding: 0;
    top: 0;
    width: 100%;
}

/*Full screen pages*/
@media (min-width: 576px) {
    .fullscreenpadding {
        height: 20px;
    }
}

@media (min-width: 768px) {
    .fullscreenpadding {
        height: 30px;
    }
}

@media (min-width: 992px) {
    .fullscreenpadding {
        height: 40px;
    }
}

@media (min-width: 1200px) {
    .fullscreenpadding {
        height: 50px;
    }
}

@media (min-width: 1400px) {
    .fullscreenpadding {
        height: 60px;
    }
}

.fullscreenpaddingfixed {
    height: 20px;
}

.fullscreendetails {
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
}

/*Popups*/
.popup-window-outer {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 5%;
    width: 90%;
    z-index: 9999;
}

.popup-window-inner {
    border: 1px #0090d4 solid;
    max-height: 90%;
    left: -50%;
    overflow-y: auto;
    position: relative;
}

@media (min-width: 576px) {
    .popup-window-outer {
        width: 75%;
    }
}

@media (min-width: 768px) {
    .popup-window-outer {
        min-width: 600px;
        top: 10%;
        width: 60%;
    }

    .popup-window-inner {
        max-height: 80%;
    }
}

/*Warnings*/
.warning-window-outer {
    height: 100%;
    left: 50%;
    min-width: 400px;
    position: absolute;
    top: 5%;
    width: 90%;
    z-index: 9999;
}

.warning-window-inner {
    border: 1px #0090d4 solid;
    max-height: 90%;
    left: -50%;
    overflow-y: auto;
    position: relative;
}

@media (min-width: 576px) {
    .warning-window-outer {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .warning-window-outer {
        top: 10%;
        width: 33%;
    }

    .warning-window-inner {
        max-height: 80%;
    }
}

/*Other*/
#loading-img {
    height: 100%;
    position: relative;
    z-index: 9999;
}

hr {
    color: #575756;
    width: 90%;
}

.superscript {
    font-size: 60%;
    position: relative;
    top: -0.5em;
}

.selectbox-readonly {   /*needed?*/
    cursor: default;
}

.menu-item {
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    width: 100%;
}

.close-text {
    display: block;
    margin-bottom: 0;
}

.background-image {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0, 130, 202, 0.7), rgba(118, 183, 42, 0.7));
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.background-blank {
    background-color: #eee;
}

.culture-list {
    cursor: pointer;
}

.otherHide {
    display: none;
}

body .datepicker {
    border-radius: 5px;
    width: auto;
}

.hideOnLoad {
    display: none;
}

.hidden {
    display: none;
}

.displayFlex {
    display: flex;
}

.greyscale {
    filter: grayscale(100%);
    cursor: default !important;
}

.overflow-long-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Focus Black outline with yellow highlights*/
a:focus,
select:focus,
input:focus,
.collapsible-header:focus,
body btn-contained:focus,
body btn-outlined:focus {
    -webkit-box-shadow: -1px 0 8px 8px rgba(255, 204, 0, 0.83), -1px 0 8px 8px rgba(255, 204, 0, 0.83) !important;
    box-shadow: -1px 0 8px 8px rgba(255, 204, 0, 0.83), -1px 0 8px 8px rgba(255, 204, 0, 0.83) !important;
    border: 2px solid #000 !important;
}