.dialog {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9999999999999999999;
}

.ics-toast-container {
  display: flex;
  //top: 73px; being added from component on index basis.
  box-shadow: 0px 0px 6px 4px rgba(0, 0, 0, 0.4);
  min-width: 300px;
  max-width: 300px;
  min-height: 50px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: #3A134D;
  margin-bottom: 20px;
  font-family: "Raleway";
  font-size: 15px;
}

.ics-toast {
  display: flex;
  &__image {
    height: 20px;
    width: 20px;
    margin-left: 20px;
    margin-right: 15px;
    order: 1;
    flex-direction: row;
    align-self: center;
  }
  p {
    order: 1;
    flex-direction: row;
    align-self: center;
    margin-bottom: 0px !important;
  }
  &__close {
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    padding: 4px 6px;
    order: 1;
    flex-direction: row;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0px 5px;
    &:hover {
      color: #fff;
    }
  }
}
