@mixin cwui-dept-contact {
  .dept-contact {
    margin-bottom: rem-calc(30);
  
    p {
      font-size: rem-calc(14);
    }
  
    small {
      font-size: rem-calc(12);
    }
  
    &__header {
      background: #ddd7c9;
      border-radius: $global-radius $global-radius 0 0;
      color: #6f695d;
      font-size: rem-calc(20);
      font-weight: 300;
      padding: rem-calc(5 10 0 10);
      text-transform: uppercase;
    }
  
    &__content {
      padding: rem-calc(10);
  
      :last-child {
        margin-bottom: 0;
      }
    }
  
    &__footer {
      padding-left:  rem-calc(10);
  
      :last-child {
        margin-bottom: 0;
      }
    }
  }
  
  
  .dept-contact--alt {
    .dept-contact__header {
      background: transparent;
      color: $chico-red;
      font-weight: normal;
  
      .icon {
        color: #777;
        margin-left: rem-calc(5);
      }
    }
  
    .dept-contact__content {
      border: 1px solid #dcdad5;
      border-left-width: 0;
    }
  
    .dept-contact__header,
    .dept-contact__content,
    .dept-contact__footer {
      padding-left: 0;
    }
  
    .dept-contact__content + .dept-contact__footer {
      margin-top: rem-calc(10);
    }
  }
}
