#apbd-sn-fixed-div {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  position: relative;
  &.apbd-sn-on-scroll{
    position: fixed;
    box-shadow: 0 2px 10px -1px rgba(0, 0, 0, 0.55);
  }
}
#apbd-sn-fixed-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom:0;
  z-index: 9999;

  .apbd-simple-noti-item:first-child {
    box-shadow: 0 -2px 10px -5px rgba(0, 0, 0, 0.55);
  }
}
.apbd-simple-noti-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9e9f7;
  position: relative;
  text-align: center;
  padding: 0.5rem;

  &.apbd-sn-pos-fixed{
  }

  &.apbd-noti-footer-bar {

  }


  .noti-btn {
    margin: 0 10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
    border-radius: 0.2rem;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    color: #fff;
    background-color: #28a745;
    border-color: transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline:none;
    text-decoration: none;
    position: relative;
    -moz-box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.70);
    -webkit-box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.70);
    box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.70);
    &:after {
      position: absolute;
      content: " ";
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      border-radius: 0.2rem;
      opacity: 0;
      -webkit-transition:  all 200ms ease;
      -moz-transition:all 200ms ease;
      -ms-transition: all 200ms ease;
      -o-transition:all 200ms ease;
      transition: all 200ms ease;
    }

    &:hover{
      box-shadow: 0 0 7px -2px rgba(0, 0, 0, 0.90);
      &:after {
        opacity: 1;
        -moz-box-shadow:  inset 0 0 6px rgba(0, 0, 0, 0.24);
        -webkit-box-shadow:  inset 0 0 6px rgba(0, 0, 0, 0.24);
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.24);
      }

    }
  }
  .apbd-rm-noti{
    position: absolute;
    right: 15px;
    top: 7px;
    font-size: 18px;
    color: #000000;
    text-shadow: 0 0 7px #ffffff;
    cursor: pointer;
  }

}