.bg-ite-red {
    background-color: #C31031;
}

.banner {
    font-size: 2.5rem;
}

.responsive {
    width: auto;
    height: auto;
    max-height: 70px;
    max-width: 70px;
 }

.warning {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.warning-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.panel {
    border-radius: 25px;
    padding: 20px 50px;
}

input.form-control[type="file"] {
  line-height: 10em;
}

input.form-control[type="file"]:hover {
    background-color: aliceblue !important;
}

.last-column {
    width:1%;
    white-space: nowrap;
}

.stretched-link-button {
  z-index: 2;
  position: relative;
}

.clickable-cell:hover {
  background-color: rgba(245, 245, 83, 0.3);
  cursor: pointer;
}

#breadcrumb {
  list-style: none;
  display: inline-block;
  padding-left: 0%;
}

#breadcrumb li {
  margin-top: 5px;
  float: left;
}
#breadcrumb li a {
  color: #FFF;
  display: block;
  background: #3498db;
  text-decoration: none;
  position: relative;
  height: 30px;
  line-height: 30px;
  padding: 0 7.5px 0 2.5px;
  text-align: center;
  margin-right: 17.25px;
}
#breadcrumb li:nth-child(even) a {
  background-color: #2980b9;
}
#breadcrumb li:nth-child(even) a:before {
  border-color: #2980b9;
  border-left-color: transparent;
}
#breadcrumb li:nth-child(even) a:after {
  border-left-color: #2980b9;
}
#breadcrumb li:first-child a {
  padding-left: 11.25px;
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px 0 0 3px;
}
#breadcrumb li:first-child a:before {
  border: none;
}
#breadcrumb li:last-child a {
  padding-right: 11.25px;
}

#breadcrumb li a:before, #breadcrumb li a:after {
  content: "";
  position: absolute;
  top: 0;
  border: 0 solid #3498db;
  border-width: 15px 7.5px;
  width: 0;
  height: 0;
}
#breadcrumb li a:before {
  left: -15px;
  border-left-color: transparent;
}
#breadcrumb li a:after {
  left: 100%;
  border-color: transparent;
  border-left-color: #3498db;
}
#breadcrumb li a:hover {
  background-color: #1abc9c;
}
#breadcrumb li a:hover:before {
  border-color: #1abc9c;
  border-left-color: transparent;
}
#breadcrumb li a:hover:after {
  border-left-color: #1abc9c;
}
#breadcrumb li a:active {
  background-color: #16a085;
}
#breadcrumb li a:active:before {
  border-color: #16a085;
  border-left-color: transparent;
}
#breadcrumb li a:active:after {
  border-left-color: #16a085;
}

/* submission_detail missing lines toggle styled red */

.red.form-check-input:checked {
  background-color: red;
  border-color: pink;
}
.form-switch .red.form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='pink'/%3e%3c/svg%3e");
}
.form-switch .red.form-check-label {
  color: red;
}

/* submission_detail erroneous lines toggle styled blue */

.blue.form-check-input:checked {
  background-color: blue;
  border-color: lightblue;
}
.form-switch .blue.form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='lightblue'/%3e%3c/svg%3e");
}
.form-switch .blue.form-check-label {
  color: blue;
}