.agl-wrapper{
  width:100%;
  margin:20px 0;
  font-family:'Open Sans', Arial, sans-serif;
}

.agl-title{
  font-size:18px;
  font-weight:700;
  color:#222;
  margin:0;
  padding:14px 0 10px 0;
}

.agl-title::after{
  content:"";
  display:block;
  width:100%;
  margin-top:10px;
  border-bottom:2px dotted #8C6A2F;
}

/* DESKTOP */
.agl-grid{
  display:flex;
  border:1px solid #dcdcdc;
}

.agl-col{
  width:50%;
}

.agl-item{
  padding:14px;
  border-bottom:1px solid #dcdcdc;
  line-height:1.5;
}

.agl-col .agl-item:nth-child(even){
  background:#f9f9f9;
}

/* STATUS COLORS */
.yes{
  color:#15803d;
  font-weight:700;
}

.no{
  color:#b91c1c;
  font-weight:700;
}

.info{
  color:#8C6A2F;
  font-weight:700;
}

/* MOBILE */
@media (max-width: 767px){

  .agl-grid{
    display:block;
    border:none;
  }

  .agl-col{
    width:100%;
    margin-bottom:20px;
    border:1px solid #dcdcdc;
  }

  .agl-item:last-child{
    border-bottom:none;
  }
}