.ats-toaster {
  position: fixed;
  top: 8px;
  display: flex;
  background-color: #ffeacb;
  border: 1px solid #f7dd97;
  padding: 0px 0px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 60px;
  z-index: 9999;
}

.ats-toaster-left {
  display: flex;
  font-size: 24px;
  background-color: #efba2a;
  margin-left: -1px;
  margin-top: -1px;
  margin-bottom: -1px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.ats-toaster-middle {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

  .ats-toaster-middle p {
    margin: 0;
    font-size: 16px;
    color: #1a1a1a;
    font-family: OpenSans, Arial, sans-serif;
  }

.ats-toaster-right {
  display: flex;
  margin-left: auto;
  padding: 8px;
}

.ats-toaster-right-divider {
  width: 2px;
  height: 100%;
  background-color: #f7dd97;
  margin: 0px 4px;
  align-self: stretch;
}

.ats-toaster-right-button-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #5843c8;
  padding: 0px 16px;
  min-width: 60px;
  border-radius: 12px;
}

  .ats-toaster-right-button-close:hover {
    background-color: #c9d9f8;
  }

.po-icon.po-icon-exclamation.icon-left {
  font-size: 24px !important;
}

i.po-icon.po-icon-close.icon-right {
  font-size: 20px !important;
  padding: 2px;
}

@media screen and (min-width: 961px) {
  .ats-toaster {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
  }

  .ats-toaster-left {
    padding: 16px;
  }
}

@media screen and (max-width: 960px) {
  .ats-toaster {
    width: 85%;
    left: 30%;
    transform: translateX(-30%);
  }

  .ats-toaster-left {
    padding: 16px 8px;
  }

  .ats-toaster-right-button-close {
    display: flex;
    padding-top: 14px;
  }
}
