.red-icon {color:#f44336!important}
.italic {font-style: italic}
.green-icon {color: green}
.coral-icon {color: coral}
.head-icon {color: cadetblue}
.black-icon {color: black}

/*********** Navigation section BEGIN *********************/

/* Dropdown Button */
.dropbtn {
    background-color: white;
    background-image: url('/img/hamburger.png');
    color: white;
    padding: 24px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: center;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    /*background-color: #2980B9;*/
    background-image: url('/img/hamburger.png');
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: center;
    padding-top: 28px;
    padding-left: 28px;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: darkslategrey;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Links inside the dropdown */
.dropdown-content .logout {
    color: white;
    font-weight: bold;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: black;
}

/* Links inside the dropdown */
.dropdown-content div.sechdr, .dropdown-content a.sechdr {
    cursor: pointer;
    color: white;
    font-weight: bold;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: darkslategrey;
}
.largeWidth {
    margin: 0 auto;
    width: 70%;
}

.hide{
    display: none;
}

.dropdown-content div.secdtl {
    display: none;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}
.dropdown-content .logout:hover {background-color: white; color: steelblue;}

.white-caret{
    display:inline-block;
    width:0;
    height:0;
    margin-left:2px;
    vertical-align:middle;
    border-top:4px solid white;
    border-right:4px solid transparent;
    border-bottom:0 dotted;
    border-left:4px solid transparent;
    content:""
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.username {
    float: left;
    font-weight: bold;
    padding: 16px 16px;
    color: cadetblue;
}

.facility {
    font-weight: normal;
}

.client-logo img {
    float: right;
    height: 25px;
    padding-right: 30px;
}

.haemo-logo img {
    height: 45px;
}

.loginHelp {
    font-style: italic;
    font-size: small;
}


.loginHelpBullet {
    list-style: square;
}
/*********** Navigation section END *********************/

/********** Pagination section BEGIN ********************/
.pagination-div{user-select: none;}
.pagination-div span{
    padding:5px;
    margin:10px 0px 0px 10px;
    display:inline-block}

span.selected{background:#ddd;}

/********** Pagination section END ********************/

/********** Form section BEGIN **************************/

.short {
    height: 60px;
    width: 70%;
}

.direction {
    border: solid;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

i.next {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

i.back {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

span.back, button.back{
    float: left;
}

span.next, button.next{
    float: right;
}

/*Dropdown for issues*/
ul, #medical-ul #defect-ul {
    list-style-type: none;
    padding-inline-start: 20px;
}

#medical-ul #defect-ul {
    margin: 0;
    padding: 0;
}

.issue-caret {
    cursor: pointer;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.issue-caret::before {
    content: "\002B";
    color: black;
    display: inline-block;
    margin-right: 6px;
}

.issue-caret-down::before {
    content: "\002D";
}

.issue-nested {
    display: none;
}

.issue-active {
    display: block;
}

.code-box {
    position: absolute;
    z-index: 10;
    background-color: white;
    box-shadow: 2px 2px 2px 2px cadetblue;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    display: none;
    margin-left: 10px;
    margin-top: 4px;
    border-radius: 4px;
}

.midi {
    width: 70%;
}

.mini {
    display: initial;
    width:20%;
}

textarea {
    width: 84%;
    border-radius: 4px;
    background-color: white;
    border-color: #cccccc;
}

form label.required:after, h4.required:after
{
    color: red;
    content: " *";
}

button.codeButton {
    background-color: cadetblue;
    border: transparent;
    color: white;
}

button.redButton {
    background-color: red;
    border: transparent;
    color: white;
}

table.border {
    border: 1px solid lightgrey;
    border-radius: 4px;
}

.form-horizontal {
    padding-bottom: 20px;
}

/********** Form section END **************************/

/*********** PAGE STATUS BEGIN ******************/
#pagestatus {
min-width: 250px; /* Set a default minimum width */
margin-left: -125px; /* Divide value of min-width by 2 */
background-color: #333; /* Black background color */
color: #fff; /* White text color */
text-align: center; /* Centered text */
border-radius: 2px; /* Rounded borders */
padding: 16px; /* Padding */
position: fixed; /* Sit on top of the screen */
z-index: 1; /* Add a z-index if needed */
left: 50%; /* Center message */
bottom: 30px; /* 30px from the bottom */
animation:fading 10s;
}
/* Animations to fade the snackbar in and out */
@keyframes fading{
    0%{opacity:0}
    20%{opacity:1}
    100%{opacity:0}
}
@-webkit-keyframes fading{
    0%{opacity:0}
    20%{opacity:1}
    100%{opacity:0}
}
/*********** PAGE STATUS END *******************/


footer {
    width: 100%;
    bottom: 5%;
    position: fixed;
    align-content: center;
}

