/*Notification bar*/
.custom-notification-bar {
  width: 100%;
  background-color: #00a77e;
  color: white;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 40px;
  display: flex;
  align-items: center;
  font-family: sans-serif;
  padding-left: 10px;
}

.custom-notification-bar:hover .custom-notification-text {
  animation-play-state: paused;
}

.custom-notification-text a:hover{
  color: #2d2d2d;
}

.custom-notification-content {
  white-space: nowrap;
}

.custom-notification-text {
  display: inline-block;
  padding-left: 100vw;
  animation: scroll-left 45s linear infinite;
}

.notification-spacer {
  height: 40px; /* same height as notification bar */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/*Accordion*/
.custom-accordion {
  position: relative;
}

/*Question*/
.custom-accordion .question {
  position: relative;
  background: #f9f9f9;
  margin: 0;
  padding: 10px 50px 10px 10px;
  display: block;
  width: 100%;
  cursor: pointer;
}

/*Answer*/
.custom-accordion .answers {
  padding: 0px 15px;
  margin: 5px 0;
  width: 100% !important;
  height: 0;
  overflow: hidden;
  /*z-index: -1;*/
  position: relative;
  opacity: 0;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;
}

.custom-accordion .questions:checked~.answers,.custom-accordion .plus:checked~.answers {
  height: auto;
  opacity: 1;
  padding: 15px;
}

/*FAQ Toggle*/
.custom-accordion .plus {
  position: absolute;
  right: 0;
  margin-right: 10px;
  margin-top: 4px;
  z-index: 5;
  font-size: 2em;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease;

}

.custom-accordion .questions:checked~.plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);

}

.custom-accordion .questions {
  display: none;
}

/*END Accordion*/

/*Table*/
.custom-table table {
  min-width: var(--table-min-w);
  text-align: center;
}

.custom-table.table-container {
  max-width: 100%;
  height: var(--table-h);
  overflow: auto;
}

.custom-table table th,
.custom-table table td {
  white-space: normal;
  padding: 10px 20px;
  font-family: Arial;
  text-align: center;
}

.custom-table table tr th:first-child,
table td:first-child {
  position: sticky;
  left: 0;
  z-index: 10;
}

.custom-table table tr th:first-child {
  z-index: 11;
}

.custom-table table tr th {
  position: sticky;
  top: 0;
  z-index: 9;
}

.custom-table table td {
  background: #f9fafb;
}

.custom-table table th {
  color: #fff;
  background: #045041;
}
/*END Table*/
/*MISC*/
.align-left{
  text-align: left !important;
}
/*Flexbox*/
.flexbox-center {
  padding: 0;
  margin: 0;
  list-style: none;
  
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}
/*END MISC*/