.header-item{
  height: 180px;
  width: 100%;
}

/* Home page --------------------------------------*/
.ibgd {
  position: relative;
  z-index:-1
}

#hbi { 
  width: 100%; 
  height: 100%; 
  opacity: 0.5; 
}

.yellow-line-right {
  position: absolute;
  height: 170px;
  border-left: 6px solid #F7B32B; 
  margin-left: 10px; 
}

.text-left-home{
  text-align: left;
  border-right: 6px solid #F7B32B;
  padding-right:20px;
  height:230px;
}

.text-left2-home{
  text-align: left;
  border-left: 6px solid #F7B32B;
  padding-left:20px;
  height:200px;
}

.dashed-line-left{
  padding-left:80px;
  margin-top:80px;
  width:60%;
}

.dashed-line-right{
  margin-top:80px;
  width:60%;
  float: right;
  padding-right:80px;
}

/* Results page ----------------------------------------------------------------*/

.hidden {
  display: none;
}

.content-container-results {
  display: flex;
  align-items: center; 
}

* {
  margin: 0;
}
      
.route {
  width: 90%;
  z-index: 1;
  position: absolute;
}
      
.svg {
  width: 90%;
  height: auto;
}

.content-container {
  display: flex;
  align-items: center; 
  width:400px;
}

.dottedline img {
  display: block;
  margin: 0 auto; 
}

.textcolumn{
  align-items: left;
  border: solid 4px #F7B32B;
  border-radius: 15px;
  padding: 3px;
  background-color: #173037;
}

.dottedline {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  width: 300px;
}
      
.box {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
  opacity: 0;
  position: absolute;
}
      
.box:nth-child(even) {
  right: 0;
}
      
.box:nth-child(odd) {
  left: 0;

}

.placeholder {
  display: flex;
}

.columntext {
  flex: 1;
}

.dottedline {
  flex: 1;
  position: center;
}


/* Human practices --------------------------------------------------------------*/
.yellowdown {
  background-color: #98CC9B;
  color: white;
  cursor: pointer;
  padding: 15px 20px;
  text-align: justify;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 10px/10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.textboiii {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
  background-color: #253B41;
}
.picto {
  width: 14%;
  margin-left:20px;
  cursor:pointer;
}

.picto:hover {
    scale:1.05;
}

.yes .acl:after {
  content: ""; /* Unicode character for "minus" sign (-) */
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.acl:after {
  content: "";
  border: solid white;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;

  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.hppopup {
  position: relative;
  display: inline-block;
  cursor: pointer;
}


.hppopup .hppopuptext {
  visibility: hidden;
  width: 160px;
  background-color: #98CC9B;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

.svgtimeline {
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #98CC9B;
  border-radius: 25px;
  padding: 10px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}


/* Popup arrow */
.hppopup .hppopuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
  background-color: whitesmoke;
}

.hppopup .show {
  visibility: visible;
}

/* table */

table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
}

table td, table th {
  border: 1px solid #ddd;
  padding: 8px;
}

table tr:nth-child(even){background-color: #253B41;}

table tr:hover {background-color: #385158;}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}

/*tr:first-child {
  border-bottom: 3px solid white;
}

td:not(:last-child) {
  border-right: 3px solid white;
} */

.column {
  float: left;
  width: 20%;
}
.column4 {
  float: left;
  width: 25%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
 
