.Modal-alerta {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);

  .modal {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 455px;
    background-color: #fff;
    padding: 36px 28px;
    box-shadow: 0px 0px 24px 0px rgba(0, 25, 49, 0.08);
  }

  .modal-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    text-align: center;
  }

  .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #bdffcc;
    border-radius: 100%;

    i {
      font-size: 22px;
      color: #2e9044;
    }
  }

  .content {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .Button {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: none;
    background-color: #110f35;
  }

  &._negative {
    .icon {
      background-color: #ffbdbd;

      i {
        color: #cf4646;
        font-size: 28px;
      }
    }
  }
}
