
#ast_message_container {
	position: fixed;
	bottom: 0px;
    right: 0px;
    left: 80vw;
	transition: all 0.6s ease-out;
	z-index: 1001;
}


.ast_message__item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 105px;
  max-width : 330px;
  margin-bottom: 20px;
  padding: 0 20px;
	
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 15px 20px 0px rgb( 0, 0, 0, .2 );

  transition: all .2s ease-in;
  
  z-index: 1001;
}
.ast_message__item.new {
	opacity:0;
	
}
.ast_message__item__avatar {
  width: 75px;
  height: 75px;
  overflow: hidden;
  margin-right: 20px;

  border-radius: 50%;
}

.ast_message__item__avatar img {
  width: 100%;
  height: 100%;
}

.ast_message__item__content { width: calc( 100% - 105px ); }
.ast_message__item__title,
.ast_message__item__message { display: block; }

.ast_message__item__title {
  letter-spacing: 2px;
  font-family: 'atvice', sans-serif;
  font-size: 17px;
}

.ast_message__item__message {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #929292;
}

.ast_message__item__option {
  width: 20px;
  height: 20px;
  margin: 8px 0;
  border-radius: 50%;
  color: #929292;
  opacity: 0;

  font-size: 10px;
  text-align: center;
  line-height: 20px;
 font-size: 1.3em;
  cursor: pointer;
  transition: all .2s;
}


.ast_message__item__option__container {
	margin-bottom: auto
}

/* .ast_message__item__option.archive { background-color: #3dc98c; } */

/* .ast_message__item__option.delete { background-color: #c93d4d; } */


/*
* Animation part
*/

.ast_message__item.callback:hover {
  background-color: #f7f7f7;
  transform: scale( 0.95 );
  box-shadow: 0px 5px 10px 0px rgb( 0, 0, 0, .2 );
}

.ast_message__item:hover .ast_message__item__option { opacity: 1; }

.ast_message__item.archive .ast_message__item__title,
.ast_message__item.delete .ast_message__item__title {
  color: white;
}

.ast_message__item.archive .ast_message__item__message,
.ast_message__item.delete .ast_message__item__message {
  color: #f3f3f3;
}

.ast_message__item.archive {
  background-color: #3dc98c;
  animation: archiveAnimation 1.5s cubic-bezier(0, 0, 0, 1.12) forwards;
  animation-delay: .4s;
}

.ast_message__item.delete {
  background-color: #c93d4d;
  /* animation-delay: .4s; */
}


@keyframes archiveAnimation{
  to {
    transform: translateX( 100px );
    opacity: 0;
  }
}




