#msg, #log{
  font-size: 22px;
  font-weight: 600;
  color: rgb(18, 145, 60);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#loadingOverlayDrop{
  display: none;
  width: 100%;
  position: relative;
  z-index: 99;

  left: 0;
  overflow: hidden;
  top: 0;
  z-index: 9999999;
  height: 100%;
  position: fixed;
  width: 100%;
  background: #000;
  opacity: 0.8;
  display: none;
  margin: 0px auto;
  text-align: center;
  align-items: center;
  justify-content: center;
}
#loadingOverlayDrop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 50%;
  text-align: center;
}
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 99999;
    bottom: 30px;
    font-size: 17px;
    left: 50%;
    white-space: nowrap;
    overflow: hidden;
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
    animation: fadein 0.5s, fadeout 0.5s 4s;
}
.btn-styles{
  background-color: #04AA6D; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 25px;
}

.btn-styles:hover{
  cursor: pointer;
  background-color: #069460; /* Green */
}

#mycanvas{
  max-height: 100%;
}

/* Para pantallas más grandes (PC) */
@media (min-width: 768px) {
    #imagen {
      width: 50%;
    }
  }

  /* Para dispositivos movies */
  @media (max-width: 767px) {
    #imagen {
      width: 80%;
    }
  }