.ma_notif_icon_wrap {
  position: relative;
  width: 35px;
  height: 35px;
  display: inline-block;
  top: 1px;
  margin: 0 10px;
}
.ma_notif_icon_wrap .ma_icon {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  top: 4px;
}
.ma_notif_icon_wrap .ma_icon svg {
  width: 20px;
  height: 20px;
  animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite;
  backface-visibility: hidden;
  transform-origin: top center;
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
  fill: #e91e63;
}
.ma_notif_icon_wrap .ma_icon .count {
  position: absolute;
  top: 2px;
  right: -5px;
  background: #fcce45;
  color: #121212;
  height: 16px;
  padding: 0;
  font-size: 11px;
  min-width: 16px;
  text-align: center;
  border-radius: 50%;
}
.ma_notif_icon_wrap .ma_messages {
  position: absolute;
  top: calc(100% + 10px);
  display: none;
  background: #fff;
  border: 1px solid #F5F5F5;
  border-radius: 4px;
  width: 200px;
  font-size: 12px;
  padding: 10px;
  z-index: 99999;
}
.ma_notif_icon_wrap .ma_messages .message {
  padding: 3px 5px;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ma_notif_icon_wrap .ma_messages .message:last-child {
  border-bottom: none;
}
.ma_notif_icon_wrap .ma_messages a {
  width: 100%;
  display: block;
  text-align: center;
  background: #00bcd4;
  color: #fff;
  font-size: 12px;
  padding: 6px;
}
@media (max-width: 938px) {
  .ma_notif_icon_wrap {
    position: absolute;
    top: 23px;
    left: 130px;
    z-index: 9;
  }
}

#ma_notif_list h1 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 13px;
}
#ma_notif_list .notif {
  display: flex;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#ma_notif_list .notif:nth-child(2n) {
  background: #f5f5f5;
}
#ma_notif_list .notif.seen .message {
  font-weight: normal;
}
#ma_notif_list .notif .message {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(100% - 104px);
  padding-left: 10px;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
}
#ma_notif_list .notif .create_date {
  width: 104px;
  font-size: 12px;
}

.notif_view {
  padding: 5px 15px 15px;
  font-size: 13px;
}

.ma_back_cover {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #00000094;
  opacity: 0.75;
  position: fixed;
  top: 0;
  z-index: 999;
}

.ma_modal {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.ma_modal * {
  box-sizing: border-box;
}
.ma_modal .ma_modal_inner {
  margin: 20px auto 20px;
  max-width: 1000px;
  height: 100%;
  padding: 10px;
}
.ma_modal .ma_modal_inner .ma_modal_main {
  border-radius: 2px;
  -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  max-height: calc(100% - 36px);
  overflow: auto;
  position: relative;
  opacity: 0;
  top: -30px;
  transition: 0.5s all;
}
.ma_modal .ma_modal_inner .ma_modal_main::-webkit-scrollbar {
  width: 5px;
}
.ma_modal .ma_modal_inner .ma_modal_main::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.ma_modal .ma_modal_inner .ma_modal_main::-webkit-scrollbar-thumb {
  background: #888;
}
.ma_modal .ma_modal_inner .ma_modal_main::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.ma_modal .ma_modal_inner .ma_modal_main.ma_show {
  opacity: 1;
  top: 0;
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_header {
  padding: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_header .title img {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_header .close {
  width: 30px;
  height: 30px;
  font-size: 20px;
  position: absolute;
  left: 10px;
  top: 10px;
  color: #fff;
  font-family: tahoma;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_header .close:before {
  content: "x";
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_content img {
  max-width: 100%;
  height: auto;
}
.ma_modal .ma_modal_inner .ma_modal_main .ma_modal_footer {
  padding: 10px;
  border-top: 1px solid #ccc;
  margin-top: 10px;
}

@keyframes bellshake {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  85% {
    transform: rotate(-2deg);
  }
  92% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0);
  }
}

/*# sourceMappingURL=style_notification.css.map */
