@use '../abstracts' as *;

/* Organism - Search mono class */

.o-search-mono-class{
  display: flex;
  flex-direction: column;
  gap: toRem(5);
  height: 100%;
  padding: toRem(10);
  overflow: auto;

  &__header{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: toRem(5);

    > .m-form-label-field{
      margin-bottom: 0;
    }

    &__selected {
      display: flex;
      align-items: center;
      gap: 8px;
    }

  }

  &__content-wrapper{
    flex: 1;
    overflow-x: hidden;
    width: 100%;
  }
  &__content {
    overflow: auto;
    width: 100%;
    height: 100%;

    &__title {
      margin: toRem(32) 0 toRem(25) 0;
    }
  }
}
