@import "../../assets/css/variables";

* {
  font-family: Roboto, 'Helvetica Neue',sans-serif;
}

section[myboard] {

  .border {
    // border: 1px dashed #3B9ECF;
    border:0px;
  }

  footer {
    $font-color: #4f4f50;
    font-size: 12px;
    background-color: #f5f5f5;
    border-top: 1px solid #d6d6d6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15px;
    //flex-basis: 30%;
    min-height: 100px;
    
    @media (min-height: $screen-md) and (orientation: portrait) {
      flex-basis: 40%;
    }

    @media (max-height: $screen-sm) {
      flex-basis: 25%;
    }

    @media (max-width: $screen-sm) and (orientation: landscape) {
      padding-top: 10px;
    }

    .created-by {
      color: $font-color;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 5px;
      .rss-footer-logo {
        width: 125px;
        height: 25px;
        margin-left: 5px;
      }
      a{
          line-height:0px;
      }
    }
    .privacy-policy {
      color: #005284;
    }
    .line-item {
      color: $font-color;
      margin-bottom: 5px;
      line-height:2px;
      font-weight: 400;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      text-align: center;

      .text-group {
        vertical-align:middle;
        @media (max-width: $screen-xs) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
          width: 80%;
        }
      }
    }
  }
}