/* Icons */
.icon {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
  .icon-launch {
    width: 20px;
    height: 20px;
  }
    
  .icon-found,
  .icon-found:after,
  .icon-found:before {
    width: 0; 
    height: 0; 
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 30px solid #006EB0;
  }
  
  .bg-darker-blue .icon-found,
  .bg-darker-blue .icon-found:after,
  .bg-darker-blue .icon-found:before {
    border-left-color: #fff;
  }
  
  .icon-found {
    position: relative;
    margin-left: 2rem;
  }
  
  .icon-found:after,
  .icon-found:before {
    position: absolute;
    top: -22px;
    content: '';
  }
  
  .icon-found:before {
    left: -10px;;
    opacity: 0.5;
  }
  
  .icon-found:after {
    left: 10px;
    opacity: 0.2;
  }
  
  .icon-info {
    width: 45px;
    height: 45px;
  }
  
  .icon-arrow-down {
    margin: 3rem auto 0;
    width: 28px;
    height: 45px;
    border: 1px dashed rgba(51, 133, 225, 0.3);
  }
  
  .icon-triple-arrow {
    margin-top: 2rem;
  }
  
  .icon-point-down {
    margin-bottom: 2rem;
    -webkit-transform: rotate(90deg);  
    -ms-transform: rotate(90deg);  
        transform: rotate(90deg);
  }
  
.icon-forward {
  margin-left: 0.5rem;
  width: 24px;
  height: 24px;
}
.icon-filter {
  margin-right: 0.7rem;
  width: 24px;
  height: 24px;
}
/* Icons */
/* 768px and smaller */
@media only screen and (max-width: 768px) { 
  
  /* Icon - Found on this page */
  
  .icon-found, .icon-found::after, .icon-found::before {
      width: 0;
      height: 0;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 30px solid #006EB0;
  }
  
    .icon-found::before {
      left: -10px;
    }
  
    .icon-found::after, 
    .icon-found::before {
      top: -20px;
    }
    
}