.radio-player-admin-notice {
  margin-bottom: 10px !important;
  display: flex;
  padding: 15px !important;

  .notice-main {
    display: flex;
    flex-direction: column;
  }

  .notice-image {
    margin-right: 15px;

    img {
      width: 90px;
    }
  }

  .notice-text {
    p {
      line-height: 1.5;
      font-size: .85rem;
      margin: 0 0 7px 0;
      padding: 0;
    }
  }

  .notice-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;

    a {
      margin-right: 15px;
      text-decoration: none;
      transition: all .3s ease-in-out;
      display: flex;
      align-items: center;
      padding: 5px;

      &:last-child {
        margin-right: 0;
      }

      i:first-child {
        margin-right: 5px;
      }

      i:last-child {
        margin-left: 5px;
      }

      &.button-primary {
        background: $radio_player_color;
        border-color: $radio_player_color_dark;

        &:hover {
          background: $radio_player_color_dark;
        }
      }

    }
  }

  .notice-overlay-wrap {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 9999;

    .notice-overlay {
      background: #fff;
      width: max-content;
      padding: 30px;
      border-radius: 15px;
      position: relative;

      h4 {
        margin-top: 0;
        margin-bottom: 10px;
      }

      &-actions {
        display: flex;
        flex-flow: column;
        line-height: 1.8;

        a {
          text-decoration: none;

          &:nth-child(2) {
            color: #000;
          }

          &:nth-child(3) {
            color: #777;
          }

          &:hover {
            color: $radio_player_color_dark;
          }

        }
      }

      .close-notice {
        position: absolute;
        top: -5px;
        right: -5px;
        border-radius: 30px;
        border: 1px solid transparent;
        font-size: 16px;
        cursor: pointer;
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease-in-out;

        &:hover {
          color: #ff9966;
          border-color: #ff9966;
        }
      }
    }
  }

}

/*---- addon player notice -----*/
.radio-player-proxy-addon-notice,
.radio-player-ads-update-notice {
  .notice-image {
    display: flex;
    align-items: center;

    img {
      width: 100px;
    }
  }

  .notice-main {
    flex-direction: row;
    align-items: center;
    width: 100%;

    .notice-text {

      .notice-title {
        margin-top: 0;
        margin-bottom: 7px;

        .offer-suffix {
          font-size: 1rem;
          color: #444;
        }

        .offer-title {
          margin-left: 10px;
          background: #ff9966;
          color: #fff;
          padding: 2px 5px;
          border-radius: 5px;
        }

      }
    }

  }

  .coupon-code-wrap {
    margin: 0 30px 0 auto;

    img {
      max-width: 200px;
    }
  }

  .notice-actions {
    margin-top: 0;
    margin-right: 20px;
    margin-left: auto;

    a {
      padding: 7px 14px;
    }

  }

}

.radio-player-ads-update-notice {

}


/*---- rating notice -----*/
.radio-player-rating-notice {
  display: flex;
  padding: 10px;

  .notice-main {
    display: flex;
    flex-direction: column;
  }

  .notice-image {
    margin-right: 15px;

    img {
      width: 90px;
    }
  }

  .notice-text {
    p {
      line-height: 1.5;
      font-size: .875rem;
      margin: 0;
      padding: 0;
    }
  }

  .notice-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;

    a {
      margin-right: 15px;
      text-decoration: none;
      transition: all .3s ease-in-out;

      &:last-child {
        margin-right: 0;
      }

      &.button-primary {
        background: $radio_player_color_dark;
        border-color: $radio_player_color_light;
        padding: 3px 10px;

        &:hover {
          background: $radio_player_color;
        }
      }

    }
  }


}


