.imers-sn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 99999;
}

.imers-sn .n {
  height: 100px;
  width: 310px;
  border: 0;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 2px rgba(11, 10, 10, 0.2);
  background-color: #fff;
  position: relative;
  cursor: pointer;
}

.imers-sn .n .nc {
  display: flex !important;
  align-items: center;
}

.imers-sn .n .nc .iw img {
  max-height: 75px;
  width: 90px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  object-fit: cover;
}

.imers-sn .n .nc .cw {
  margin: 0;
  height: 100%;
  color: gray;
  padding: 0;
  border-radius: 0 6px 6px 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.imers-sn .n .nc .cw .c {
  font-family: inherit !important;
  margin: 0 !important;
  padding: 0.5rem;
  padding-left:0;
  font-size: 14px;
  line-height: 1.2rem;
}

.imers-sn .n .nc .cw .c small {
  margin-top: 3px !important;
  display: block !important;
  font-size: 12px !important;
  opacity: 0.8;
}

.imers-sn .n .cl {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform: rotate(45deg);
  opacity: 0;
}

.imers-sn .n .cl::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 5px;
}

.imers-sn .n .cl::after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: gray;
  position: absolute;
  left: 5px;
}

.imers-sn .n:hover .cl {
  opacity: 1;
}

.imers-sn .desc-wrap{
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    margin-top: 4px;
}