/* =============
   Notification
============= */

.toast-notification-corner {
  position: fixed;
  display: block;
  margin: 11px;
  z-index: 1050;
  top: 0px;
  right: 0px;
}

.toast-notification-corner:hover {
  transition: 0.5s;
  cursor: pointer;
}

.toast-notification {
  position: relative;
  min-height: 52px;
  min-width: 250px;
  color: #000000;
  background-color: #ffdf80;
  border: 1px solid #ffc107;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 19%), 0 6px 6px rgb(0 0 0 / 23%);
}

.toast-notification .image {
  display: table;
  position: absolute;
  height: auto;
  width: auto;
  left: 25px;
  top: 50%;
  font-size: 24px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.toast-notification .text-wrapper {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 10px 10px 10px 10px;
  clear: both;
}

.toast-notification .title {
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 5px;
  font-weight: bold;
}

.toast-notification .text {
  font-size: 14px;
  font-weight: normal;
  max-width: 360px;
  vertical-align: middle;
}

/* Small and medium screens */

@media screen and (max-width: 1024px) {
  .toast-notification-corner {
    position: relative !important;
    display: flex;
    justify-content: center;
  }
}
