@font-face {
    font-family: 'columbia';
    src: url(../fonts/Columbia-Serial-Light.woff) format('woff');

    font-display: swap;
}
@font-face {
    font-family: 'columbia-bold';
    src: url(../fonts/Columbia-Serial-Bold.woff) format('woff');
  }

  h2 {
    font-family: 'columbia-bold';
 }
.container {
    background: #101a2c;
    border: 2px solid #b3b3b3;
    border-radius: 18px;
    width: 650px;
    margin: 40px auto;
    padding: 30px 30px 20px 30px;
    box-shadow: 0 0 20px 2px #0006;
    position: relative;
    font-family: 'columbia';
  }
  .seal {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 70px;
    height: 70px;
    background: url('../images/seal.svg') no-repeat center center;
    background-size: contain;
    border-radius: 50%;
    border: 3px solid #f5e89e;
    box-shadow: 0 0 3px #0008;
  }
 .tabla .header {
    text-align: left;
    color: #fff;

    font-size: 2.2em;
    font-family: 'columbia';
    margin-top: 15px;
    margin-left: 90px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(211,211,211,0.8);
  }
  .sub-header {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    margin: 110px 0 10px 0;
    padding: 0 10px;
  }
  .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 7px;
  }
  .table th, .table td {
    font-size: 1em;
    text-align: center;
    padding: 8px 0;
    border: none;
  }
  .table th {
    background: none;
    color: #f5e89e;
    font-size: 1.05em;
    font-weight: bold;
  }
  .table th, .table td.country {
    background: #b3e0f7;
    color: #0d1a2b;
    text-align: left;
    padding-left: 14px;
    border-radius: 7px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  .table th, .table td.country.infoyes {
    font-family: 'columbia-bold';
  }
  .tariff {
    background: #e1f0fa;
    color: #0d1a2b;
    font-weight: bold;
    border-radius: 0;
    width: 85px;
  }
  .tariff-blue {
    background: #bfe1fa;
    color: #0d1a2b;
    font-weight: bold;
    border-radius: 7px;
    width: 85px;
  }
  .us-tariff {
    background: #ffe399;
    color: #0d1a2b;
    font-weight: bold;
    border-radius: 7px;
    width: 85px;
  }
  /* Special row coloring for alternating rows */
  .table tr:nth-child(even) .country {
    background: #e1f0fa;
  }
  .table tr:nth-child(even) .tariff-blue {
    background: #e1f0fa;
  }
  .table tr:nth-child(even) .us-tariff {
    background: #fff3c6;
  }
  .sealheader {
      position: absolute;
      top: 0%;
      left: 0%;
  }
  /* Responsive */
  @media screen and (min-width: 768px) {
      .tabla .header {
      margin-top: 40px;
      margin-left: 120px;
    }
  }
  @media (max-width: 768px) {
    .table th, .table td.country, .table th, .table td {
        font-size: .86em;
    }
    .container {
      width: 93vw;
      padding: 10px;
    }
    
    .seal {
      left: 10px;
      top: 10px;
      width: 50px;
      height: 50px;
    }
  }

  .paragraph p {
    font-family: 'columbia';
}

.paragraph p b {
    font-family: 'columbia-bold';
}

.noclick  {
    pointer-events: none;
}