.rowParams{
    display: flex;
    gap: 10px;
    flex-direction: row;

    .boxBlock{
      .boxBlock-header{
          height: 25px;
          >*{
              font-style: normal;
              font-size: var(--font-size-normal-S360) !important;
          }
      }
      .boxBlock-body{
        padding: 10px;
        height: calc(100% - 25px);
        overflow-y: auto;
        overflow-x: hidden;
        .InputsParams{
            height: 100%;
            display: flex;
            padding-left: 10px;
            padding-right: 10px;
            flex-direction: column;

          .unit-block {
            height: 27%;
            width: 100%;
            .divisor {
              margin-bottom: 12px;
              /* display: flex; */
              align-items: center;

              .textDivisor {
                  font-weight: 500;
                  color: var(--color-text-S360);
                  margin-right: 8px;
                  font-size: var(--font-size-normal-S360);
              }

              .brDivisor {
                  height: 1px;
                  background-color: var(--color-text-S360);
                  border: none;
                  margin: 0;
              }
            }

            .params-container{
              height: 100%;
              display: grid;
              grid-template-columns: 33% 30% 30%;
              gap: 4px 10px;

              /* @media only screen and (max-width: 500px){
                grid-template-columns: repeat(7, 12%);
              } */
            }
          }

        }
      }
    }
    @media only screen and (max-width: 500px){
        flex-direction: column;
    }
}
