/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.edit-profile-notification {
  background-color: var(--color-new-modal-green-200);
  color: var(--color-white-universal);
  display: grid;
  padding: 0rem;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 50px;
  position: sticky;
  top: 0;
  z-index: 1;
  animation: slide-up 0.3s;
}

.notification-error {
  background-color: var(--color-new-red-100);
}

.popup a {
  color: var(--color-new-cyan)
}

/* .edit-profile-gradient {
      position: absolute;
      width: 100%;
      height: 20rem;
      background: url("../assets/profile-gradient.png");
      top: 0;
      z-index: -1;
      left: 0;
      background-size: cover;
      background-repeat: no-repeat;
      object-fit: cover;
      background-position: bottom;
  } */

/* The typewriter cursor effect */
/* @keyframes blink-caret {
    from,
    to {
      border-color: transparent;
    }
    50% {
      border-color: orange;
    }
  } */
.edit-profile-gradient {
  display: none;
}

@media screen and (min-width: 1176px) {
  .edit-profile-gradient {
    position: absolute;
    display: block;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 217px;
    overflow: hidden;
  }
}

.edit-profile-gradient video {
  width: 100%;
  height: 100%;
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-notification-edit {
  overflow-wrap: break-word;
  grid-column-start: 3;
  grid-column-end: 4;
  grid-row-start: 1;
  place-self: end;
  cursor: pointer;
  padding: 0.8rem 2rem;
}

.showNotif {
  transform: scale(1);
  transform-origin: center;
}

.edit-profile-notification-content {
  overflow-wrap: break-word;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  place-self: center;
}

.confirm-btn-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 32px;
  gap: 10px;
}

.profile-cancel {
  /* background-color: var(--color-new-orange); */
  border: 1px solid var(--color-new-connect-orange);
  /* border: none; */
  padding: 0.5rem 4rem;
  border-radius: 3px;
  color: var(--color-white-universal);
  cursor: pointer;
  background: inherit;
}