/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
*/
 
.add-license-container {margin-bottom: 1em;}
.add-license-container #license-key {width: 75%; margin-right: 0.5em;}
 
.add-license-container summary {
    list-style-type: none;
}

.add-license-container summary::before {
  margin-right: 1ch;
  display: inline-block;
  transition: 0.5s;
  content: '\002B'; /* plus */
}

details[open] summary::before {
  transform: rotate(90deg);
}