* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes aparecer {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes aparecer {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#cont-mensaje .fondo {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: rgba(0, 56, 31, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  z-index: 1000;
  top: 0;
  -webkit-animation: aparecer 0.5s ease;
          animation: aparecer 0.5s ease;
}

#cont-mensaje .fondo .mensaje {
  background: #fff;
  border: #F9F9F9 solid 20px;
  width: 100%;
  max-width: 500px;
  min-width: 250px;
  padding: 20px;
  position: relative;
  overflow-y: hidden;
  -webkit-box-shadow: 0 0 10px 0 #000;
          box-shadow: 0 0 10px 0 #000;
}

@media screen and (max-height: 500px) {
  #cont-mensaje .fondo .mensaje {
    overflow-y: scroll;
  }
}

@media screen and (max-width: 500px) {
  #cont-mensaje .fondo .mensaje {
    border: #F9F9F9 solid 5px;
  }
}

@media screen and (max-width: 300px) {
  #cont-mensaje .fondo .mensaje {
    border: 0;
    padding: 10px;
  }
}

#cont-mensaje .fondo .mensaje i {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 150px;
  font-weight: 800;
  padding: 2px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: red;
  text-shadow: 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000;
}

#cont-mensaje .fondo .mensaje i:hover {
  background: red;
  color: #fff;
  border: #000 solid 1px;
}

#cont-mensaje .fondo .mensaje .logo {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-top: 10px;
  -ms-grid-columns: 50px auto;
      grid-template-columns: 50px auto;
  grid-gap: 5px;
}

@media screen and (max-width: 500px) {
  #cont-mensaje .fondo .mensaje .logo {
    -ms-grid-columns: 30px auto;
        grid-template-columns: 30px auto;
  }
}

@media screen and (max-width: 300px) {
  #cont-mensaje .fondo .mensaje .logo {
    margin-bottom: 10px;
    -ms-grid-columns: 30px 100px;
        grid-template-columns: 30px 100px;
  }
}

#cont-mensaje .fondo .mensaje .logo img {
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 500px) {
  #cont-mensaje .fondo .mensaje .logo img {
    width: 30px;
    height: 30px;
  }
}

#cont-mensaje .fondo .mensaje .logo h3 {
  font-size: 25px;
  margin: 0;
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  #cont-mensaje .fondo .mensaje .logo h3 {
    font-size: 15px;
  }
}

@media screen and (max-width: 300px) {
  #cont-mensaje .fondo .mensaje .logo h3 {
    font-size: 13px;
  }
}

#cont-mensaje .fondo .mensaje .info {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
}

#cont-mensaje .fondo .mensaje .info p {
  margin: 0;
  text-align: justify;
}

@media screen and (max-width: 500px) {
  #cont-mensaje .fondo .mensaje .info p {
    font-size: 10px;
  }
}

@media screen and (max-width: 300px) {
  #cont-mensaje .fondo .mensaje .info p {
    font-size: 8px;
  }
}
/*# sourceMappingURL=mensaje.css.map */