.ContentQuery {
    height: 200px;
    padding: 10px;
  }
  
  .containerCard {
    cursor: pointer;
    display: flex;
    border-radius: 10px;
    border: 1px solid var(--color-primary-disabled);
    width: 100%;
    height: 90%;
    transition: all .2s linear;
    border-bottom: 5px solid var(--color-primary-red);
  }
  .containerCard:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
    transform: scale(1.02);
  }

  
  .cardnumber {
    font-size: 16px;
  }

  .card {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'PFont-Light';
    padding: 20px;
    color: #272323;
    margin-bottom: 10px;
  }
  
  .cardContentPrice {
    display: block;
  }
  
  .cardTitle,
  .cardPrice {
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
  }
  
  .cardTitle span {
    font-size: 20px;
    font-weight: 700;
  }
  