/* GLOBAL CSS */

@page {
    size: auto;
}
  
body {
    font-family: Open Sans, Arial;
    overflow-y: scroll !important;
    padding-right: 0 !important;
    max-width: 100vw;
}
  
.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 */
}

.dropdown-toggle::after { 
    content: none; 
}

.compactor {
  margin-left:-110vw;
  transition:margin-left 1s ease-out;
  overflow: hidden;
  display:flex;
}

@keyframes fa-blink {
  0% { opacity: 0.25; }
  25% { opacity: 0.5; }
  37.5% { opacity: 0.75; }
  50% { opacity: 1; }
  75% { opacity: 0.75; }
  87.5% { opacity: 0.5; }
  100% { opacity: 0.25; }
}
.fa-blink {
-webkit-animation: fa-blink 2.75s linear infinite;
-moz-animation: fa-blink 2.75s linear infinite;
-ms-animation: fa-blink 2.75s linear infinite;
-o-animation: fa-blink 2.75s linear infinite;
animation: fa-blink 2.75s linear infinite;
}

.breakrow {
  display:none;
}
.continuousrow {
  display:revert;
}

.lgLeftsmCenter {
    float:left;
    text-align:left;
}
.lgRightsmCenter {
    float:right;
    text-align:right;
}
.pageButton {
    bottom:unset;
    top:25px;
    right:25px;
}

.container {
    margin: 0 !important;
    padding: 0 !important;
}

.modal-open .modal {
    /* overflow-y: hidden !important;*/
    padding: 0 !important;
}

#hideSMALL {
    display: none;
}
.hideSMALL {
    display: none;
}
.hideSMALLFlex {
  display: none;
}
.hideDESK {
    display: block;
}
.safariBlock {
    width:33%;
    display:inline-block;
}

@media (min-width: 576px) {
  #hideSMALL {
      display: block;
  }
  .hideSMALL {
    display: block;
  }
  .hideSMALLFlex {
    display: inline-block;
  }
  .hideDESK {
      display: none;
  }
  #badgeMore {
    display: none;
  }
}
/*
@media (max-width: 480px) {
    body.modal-open {
      overflow: hidden;
      position:fixed;
    }
}
    
    
@media (min-width: 576px) {
    #hideSMALL {
        display: block;
    }
    .hideSMALL {
      display: block;
    }
    .hideDESK {
        display: none;
    }
    #badgeMore {
      display: none;
    }
}
*/



@media (max-width: 480px) {
    .lgLeftsmCenter {
        float:unset;
        text-align:center;
        position:unset;
        position:relative;
    }
    .lgRightsmCenter {
        float:unset;
        text-align:center;
        position:unset;
        position:relative !important;
    }
}


@media (max-width: 680px) {
    .textareaDiv {
        width:300px;
    }
    .tdCenter {
        text-align:center;
    }
    .tdDivContentLeft {
        text-align:left;
    }
    .pageButton {
        top:initial !important;
        bottom:45px;
    }
    #mailBadge {
      display:none;
    }
    .lab {
      display:none;
    }
    .breakrow {
      display:revert;
    }
    .continuousrow {
      display:none;
    }
}


@media (max-width: 800px) {
    .safariBlock {
        width:100%;
        display:block;
    }
}


@media (max-width: 1100px) and (min-width: 800px) {
    .safariBlock {
        width:49%;
        display:inline-block;
    }
}
/* VISUAL EFFECTS */

.fa-beat {
    animation:fa-beat 5s ease infinite;
  }
  @keyframes fa-beat {
    0% {
      transform:scale(1);
    }
    5% {
      transform:scale(1.25);
    }
    20% {
      transform:scale(1);
    }
    30% {
      transform:scale(1);
    }
    35% {
      transform:scale(1.25);
    }
    50% {
      transform:scale(1);
    }
    55% {
      transform:scale(1.25);
    }
    70% {
      transform:scale(1);
    }
  }

  
.fa-mildbeat {
    animation:fa-mildbeat 5s ease infinite;
  }
  @keyframes fa-mildbeat {
    0% {
      transform:scale(1);
    }
    5% {
      transform:scale(1.05);
    }
    20% {
      transform:scale(1);
    }
    30% {
      transform:scale(1);
    }
    35% {
      transform:scale(1.05);
    }
    50% {
      transform:scale(1);
    }
    55% {
      transform:scale(1.05);
    }
    70% {
      transform:scale(1);
    }
  }

  .fa-medbeat {
    animation:fa-medbeat 5s ease infinite;
  }
  @keyframes fa-medbeat {
    0% {
      transform:scale(1);
    }
    5% {
      transform:scale(1.15);
    }
    20% {
      transform:scale(1);
    }
    30% {
      transform:scale(1);
    }
    35% {
      transform:scale(1.15);
    }
    50% {
      transform:scale(1);
    }
    55% {
      transform:scale(1.15);
    }
    70% {
      transform:scale(1);
    }
  }




/* ######################## FADING CIRCLE ######################## */
  
.sk-fading-circle {
    margin: 100px auto;
    width: 40px;
    height: 40px;
    position: relative;
  }
  
  .sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #333;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  }
  .sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg);
  }
  .sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
            transform: rotate(120deg);
  }
  .sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg);
  }
  .sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
            transform: rotate(210deg);
  }
  .sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
            transform: rotate(240deg);
  }
  .sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
  }
  .sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
            transform: rotate(300deg); 
  }
  .sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg); 
  }
  .sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; 
  }
  .sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; 
  }
  .sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; 
  }
  .sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; 
  }
  .sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; 
  }
  .sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; 
  }
  .sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; 
  }
  .sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
  }
  .sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s;
  }
  .sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
  }
  .sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s;
  }
  
  @-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; }
  }
  
  @keyframes sk-circleFadeDelay {
    0%, 39%, 100% { opacity: 0; }
    40% { opacity: 1; } 
  }
  

  
/* CSS FOR AUTOCOMPLETE */


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
.autocomplete-items {
  position: relative;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  padding: 20px;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 20px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

.ui-autocomplete-input {
  position: relative;
  border-bottom: solid 1px #ddd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-autocomplete {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1510 !important;
  float: left;
  display: none;
  padding: 4px 0;
  margin: 2px 0 0 0;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  max-height: 250px;
  overflow-y: auto;
}

.ui-autocomplete-short {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1510 !important;
  float: left;
  display: none;
  padding: 4px 0;
  margin: 2px 0 0 0;
  list-style: none;
  background-color: #ffffff;
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 1px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  max-height: 150px;
  overflow-y: auto;
}
.ui-menu {
  min-width: 190px;
  padding: 15px 8px;
}
.ui-menu-item {
    display: block;
    padding: 6px;
    clear: both;
    font-weight: normal;
    color: #444;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-decoration: none;
}
.ui-menu-item-wrapper {
  white-space: nowrap;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
.ui-state-focus, .ui-state-active {
      color: #FFFFFF;
      text-decoration: none;
      background-color: #444444;
      border-radius: 0px;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      background-image: none;
      cursor: pointer;
}

.ui-state-default.ui-state-active {
  background-color: #FFFFFF;
  color: #444;
}
.ui-state-default.ui-state-hover {
  background-color: #EEEEEE;
  color: #444;
}
.ui-state-default.ui-state-highlight {
  color: #444;
  border-top: solid 1px #BBBBBB !important;
  border-bottom: solid 1px #BBBBBB !important;
}
.ui-state-default.ui-state-highlight.ui-state-hover {
  background-color: #EEEEEE;
  color: #444;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #FFFFFF;
    border: 0;
}
/*  .ui-widget-shadow {
  background: #444 !important;
  color: #fff !important;
  opacity: 1.0;
}*/




/* ######################### TOOLTIPS ########################### */

/* Tooltip container */
.infobubble {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.infobubble .bubbletext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.infobubble:hover .bubbletext {
  visibility: visible;
}

.infobubble .bubbletext {
  width: 120px;
  bottom: 105%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}

.infobubble .bubbletext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}



/* Tooltip container */
.infobubbleleft {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.infobubbleleft .bubbletextleft {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.infobubbleleft:hover .bubbletextleft {
  visibility: visible;
}

.infobubbleleft .bubbletextleft {
  /*width: 120px;*/
  max-width: 400px;
  width: max-content;
  top: -170%;
  right: 105%;
  padding: 10px;
}
/*
.infobubbleleft .bubbletextleft::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent black;
}
*/


/* ######################### BREAD CRUMBS ########################### */

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #FFF;
}
ul.breadcrumb li {
  display: inline;
  font-size: 14px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: ">\00a0";
}
ul.breadcrumb li a {
  color: #444;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}