.transactionsForm {
    width: 100%;
  }

.crmtransactions_grid {
    display: grid;
    grid-template-columns: 75px repeat(4, 1fr);
    grid-template-rows: 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.crmtransactions_grid:nth-child(odd) {
    background: white;
}

.crmtransactions_grid > div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
}
.crmtransactions_grid > div > img {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    max-width: 100%;
}
.crmtransactions__buttonSection {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 1rem 0;
  }
.crmPropertySearch__form{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 1rem 0;
  }

  .crmPropertySearchResult__title{
    font-weight: bolder;
    padding-bottom: 2px;
  }

  .crmPropertySearchResult__item{
    display: flex;
    justify-content: left;
    padding: 2px 0;
  }

  .crmPropertyAdd__form > label {
    font-weight: bolder;
}
.crmtransactions_headers {
    font-weight: bolder;
    font-size: x-large;
    border-bottom: 1px solid black;
    padding: 8px 8px 8px 0;
}
.crmtransactions_borders {
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    background-color: transparent;
}

@media screen and (max-width: 991px) {
    .crmtransactions__buttonSection {
      padding: 0;
    }
  }