/*------------------- ACCORDION ------------------------*/

.accordion-unit {
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-container { 
	border: 1px solid #e3e3e3;
  border-bottom: none;
	margin-bottom: 15px;
	overflow: hidden;
}

.trigger-button {
  border-bottom: 1px solid #e3e3e3;
  -webkit-transition: color, box-shadow 0.2s ease-out;
  -moz-transition: color, box-shadow 0.2s ease-out;
  -o-transition: color, box-shadow 0.2s ease-out;
  transition: color, box-shadow 0.2s ease-out;
  cursor: pointer;
  color: #333;
  display: inline-block;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 10px 20px 9px;
  width: 100%;
}

.trigger-button.active {
  color: #29a4f4;
}

.accordion-content {
  border-bottom: 1px solid #e3e3e3;
  color: #666;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 15px 20px;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-icon {
  display: inline-block;
  font-size: 22px;
  font-weight: 400;
  float: right;
  margin-left: 10px;
  line-height: 1.3;
}

.accordion-icon:before {
  content: "\f363";
  display: inline-block;
  font-family: "ionicons";
}	

.active .accordion-icon:before {
  content: "\f104";
  display: inline-block;
  font-family: "ionicons";
}

/*------------------- BOX ------------------------*/
.box {
  background: #FAFAFA;
  margin-bottom: 20px;
  padding: 30px;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
     -moz-transition: all 0.3s ease-in-out 0s;
      -ms-transition: all 0.3s ease-in-out 0s;
  text-shadow: none;
}

.cnt-left {
  text-align: left;
}

.cnt-right {
  text-align: right;
}

.cnt-center {
  text-align: center;
}

.box p:last-child {
  margin-bottom: 0;
}

.box-green {
  background: #2ECC71;
}

.box-red {
  background: #E74C3C;
}

.box-grey {
  background: #95A5A6;
}

.box-blue {
  background: #3498DB;
}

.box-orange {
  background: #E67E22;
}

.box-yellow {
  background: #F1C40F;
}

.box-black {
  background: #121212;
}