.customers {
	  font-family: Arial, Helvetica, sans-serif;
	  border-collapse: collapse;
	  width: 90%!important;
	}

	.customers td, .customers th {
	  border: 1px solid #ff6600;
	  padding: 8px;
	}

	/*.customers tr:nth-child(even){background-color: #f2f2f2;}*/

	.customers tr:hover {background-color: #ddd;}

	.customers th {
	  padding-top: 12px;
	  padding-bottom: 12px;
	  text-align: left;
	  background-color: #ff6600;
	  color: white;
	}
	@import url(https://fonts.googleapis.com/css?family=Dosis:500);

body{
  background: #F1F1F1;
}

.containert{
  margin: auto;
}

.timelinet{
  counter-reset: year 2016;
  position: relative;
  float: left;
  list-style: none;
  text-align: left;
  margin: 0;
  display: inline;
   clear: both;
}

.timelinet li{
  list-style: none;
  float: left;
  /*width: 33.3333%;*/
  margin-left:20px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Dosis', sans-serif;
}
@media (max-width:960px) { 
	.timelinet li {
		float:none;
		display:block;
	}
	.timelinet li{
		margin-left:0;
	}
	.timelinet li:after{
		display:none;
	}
	.containert {
		margin-top:20px;
	}
}
ul:nth-child(1){
  color: #fb6501;
}

.timelinet li:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  width: 50px;
  height: 50px;
  border: 3px solid #ff6600;
  border-radius: 50%;
  display: block;
  text-align: center;
  line-height: 50px;
  margin: 0 auto 10px auto;
  background: #F1F1F1;
  color: #ff6600;
  transition: all ease-in-out .3s;
  cursor: pointer;
}

.timelinet li:after{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: grey;
  top: 25px;
  left: -50%;
  z-index: -999;
  transition: all ease-in-out .3s;
}

.timelinet li:first-child:after{
  content: none;
}
.timelinet li.active{
  color: #555555;
}
.timelinet li.active:before{
  background: #ff6600;
  color: #F1F1F1;
}

.timelinet li.active + li:after{
  background: #fb6501;
}
#modal-background {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        opacity: .50;
        -webkit-opacity: .5;
        -moz-opacity: .5;
        filter: alpha(opacity=50);
        z-index: 1000;
    }
    
    #modal-content {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
        background-color: white;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        box-shadow: 0 0 20px 0 #222;
        box-shadow: 0 0 20px 0 #f95c19;
		-webkit-box-shadow: 0 0 20px 0 #f95c19;
        display: none;
        padding: 10px;
        width: 90%;
        z-index: 999999;
    }

    #modal-background.active, #modal-content.active {
        display: block;
    }