#field {
    margin: 0 auto;
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 225.5%;
    vertical-align: top;
    overflow: hidden;
    height: 0;
    background: darkgreen;
  }
  
  .play line:hover{
    stroke: #666;
    transition: all 175ms ease;
  }
  .ui-dialog {
    max-width: 992px;
  }
  @media only screen and (max-width : 992px) {
    .ui-dialog {
      max-width: 100vw;
    }
  }
  
  .field-svg {
    background-color: #034e03;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* CSS to animate the pass lines. */
  g.play {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: dash 5s linear forwards;
    cursor: pointer;
  }
  
  @keyframes dash {
    to {
      stroke-dashoffset: 0;
    }
  }
  .text-blue-pats {
    color: #002244 !important;
  }
  
  .bg-blue-pats {
    background-color: #002244 !important;
  }
  
  .border-blue-pats {
    border-color: #002244 !important;
  }
  
  .text-red-pats {
    color: #c60c30 !important;
  }
  
  .bg-red-pats {
    background-color: #c60c30 !important;
  }
  
  .border-red-pats {
    border-color: #c60c30 !important;
  }
  
  .pats-red {
    color: #C60C30;
  }
  .pats-blue {
    color: #002244;
  }
    