.profile-saved-toast__container {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-top-width: 2px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -120%);
  transition: 1s transform;
}
.profile-saved-toast__container--show {
  transform: translate(-50%, 3px);
}
.profile-saved-toast__container--ibs-nav.profile-saved-toast__container--show {
  transform: translate(-50%, 84px);
}
.profile-saved-toast__container--main-nav.profile-saved-toast__container--show {
  transform: translate(-50%, 79px);
  z-index: 9999;
}
.profile-saved-toast__container--ms-sticky-nav.profile-saved-toast__container--show {
  transform: translate(-50%, 95px);
}
.profile-saved-toast__container--scrolling {
  transition: 0s transform;
}
.profile-saved-toast__msg {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 700;
  color: #da291c;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
.profile-saved-toast__welcome {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #222222;
  font-size: 1.3rem;
  line-height: 17px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .profile-saved-toast__container {
    padding: 20px 30px;
    gap: 30px;
  }
  .profile-saved-toast__container--ibs-nav.profile-saved-toast__container--show {
    transform: translate(-50%, 108px);
  }
  .profile-saved-toast__container--main-nav.profile-saved-toast__container--show {
    transform: translate(-50%, 78px);
  }
  .profile-saved-toast__container--ms-sticky-nav.profile-saved-toast__container--show {
    transform: translate(-50%, 55px);
  }
}
