.options-tab {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  height: 100%;
  width: 100%;
}

.options-tab__content {
  display: flex;
  height: 100%;
  width: 100%;
  padding: 32px 40px;
  flex-direction: column;
  gap: 32px;
  box-sizing: border-box;
}

.options-tab__content-list{
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 32px;
}

.options-tab__content-left{
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.options-tab__content-right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.options-tab__block {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  background: #f8f8f8;
  border-radius: 10px;
  box-sizing: border-box;
  gap: 10px;
  height: 82px;
}

.options-tab__block.textarea {
  flex: 1 1 auto;
  height: 100%;
}

.options-tab__block.textarea textarea{
  flex: 1 1 auto;
  min-height: 200px;
}

.options-tab__title {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #636363;
}

.options-tab__body{
  margin-top: 0;
  resize: none;
  border: none;
  background: transparent;
}

.options-tab__block input.options-tab__body{
  height: 42px;
}

.options-tab__body::-webkit-scrollbar{
  width: 5px;
  border-radius: 6px;
}
.options-tab__body::-webkit-scrollbar-thumb{
  background: #7A0E30;
}

.options-tab__body,
.options-tab__body::placeholder{
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #111;
  width: 100%;
  outline: none;
  font-family: inherit;
}

.options-tab__body::placeholder{
  color: #6f6f6f;
}

.options-tab__link {
  cursor: pointer;
  color: #7A0E30;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  margin-top: 20px;
}

@media (max-width: 992px){
  .options-tab__content{
    padding: 24px;
    max-width: 100%;
  }
}

@media (max-width: 709px) {
  .options-tab__content{
    max-height: 100%;
    padding: 20px 16px;
  }

  .options-tab__content-list{
    flex-direction: column;
    gap: 16px;
  }

  .options-tab__content-left{
    flex: 1 1 auto;
  }
}
