.notificate-wrapper {
    bottom: 15px;
    right: 15px;
    position: fixed;
}

.notice-block {
    color: #000;
    display: none;
    position: relative;
    padding: 20px;
    /*max-width: 340px;*/
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #ffffff;
    margin-top: 15px;
    z-index: 9999;
    -webkit-box-shadow: 1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    1px 1px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         1px 1px 10px 0px rgba(50, 50, 50, 0.75);
}

.notice-block > a {
    text-decoration: none;
    color: #000!important;
}

.notice-data,
.notice-image {
    display: inline-block;
    vertical-align: top;
}

.notice-data {
    padding-left: 15px;
    width: 250px;
}

.notice-title {
    font-size: 16px;
    font-weight: bold;
}

.notice-close {
    background: url("../img/close-x.png");
    background-size: 24px;
    height: 24px;
    width:24px;
    position: absolute;
    top: 7px;
    right: 7px;
    font-size:12px;
    cursor: pointer;
    color: #999;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .notificate-wrapper {
        left: 15px;
        text-align: center;
    }
    .notice-image {
        float: none;
    }
    .notice-data {
        padding-left: 0;
        display: block;
        width: auto;
    }

}

#popup-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #ffa500;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 8px;
}

#popup-banner img {
  width: 100%;
  height: auto;
  display: block;
}

#close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

@media (max-width: 600px) {
  #popup-banner {
    width: 90%;
    right: 5%;
    left: 5%;
    bottom: 10px;
    padding: 10px;
  }

  #popup-banner img {
    max-height: 120px;
    object-fit: contain;
  }

  #close-btn {
    font-size: 24px;
    top: 2px;
    right: 5px;
  }
}
