.tooltip-edit {
  background-color: white;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  padding: 0px 20px 20px 20px;
}

.tooltip__languages {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}
.tooltip__languages select {
  width: 200px;
  font-size: 12px;
  margin-right: 10px;
}
.tooltip__languages button {
  border: 1px solid #ccc;
  padding: 5px 10px;
  color: rgba(8, 50, 43, 0.86);
  background-color: white;
  border-radius: 4px;
  margin-right: 5px;
  cursor: pointer;
  outline: none;
}
.tooltip__languages button:hover {
  background-color: #fafafa;
}
.tooltip__languages button.active {
  border-color: #ee6931;
}

.tooltip__language-title {
  font-size: 14px;
  font-weight: bold;
  font-family: "Open Sans", "Arial";
  margin-right: 10px;
}

.tooltip__content {
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  display: flex;
}

.tooltip__image {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.tooltip__image-holder {
  height: 100px;
  width: 100px;
  margin-right: 10px;
}
.tooltip__image-holder.logo {
  height: 32px;
  width: 32px;
}
.tooltip__image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tooltip__image-holder .tooltip__image-placeholder {
  width: 100%;
  height: 100%;
  border: 1px dashed gray;
}

.tooltip__col {
  margin-right: 30px;
  position: relative;
}
.tooltip__col.second::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: gray;
}

.tooltip__inputs {
  display: flex;
  flex-direction: column;
}
.tooltip__inputs label {
  font-family: "Open Sans";
  font-size: 12px;
  color: rgba(8, 50, 43, 0.86);
  margin-bottom: 10px;
}
.tooltip__inputs input {
  margin-top: 5px;
  display: block;
  font-family: "Open Sans", "Arial";
  color: rgba(8, 50, 43, 0.86);
  font-size: 13px;
  padding: 3px 6px;
  border-radius: 2px;
  border: 1px solid #ccc;
  outline: none;
  width: 200px;
  box-sizing: border-box;
}
.tooltip__inputs input:focus {
  border: 1px solid #ee6931;
}
.tooltip__inputs textarea {
  margin-top: 5px;
  display: block;
  font-family: "Open Sans", "Arial";
  color: rgba(8, 50, 43, 0.86);
  font-size: 13px;
  padding: 3px 6px;
  border-radius: 2px;
  border: 1px solid #ccc;
  outline: none;
  width: 200px;
  height: 200px;
  box-sizing: border-box;
}
.tooltip__inputs textarea:focus {
  border: 1px solid #ee6931;
}

/*# sourceMappingURL=TooltipEditor.css.map */
