.modalInfo {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 20px;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 300px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.modalInfo.modalInfoTopLeft {
  top: -100px;
}
.modalInfo.modalInfoTopLeft.on {
  top: -75px;
}
.modalInfo.on {
  transition: all 0.3s ease;
  opacity: 1;
}
.modalWindow {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.modalWindow.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.modalWindow .header {
  display: flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  gap: 10px;
  min-height: 45px;
}
.modalWindow .header .btnBackImageHome {
  font-size: 21px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
}
.intro-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-footer .btn {
  width: auto;
  text-decoration: underline;
}
.modalConfirm {
  position: absolute;
  width: -webkit-fill-available;
  background: rgba(0, 0, 0, 0.7);
  height: -webkit-fill-available;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 100;
}
.modalConfirm .modalConfirmDelete {
  position: absolute;
  width: 280px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  padding: 15px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modalConfirm .modalConfirmDelete .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.modalConfirm .modalInner {
  z-index: 101;
}
.modalConfirm .modalBg {
  position: absolute;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  top: 0;
  left: 0;
  z-index: 100;
}
