
#alert { display: none; }

.container_alert {
  position: fixed;
  display: flex;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.container_alert .bg_close {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0px;
  top: 0px;
  color: inherit;
  text-decoration: none;
  background-color: rgba(240,240,240,.4);
  pointer-events: none;
  cursor: default;
}
.container_alert .bg_close.activate {
  pointer-events: inherit;
}
.container_alert .bg_close.active {
  pointer-events: all;
}
@supports (backdrop-filter: blur(20px)) {
  .container_alert .bg_close {
    background: none;
    backdrop-filter: blur(7px);
  }
}
.container_alert .alert {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background-color: rgba(17,215,113,.36);
  box-shadow: 0 0 50px #403232;
  margin-top: 20px;
  color: #fff;
}
.container_alert.validate .alert {
  background-color: rgba(17,215,113,.36);
}
.container_alert.error .alert {
  background-color: #ff00005e;
}
.container_alert.warn .alert {
  background-color: #ffa50063;
}
.container_alert .alert .content_message {
  padding: 30px 60px 25px;
}
.container_alert .alert .content_message a {
  position: relative;
  color: inherit;
  text-decoration: none;
}
.container_alert .alert .content_message a:before {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  left: 0px;
  bottom: 0px;
  background-color: currentColor;
  transform-origin: 25%;
  transform: scaleX(0);
  transition: .14s;
}
.container_alert .alert .content_message a:hover:before {
  transform: scaleX(1);
}
.container_alert .alert .detail {
  margin: 10px 0;
  opacity: .6;
}
.container_alert .alert .button_close {
  position: absolute;
  display: flex;
  height: 36px;
  width: 36px;
  right: 0px;
  top: 0px;
  color: inherit;
  align-items: center;
  justify-content: center;
  border-radius: 0 15px 0 15px;
  /*background-color: #849d2e59;*/
  background-color: #3894b833;
  text-decoration: none;
  cursor: pointer;
}
.container_alert .alert .content_button {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.container_alert .alert .content_button .button_action {
  display: inline-block;
  /*background-color: #849d2ea6;*/
  background-color: #05c4ff91;
  padding: 4px 15px;
  border-radius: 10px;
  cursor: pointer;
  color: inherit;
  font-size: .833em;
  text-decoration: none;
}

/* ANIM */
.container_alert,
.container_alert .alert,
.container_alert .bg_close {
  transition: .5s;
}

/**/
#alert ~ .container_alert {
  pointer-events: none;
}
@supports (backdrop-filter: blur(20px)) {
  #alert ~ .container_alert .bg_close {
    background: none;
    backdrop-filter: blur(0px);
  }
}
#alert:target ~ .container_alert {
  pointer-events: all;
}
@supports (backdrop-filter: blur(20px)) {
  #alert:target ~ .container_alert .bg_close {
    background: none;
    backdrop-filter: blur(7px);
  }
}
#alert ~ .container_alert .alert {
  transform: scale(.7);
  opacity: 0;
}
#alert:target ~ .container_alert .alert {
  transform: scale(1);
  opacity: 1;
}
