.container-alert {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 70px;
}

#toggle {
  -webkit-appearance: none;
}

.btn-disclaimer {
  position: absolute;
  z-index: 999;
  width: 43px;
  height: 43px;
  background: #11405e;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -12px;

  &:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
    transition: all 0.4s ease;
  }

  &:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease;
  }
}

.nav-disclaimer {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: #fff;
  width: 100%;
  border-radius: 5px;
  transform: translateY(0%);
  box-shadow: 2px 3px 10px 0 rgba(81, 81, 81, 0.1);
  border: 1px solid #e4e4e4;
  padding: 10px;
  pointer-events: none;
  display: none;

  ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  a {
    text-align: justify;
    margin: 20px 0;
    color: #050505;
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    padding: 20px;
    font-size: 12px;
    /* min-height: 350px; */

    &:hover {
      color: #23597a;
    }
  }
}

#toggle:checked ~ .nav-disclaimer {
  opacity: 1;
  transform: translateY(10%);
  pointer-events: auto;
  display: block;
}

#toggle:checked ~ .btn-disclaimer:before {
  transform: rotate(225deg);
}

#toggle:checked ~ .btn-disclaimer:after {
  transform: rotate(135deg);
}

@media (max-width: 640px) {
  .container-alert {
    width: 100%;
  }
}
