.alcasnackbar {
  visibility: hidden;
  opacity: 0;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  min-width: 310px;
  height: 67px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  border-radius: 6px;
  padding: 15px;
  position: fixed;
  z-index: 9999;
  right: 25px;
  top: 0px;
  display: flex;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
}

.alcasnackbar span {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  font-weight: normal;
  color: #ccc;
  cursor: pointer;
  padding: 6px 12px;
}

.alcasnackbar .alcasnackbarload {
  width: 100%;
  position: absolute;
  bottom: 0px;
  height: 4px;
  background: #CCC;
  left: 0px;
  border-radius: 0px 0px 0px 6px;
}

.alcasnackbar i {
  background: #2ad2c9;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: normal;
  margin-right: 15px;
}

.alcasnackbar.alcasnackbarshow {
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.alcasnacktxt p {
  font-weight: bold;
}

@media (max-width: 767px) {
  .alcasnackbar {
    right: 15px;
  }
}