.notice,
.update-nag,
.updated,
.error,
.is-dismissible {
    display: none !important;
}

.notice.notice-warning {
    display: none;
}




/* From Uiverse.io by Yaya12085 */ 
.cidi-notificaciones-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 650px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
}

.cidi-notificaciones-form .title {
  font-size: 28px;
  color: royalblue;
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.cidi-notificaciones-form .title::before,.cidi-notificaciones-form .title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: royalblue;
}

.cidi-notificaciones-form .title::before {
  width: 18px;
  height: 18px;
  background-color: royalblue;
}

.cidi-notificaciones-form .title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message, .signin {
  color: rgba(88, 87, 87, 0.822);
  font-size: 14px;
}

.signin {
  text-align: center;
}

.signin a {
  color: royalblue;
}

.signin a:hover {
  text-decoration: underline royalblue;
}


.cidi-notificaciones-form label {
  position: relative;
}

.cidi-notificaciones-form label .input {
  width: 100%;
  padding: 10px 10px 20px 10px;
  outline: 0;
  border: 1px solid rgba(105, 105, 105, 0.397);
  border-radius: 10px;
}

.cidi-notificaciones-form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: grey;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
}

.cidi-notificaciones-form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.cidi-notificaciones-form label .input:focus + span,.cidi-notificaciones-form label .input:valid + span {
  top: 30px;
  font-size: 0.7em;
  font-weight: 600;
}

.cidi-notificaciones-form label .input:valid + span {
  color: green;
}

.cidi-notificaciones-form .submit {
  border: none;
  outline: none;
  background-color: royalblue;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transcidi-notificaciones-form: .3s ease;
}

.cidi-notificaciones-form .submit:hover {
  background-color: rgb(56, 90, 194);
}

@keyframes pulse {
  from {
    transcidi-notificaciones-form: scale(0.9);
    opacity: 1;
  }

  to {
    transcidi-notificaciones-form: scale(1.8);
    opacity: 0;
  }
}


.dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.dot {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: #b3d4fc;
  animation: pulse 1.5s infinite ease-in-out;
}

.dot:last-child {
  margin-right: 0;
}

.dot:nth-child(1) {
  animation-delay: -0.3s;
}

.dot:nth-child(2) {
  animation-delay: -0.1s;
}

.dot:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }

  50% {
    transform: scale(1.2);
    background-color: #6793fb;
    box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
  }

  100% {
    transform: scale(0.8);
    background-color: #b3d4fc;
    box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
  }
}




.cidi-notificaciones-form .success {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 320px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  background: #EDFBD8;
  border-radius: 8px;
  box-shadow: 0px 0px 5px -3px #111;
}

.cidi-notificaciones-form .success__icon {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  margin-right: 8px;
}

.cidi-notificaciones-form .success__icon path {
  fill: #84D65A;
}

.cidi-notificaciones-form .success__title {
  font-weight: 500;
  font-size: 14px;
  color: #2B641E;
}

.cidi-notificaciones-form .success__close {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
}

.cidi-notificaciones-form .success__close path {
  fill: #2B641E;
}


.cidi-notificaciones-form .error-popup {
  background-color: #fef2f2;
  border: solid 1px #f87171;
}
.cidi-notificaciones-form .error-icon path {
  fill: #f87171;
}
.cidi-notificaciones-form .error-message {
  color: #991b1b;
}


.reset-form {
    text-align: center;
}

.cidi-notificaciones-form .flex {
  display: flex;
  width: 100%;
  gap: 6px;
}