.flex-row {
  margin: 0 auto;
}

.tool__div__section {
  flex-basis: 70%;
  width: 70%;
}

.tool__div__section>.flex-row {
  flex-direction: column;
  margin: 0 auto;
}

.tool__wrapper__design,
.tool__div__section .flex-col {
  width: 100%;
}

.tool__row__s {
  margin: 0 auto 12px;
}

.tool-content-col {
  width: 100%;
  margin-top: 1rem;
}

.ads-row {
  justify-content: space-between;
  margin: 0rem auto;
}

.sticky__sidebar__add {
  width: 30%;
  flex-basis: 30%;
  min-width: 340px;
  max-width: 340px
}

.tool__row__s,
.tool__row__s>div:first-child {
  border-color: var(--border-color);
}

.tool__row__s textarea {
  border-top: none !important;
}

#input,
#output {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  height: 500px;
  max-height: 500px;
  overflow-y: auto;
  padding: 20px;

  &#output:not(:empty) {
    padding: 0;
  }

  @media (max-width: 930px) {
    height: 250px;

    &#input {
      max-height: 500px;
      border-bottom: 1px solid var(--border-color);
    }

    &#output:not(:empty) {
      height: 500px;
    }
  }
}

.tool__row__s>.flex-col {
  width: 50%;

  @media (max-width: 930px) {
    width: 100%;
  }
}

.aesthetic-text-list {
  display: flex;
  flex-direction: column;
}

.aesthetic-text-output {
  overflow-wrap: anywhere;
}

.singular-font {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;

  button {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    outline: none;
    background: var(--color-light);
    transition: all 0.2s ease-in-out;
    min-width: 84px;

    &:hover {
      cursor: pointer;
      background-color: var(--color-green);
      border-color: var(--color-dark);
      box-shadow: var(--box-shadow-inverse);
      color: var(--color-light);
    }

    &:active {
      box-shadow: var(--box-shadow-inverse-sm);
    }
  }
}

.clear-tool {
  cursor: pointer;
  background: transparent;
  outline: 0;
  border: none;
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: all ease-in 200ms;

  &:hover {
    background: #F6F6F6 !important;
  }
}