.box-game {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-top: 30px;
  }

  .box-game .style-line {
    stroke: rgb(0, 0, 0);
  }

  .box-game .dot {
    border: solid 2px black;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: #fff;
    margin: 0;
  }
  .box-game .dot.active {
    background: #fba91a;
  }
  .box-game .dot.correct {
    background: greenyellow;
    pointer-events: none;
  }
  .box-game .dot.wrong {
    background: red;
  }
  .box-game img {
    max-width: 371px;
  }

  .box-game .connect-from .dot{
    margin-left: 10px;
  }
  
  .box-game .connect-to .dot{
    margin-right: 10px;
  }

  .box-game .connect-from {
    visibility: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .box-game .connect-from .item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }
  .box-game .connect-from .item .card,
  .box-game .connect-to .item .card{
    height: 100%;
  }
  .box-game .connect-from .item .card-body,
  .box-game .connect-to .item .card-body{
    display: flex;
    align-items: center;
  }
  .box-game .connect-to {
    visibility: visible;
    display: flex;
    flex-wrap: wrap;
  }
  .box-game .connect-to .item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-direction: row-reverse;
  }

  .box-game .connect-to .dot.wrong {
    pointer-events: none;
  }
  
  .box-game .middle {
      width: 100%;
      max-width: 350px;
  }

  .box-game .box-width{
    min-width: 300px; 
    max-width: 450px;
  }
  
  .box-game .middle svg {
    width: 100%;
    height: 100%;
  }