@use "../../../../assets/scss/customVariables.scss" as *;

.buttonsoftop {
  .moreFiltersbutton {
    background: #ffffff !important;
    border: 1px solid #13A407 !important;
    color: #13A407 !important;
    height: 47px;
    padding: 0 21px;
    border-radius: 7px;
  
    @media screen and (max-width: 790px) {
      display: none;
      
    }
  }
  .moreFiltersResp {
    background: #ffffff !important;
    border: 1px solid #13A407 !important;
    color: #13A407 !important;
    height: 47px;
    padding: 0 21px;
    border-radius: 7px;
    display: none;
  
    @media screen and (max-width: 790px) {
      display: block;
      
    }
  }
}




.card {
  flex: 1;
  row-gap: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 0px;
  margin-bottom: 20px;

  .title {
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    width: 100%;
  }

  .button {
    height: 33px;
    padding: 0 20px;
    border-radius: 100px;
    border: 1px solid $primary-color;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;

    color: $primary-color;
    font-size: 16px;
    text-transform: capitalize;
  }
}

.rowOfCards {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  .cardLimit {
    width: 47.5%;

    .inputRow {
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;

      .input {
        width: 47.5%;
        border: 1px solid #DDDDDD;
        padding: 0 10px;
        height: 38px;
        border-radius: 7px;
      }
    }
  }
  
}

.divisor {
  width: 100%;
  box-sizing: border-box;
  height: 1px;
  background-color: #DDDDDD;
}

.buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;

  .buttonStyle {
    padding: 0 43px;
    border-radius: 100px;
    height: 53.90px;
    background: #fff;
    border: 1px solid #13A407;
    color: #13A407;
  }
}
