html {
    padding:0;
    margin:0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    background: url(../img/bgmain.jpg) no-repeat center center fixed;
    background-size: cover;

  }

  h1 {
    color: #292b4e;
    text-align: center;
    font-size: 40px;
    margin-top: 0px;
  }

  .container {
    display: flex;
    padding: 20px;
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
  }

  h2 {
    margin-top: 0px;
  }

  .col {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
  }

  .col.col-1 {
    width: 40%;
  }

  .col.col-2 {
    width: 60%;
  }

  @media (max-width: 800px) {
    .container {
      flex-direction: column;
    }

    .col.col-1,
    .col.col-2 {
      width: 90%;
    }

    .col {
      padding:0px;
    }
    h2 {
      padding:10px;
    }
  }

  h3 {
    margin: 0px;
  }

  .queue-block {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
  }

  .bgcolor-white {
    background: rgba(255, 255, 255, 0.5);
  }

  label {
    display: block;
    color: #292b4e;
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
  }

  input {
    width: calc(100% - 15px);
    border-radius: 10px;
    height: 36px;
    border:1px solid #ccc;
    margin-top: 4px;
    color: #292b4e;
    font-weight: 700;
    padding: 0px 10px;
  }

  select {
    width: calc(100% - 10px);
    padding: 0px 10px;
    margin-top: 4px;
    border-radius: 10px;
    height: 36px;
    border:1px solid #ccc;
    margin-top: 4px;
    font-weight: 700;
  }

  button {
    padding: 20px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #292b4e;
    width: 100%;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  button:hover {
    background-color: #1c1d35;
  }

  #output {
    white-space: pre-wrap;
  }

  .form-group {
    width: calc(100% - 10px);
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
  }

  .form-group div {
    width: 48%;
    }

    .loader {
        margin: 20px auto !important;
        width: 50px;
        padding: 8px;
        aspect-ratio: 1;
        border-radius: 50%;
        background: #292b4e;
        --_m: 
            conic-gradient(#0000 10%,#000),
            linear-gradient(#000 0 0) content-box;
        -webkit-mask: var(--_m);
                mask: var(--_m);
        -webkit-mask-composite: source-out;
                mask-composite: subtract;
        animation: l3 1s infinite linear;
    }

    @keyframes l3 {to{transform: rotate(1turn)}}

    #output {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
        border-radius: 10px;
    }

    p, pre {
        font-size: 18px;
        line-height: 24px;
        margin: 0px;
        color: #292b4e;
    }

    h3.title_estrategia {
        color: #292b4e;
        margin: 30px 0px 10px 0px;
        font-size: 30px;
    }

    footer {
    width: 100%;
    height: auto;
    padding: 15px 0px 0px 0px;
    background-color: #fff;
}

footer .logo {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    height: auto;
    display: block;
    padding:15px
}
p.footer-text {
    text-align: center;
    font-size: 17px;
    color: #292b4e;
    margin: 0px;
    display: block;
}

.header-img_cola {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 20px auto 10px auto;
    height: auto;
  }

.video_container {
  width: 100%;
  height: auto;
  margin-top: 15px;
}

.video_container h2 {
  margin-bottom: 5px;
}

video {
  width: 100%;
  height: auto;
}

.hidden {
  display: none;
}