html {
  overflow-y: scroll; 
}
body {
  height: 100%;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
  margin-bottom: 15px;
  padding-top: 50px;
  padding-bottom: 50px
}

.bg-yellow {
  background-color: #ffcf15;
}
.bg-grey {
  background-color: #eee;
}
.orange {
  color: orange;
}
a:active, a:focus, a:link, a:visited {
  color:#000;
  text-decoration:none;
}

a:hover {
  text-decoration:underline;
}
.headlinetext {
  z-index: 1;
}
footer {
    position: fixed;
    height: 20px;
    bottom: 0;
    width: 100%;
}
.mt-5 {
  margin-top: 5px!important;
}
.ml-5 {
  margin-left: 5px!important;
}
.mr-5 {
  margin-right: 5px!important;
}
.mt-10 {
  margin-top: 10px!important;
}
.p-0 {
  padding: 0px!important;
}
.p-5 {
  padding: 5px!important;
}
.pt-5 {
  padding-top: 5px!important;
}
.pl-5 {
  padding-left: 5px!important;
}
.pl-10 {
  padding-left: 10px!important;
}
.pr-5 {
  padding-right: 5px!important;
}
.mt-20 {
  margin-top: 20px!important;
}
.m-20 {
  margin-bottom: 20px!important;
}
.mb-5 {
  margin-bottom: 5px!important;
}
.mb-10 {
  margin-bottom: 10px!important;
}
.gray {
  color: #6c757d;
}
.blue {
  color: #0000ff;
}
.btn-link {
  color: #000000;
}
.fixed-bottom .container {
  background: #eee;
}
.modal-lg {
  max-width: 97% !important;
}
.modal-dialog,
.modal-content {
    /* 80% of window height */
    height: 97%!important;
    max-width: 97%!important;
    padding: 0px;
}
.modal-open .modal {
  overflow-y: hidden!important;
}
.modal-body {
    /* 100% = dialog height, 120px = header + footer */
    height: 97%!important;
    overflow-y: hidden!important;
    padding: 0px;
}
.modal-header {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 0px;
}

.centered {
  position: fixed;
  width: 100%;
  height:100%;
  display: flex;
  align-items: center;
  top: 0;
}
.loader {
  border: 10px solid #f3f3f3; /* Light grey */
  border-top: 10px solid grey; /* Blue */
  border-radius: 50%;
  width: 70px;
  height: 70px;
  animation: spin 1.5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
[aria-expanded="false"] .caret2open {

}

[aria-expanded="false"] .caret2close {
  display: none;
}

[aria-expanded="true"] .caret2open {
  display: none;
}

[aria-expanded="true"] .caret2close {
}


#searchinput {
 
}
#searchclear {
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  height: 14px;
  margin: auto;
  font-size: 14px;
  cursor: pointer;
  color: #ccc;
}

.rwd-line { display: block; }
@media screen and (min-width: 500px){
  .rwd-line { display: inline; }
}

.table-scrollable {
  overflow: auto;
}
.txtellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}