
ul {
    list-style-type: none;
    padding-left:15px;
}

li {
    /* padding-top: 15px; */
    padding-bottom: 15px;
}

.seo-question {
  width: calc(100% - 80px);
  padding: 20px;
  margin-left: 20px;
  margin-right: 40px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.auto-expand {
    box-sizing: border-box;
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 40px;
    min-height: 100px;
    padding: 20px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    overflow: hidden;
    transition: border-color 0.2s;
}

.auto-expand:focus {
    outline: none;
    border-color: #4299e1;
}

div.note {
    opacity: 0.6;
    line-height: 1;
    padding-left: 25px;
}

.normal-text {
  color: #161b40;
}
.exceeded-text {
  color: #EA4C89;
}

.tool button {
  background-color: #EA4C89;
  border-radius: 8px;
  border-style: none;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 10px 16px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: color 100ms;
  vertical-align: baseline;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.tool button:hover,
.tool button:focus {
  background-color: #F082AC;
}

.tool {
    width: 100%;
    text-align: center;
}

/* select dropdown from https://www.w3schools.com/howto/howto_custom_select.asp */
 /* The container must be positioned relative: */
 .custom-select {
    position: relative;
    font-family: Arial;
  }
  
  .custom-select select {
    display: none; /*hide original SELECT element: */
  }
  
  .select-selected {
    background-color: #333858;
    /*DodgerBlue;*/
  }
  
  /* Style the arrow inside the select element: */
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
  }
  
  /* Point the arrow upwards when the select box is open (active): */
  .select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
  }
  
  /* style the items (options), including the selected item: */
  .select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
  }
  
  /* Style items (options): */
  .select-items {
    position: absolute;
    background-color: #505470;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
  }
  
  /* Hide the items when the select box is closed: */
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  } 

  h2 {
    font-size: 1.17em;
  }