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

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  gap: 20px;

  .title {
    font-weight: 700;
    font-size: 45px;
    color: #000000;

    @media screen and (max-width: 660px) {
      font-size: 30px;
    }
  }

  .divider {
    width: 100%;
    height: 5px;
    background: $primary-color;

  }
  .filtersContainer {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    
    .search {
      min-width: 257px;
      flex: 1,
    }
    .selector {
      // max-width: 157px;
      flex: 1;

      @media screen and (max-width: 790px) {
        display: none;
      }
    }

    .totals {
      font-size: 20px;
      font-weight: 700;
      color: #000000;

      @media screen and (max-width: 790px) {
        font-size: 16px;
      }
    }

    .orderAndRenderization {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 20px;

      .renderizationcontrol {
        display: flex;
        flex-direction: row;
        align-items: center;
        border: 1px solid #DDD;
        border-radius: 7px;
        overflow: hidden;

        .button {
          width: 47px;
          height: 47px;
          min-width: 47px;
          min-height: 47px;
          max-width: 47px;
          max-height: 47px;
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          cursor: pointer;

          &:hover {
            background-color: #d0d0d0;
          }
        }
      }
    }
  }
}