@charset 'utf-8';
.material-icons {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons'
}

body, html {
  height: 100%;
  max-height: 100%;
}

.material-icons,html {
  -webkit-font-smoothing: antialiased
}

.main-container,body {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

body {
  margin: 0;
  overflow: hidden;
  font-family: Roboto,sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.icon-button,.main-container,body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.main-container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 0
}

.icon-button {
  position: relative;
  color: rgba(0,0,0,.54);
  text-decoration: none;
  cursor: pointer;
  outline: 0
}

.icon-button:focus,.icon-button:hover {
  color: rgba(0,0,0,.87)
}

.icon-button::after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: rgba(0,0,0,.1);
  transition: opacity .2s ease;
  pointer-events: none
}

.icon-button:active::after {
  opacity: 1
}

.icon-button.theme-dark,.page-header-links a {
  color: rgba(255,255,255,.7)
}

.icon-button.theme-dark:focus,.icon-button.theme-dark:hover {
  color: #fff
}

.fab-button::after,.icon-button.theme-dark::after {
  background-color: rgba(255,255,255,.2)
}

.fab-button {
  border: 0;
  background-color: #2979ff;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,.2) , 0 4px 5px 0 rgba(0,0,0,.14) , 0 1px 10px 0 rgba(0,0,0,.12);
  border-radius: 50%;
  cursor: pointer;
  min-width: 0;
  min-height: 0;
  padding: 16px;
  position: relative;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  outline: 0;
  transition: box-shadow .2s ease
}

.fab-button::after {
  opacity: 0;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: opacity .2s ease;
  pointer-events: none
}

.fab-button:focus,.fab-button:hover {
  box-shadow: 0 3px 5px -1px rgba(0,0,0,.2) , 0 6px 10px 0 rgba(0,0,0,.14) , 0 1px 18px 0 rgba(0,0,0,.12)
}

.fab-button:focus::after,.fab-button:hover::after {
  opacity: .3
}

.fab-button:active {
  box-shadow: 0 5px 5px -3px rgba(0,0,0,.2) , 0 8px 10px 1px rgba(0,0,0,.14) , 0 3px 14px 2px rgba(0,0,0,.12)
}

.fab-button:active::after {
  opacity: .1
}

.fab-button[disabled] {
  background-color: rgba(0,0,0,.12);
  box-shadow: none;
  color: rgba(0,0,0,.38);
  cursor: not-allowed
}

.tooltip {
  position: absolute;
  left: 50%;
  bottom: -8px;
  text-align: center;
  -webkit-transform: translate(-50%,100%);
  transform: translate(-50%,100%);
  pointer-events: none;
  background-color: rgba(66,66,66,.8);
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  padding: 4px 8px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .1s ease , visibility 0s ease .1s
}

:focus>.tooltip,:hover>.tooltip {
  transition: opacity .1s ease .2s;
  opacity: 1;
  visibility: visible
}

.checkbox,.checkbox input[type="checkbox"] {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.checkbox {
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

.checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0 4px 0 0;
  outline: 0
}

.checkbox input[type="checkbox"]::after {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'check_box_outline_blank';
  color: rgba(0,0,0,.54);
  cursor: pointer
}

.checkbox input[type="checkbox"]:checked::after {
  content: 'check_box';
  color: #607d8b
}

.tabs {
  padding: 0;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden;
  z-index: 1
}

.form-field-buttonset input[type="radio"],.tabs input[type="radio"] {
  display: none
}

.tabs label {
  color: rgba(0,0,0,.54);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px 16px;
  cursor: pointer;
  outline: 0
}

.tabs label:active,.tabs label:focus {
  background-color: rgba(0,0,0,.1)
}

.tabs input:checked+label {
  color: rgba(0,0,0,.87);
  box-shadow: 0 -2px 0 #607d8b inset
}

.page-header {
  position: relative;
  padding: 12px 24px 12px 64px;
  background-color: #607d8b;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,.2) , 0 4px 5px 0 rgba(0,0,0,.14) , 0 1px 10px 0 rgba(0,0,0,.12);
  z-index: 3;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.page-header-back-button {
  position: absolute;
  font-size: 24px;
  left: 25px;
  bottom: 4px;
  padding: 12px
}

.page-header-crumb {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  color: rgba(255,255,255,.7)
}

.page-header-crumb:focus,.page-header-crumb:hover,.page-header-links a:focus,.page-header-links a:hover {
  color: #fff
}

.page-header-title {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin: 0
}

.page-header-links {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 20px
}

strong {
  font-weight: 500
}

a {
  color: #607d8b
}

.external-link::after {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'open_in_new';
  font-size: 16px;
  vertical-align: middle;
  margin-left: 2px;
  position: relative;
  top: -1px
}

.inputs-panel {
  box-sizing: border-box;
  background-color: #f5f5f5;
  width: 400px;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2),
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12);
  padding: 24px 0;
  z-index: 2;
}

.inputs-panel .form-field-outer {
  padding: 0 24px;
}

.inputs-panel .form-field-outer .form-field-outer {
  padding: 0;
}

.form-field-outer {
  margin-bottom: 24px
}

.form-field-outer>label {
  display: block;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  margin: 0 0 8px;
  color: rgba(0,0,0,.87)
}

.form-field-outer>label .form-field-help-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0,0,0,.38)
}

.form-field-outer[disabled] {
  opacity: .2;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%)
}

.form-field-outer.is-new-group {
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 24px
}

.form-field-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

.sp-replacer {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 2px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  font-family: Roboto,sans-serif;
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  outline: 0;
  padding: 4px
}

.form-field-select select:focus,.sp-replacer:focus {
  box-shadow: 0 0 0 2px #607d8b
}

.form-field-select select[disabled],.sp-replacer[disabled] {
  opacity: .5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%)
}

.form-field-select {
  position: relative;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start
}

.form-field-select select,.form-field-text {
  border-radius: 2px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  font-family: Roboto,sans-serif;
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  outline: 0
}

.form-field-select select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 4px 28px 4px 12px
}

.form-field-select::after {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'arrow_drop_down';
  position: absolute;
  color: rgba(0,0,0,.54);
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none
}

.form-field-image>.form-field-container {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.form-field-text {
  padding: 4px 12px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch
}

.form-field-text:focus {
  box-shadow: 0 0 0 2px #607d8b
}

.form-field-text[disabled] {
  opacity: .5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%)
}

.form-field-buttonset {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 2px;
  border: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  font-family: Roboto,sans-serif;
  font-size: 14px;
  line-height: 20px;
  background-color: #fff;
  outline: 0;
  padding: 0;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  overflow: hidden
}

.form-field-buttonset:focus {
  box-shadow: 0 0 0 2px #607d8b
}

.form-field-buttonset[disabled] {
  opacity: .5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%)
}

.form-field-buttonset label {
  font-size: 14px;
  line-height: 20px;
  padding: 4px 12px;
  cursor: pointer;
  outline: 0
}

.form-field-buttonset label:active,.form-field-buttonset label:focus {
  background-color: #cfd8dc
}

.form-field-buttonset input:checked+label {
  background-color: #607d8b;
  color: #fff
}

.form-field-buttonset input:checked+label:active,.form-field-buttonset input:checked+label:focus {
  background-color: #546e7a
}

.form-field-button {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  font-family: Roboto,sans-serif;
  background-color: #fff;
  border: 0;
  font-size: 14px;
  line-height: 20px;
  padding: 4px 12px;
  cursor: pointer;
  outline: 0
}

.form-field-button:focus {
  box-shadow: 0 0 0 2px #607d8b
}

.form-field-button[disabled] {
  opacity: .5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: not-allowed;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%)
}

.form-field-button:active {
  background-color: #cfd8dc
}

.form-image-hidden-file-field {
  position: absolute;
  left: -10000px;
  opacity: 0
}

.form-image-type-params-clipart {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 8px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2) , 0 2px 2px 0 rgba(0,0,0,.14) , 0 3px 1px -2px rgba(0,0,0,.12);
  border-radius: 2px;
  background-color: #fff;
  overflow: hidden
}

.form-image-type-params-clipart.is-hidden {
  display: none
}

.form-image-type-params-clipart::before {
  font-weight: 400;
  font-style: normal;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'search';
  display: block;
  color: rgba(0,0,0,.38);
  font-size: 20px;
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 2
}

.form-image-clipart-filter {
  color: rgba(0,0,0,.87);
  font-size: 14px;
  line-height: 20px;
  border: 0;
  padding: 8px 8px 8px 40px;
  outline: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,.12);
  z-index: 1
}

.form-image-clipart-filter::-webkit-input-placeholder {
  color: rgba(0,0,0,.38)
}

.form-image-clipart-filter::-moz-placeholder {
  color: rgba(0,0,0,.38)
}

.form-image-clipart-filter:-ms-input-placeholder {
  color: rgba(0,0,0,.38)
}

.form-image-clipart-filter::placeholder {
  color: rgba(0,0,0,.38)
}

.form-image-clipart-list {
  height: 200px;
  padding: 16px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  box-sizing: border-box;
  overflow-y: scroll
}

.form-image-clipart-item {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  font-size: 36px;
  overflow: hidden;
  width: 36px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  color: rgba(0,0,0,.87);
  transition: color .1s ease , background-color .1s ease , box-shadow .1s ease
}

.form-image-clipart-item:focus,.form-image-clipart-item:hover,body.page-nine-patch-generator .outputs-preview-tabs label:active,body.page-nine-patch-generator .outputs-preview-tabs label:focus {
  background-color: rgba(0,0,0,.1)
}

.form-image-clipart-item.is-selected {
  color: #fff;
  box-shadow: 0 0 0 4px #607d8b;
  background-color: #607d8b
}

.form-image-clipart-attribution {
  font-size: 12px;
  line-height: 16px;
  padding: 4px 8px;
  color: rgba(0,0,0,.38);
  box-shadow: 0 -1px 0 rgba(0,0,0,.12)
}

.form-image-preview {
  display: none!important;
  background-color: #fff;
  max-height: 100px;
  max-width: 250px;
  border: 1px solid #ccc
}

.form-field-range {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.form-field-range input[type="range"] {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  outline: 0;
  cursor: pointer;
  vertical-align: bottom;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  height: 28px;
  margin: 0;
  background-color: transparent
}

.form-field-range input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  appearance: none;
  background-color: #607d8b;
  height: 2px;
  -webkit-transform: translateY(calc(-50%));
  transform: translateY(calc(-50%))
}

.form-field-range input[type="range"]:focus::-webkit-slider-thumb {
  -webkit-transform: translateY(calc(-50% + 1px)) scale(1.2);
  transform: translateY(calc(-50% + 1px)) scale(1.2)
}

.form-field-range input[type="range"]:active::-webkit-slider-thumb {
  -webkit-transform: translateY(calc(-50% + 1px)) scale(1.5);
  transform: translateY(calc(-50% + 1px)) scale(1.5)
}

.form-field-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #607d8b;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-transform: translateY(calc(-50% + 1px));
  transform: translateY(calc(-50% + 1px));
  transition: transform .1s ease;
  transition: transform .1s ease , -webkit-transform .1s ease
}

.form-field-range-text {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 6px;
  font-size: 14px;
  line-height: 20px;
  color: #607d8b;
  font-weight: 500;
  width: 40px;
  text-align: right
}

.form-field-drop-target.drag-hover {
  position: relative
}

.form-field-drop-target.drag-hover::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(41,121,255,.5);
  -webkit-animation: pulsate-color .33s ease 0s infinite alternate;
  animation: pulsate-color .33s ease 0s infinite alternate;
  z-index: 1000
}

@-webkit-keyframes pulsate-color {
  0% {
    opacity: .5
  }

  to {
    opacity: 1
  }
}

@keyframes pulsate-color {
  0% {
    opacity: .5
  }

  to {
    opacity: 1
  }
}

.form-subform {
  margin-top: 24px
}

.form-subform.is-hidden {
  display: none
}

.form-subform:not(.is-hidden)+.form-subform {
  margin-top: 0
}

.outputs-items,.outputs-panel {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.outputs-panel {
  position: relative;
  background-color: #e0e0e0;
}

.outputs-panel[data-theme="dark"] {
  background-color: #bdbdbd;
}

.outputs-items {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-y: auto;
  padding: 48px
}

#grid-toggle-container {
  position: absolute;
  left: 32px;
  top: 32px
}

#download-zip-button {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1
}

.outputs-additional-toggle,.outputs-main {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.outputs-main {
  margin: auto 0
}

.outputs-additional-toggle {
  cursor: pointer;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0,0,0,.54);
  font-weight: 500;
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

.outputs-additional-toggle::after {
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'expand_more';
  padding-left: 2px
}

.outputs-additional-toggle:focus,.outputs-additional-toggle:hover {
  color: rgba(0,0,0,.87)
}

.outputs-panel.is-showing-all .outputs-additional,body.page-nine-patch-generator .outputs-preview-sidebar[data-view="output"] .outputs-panel,body.page-nine-patch-generator .outputs-preview-sidebar[data-view="preview"] .nine-patch-preview-area-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.outputs-panel.is-showing-all .outputs-additional-toggle::after {
  content: 'expand_less'
}

.outputs-additional {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: none;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px
}

.outputs-image-group {
  display: inline-block;
  background-color: #fff;
  padding: 8px 10px;
  margin-right: 12px;
  margin-bottom: 12px;
  border-radius: 2px
}

.outputs-label {
  font-family: 'Roboto Mono',monospace
}

.outputs-image-block {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 16px;
  color: rgba(0,0,0,.38);
  font-weight: 500;
  text-align: center;
  margin: 4px
}

.outputs-image-container {
  margin-top: 4px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex
}

.outputs-image-overlay {
  display: none
}

.show-grid .outputs-image-overlay {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none
}

.show-grid .outputs-image-overlay svg {
  width: 100%;
  height: 100%;
  stroke-width: 1px;
  stroke: rgba(0,0,0,.12)
}

.outputs-image {
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  border-radius: 2px;
  display: inline-block;
  position: relative
}

.outputs-image-group.dark {
  background-color: rgba(0,0,0,.9)
}

.outputs-image-group.dark .label {
  color: #ccc
}

.outputs-image-group.dark .outputs-image {
  border: 1px solid #555
}

.outputs-image-group.dark.half {
  background-color: rgba(0,0,0,.5)
}

body.page-home {
  font-size: 14px;
  line-height: 20px;
  background-color: #eee;
  min-height: 100%;
  height: auto;
  overflow: auto
}

body.page-home .home-footer,body.page-home .home-generator-list,body.page-home .home-header {
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center
}

body.page-home .home-footer .inner,body.page-home .home-generator-list .inner,body.page-home .home-header .inner {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding: 0 24px;
}

@media only screen and (min-width: 344px) {
  body.page-home .home-footer .inner,body.page-home .home-generator-list .inner,body.page-home .home-header .inner {
    width: 344px;
  }
}

@media only screen and (min-width: 664px) {
  body.page-home .home-footer .inner,body.page-home .home-generator-list .inner,body.page-home .home-header .inner {
    width: 664px;
  }
}

@media only screen and (min-width: 984px) {
  body.page-home .home-footer .inner,body.page-home .home-generator-list .inner,body.page-home .home-header .inner {
    width: 984px;
  }
}

body.page-home .home-header {
  background-color: #607d8b;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: -48px;
}

body.page-home .home-header .inner {
  margin-top: 48px;
  margin-bottom: 48px;
}

body.page-home .home-header h1 {
  color: #fff;
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  margin: 0 0 12px;
}

body.page-home .home-header .subtitle {
  margin: 0 0 48px;
  max-width: 360px;
}

body.page-home .home-footer .inner {
  color: rgba(0, 0, 0, 0.38);
  margin: 24px 0 64px;
}

body.page-home .home-generator-list .inner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-right: 0;
}

body.page-home .home-generator-card {
  width: 296px;
  margin: 0 24px 24px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2) , 0 2px 2px 0 rgba(0,0,0,.14) , 0 3px 1px -2px rgba(0,0,0,.12);
  text-decoration: none;
  overflow: hidden;
  transition: box-shadow .1s ease;
  outline: 0
}

body.page-home .home-generator-card:focus,body.page-home .home-generator-card:hover {
  box-shadow: 0 3px 5px -1px rgba(0,0,0,.2) , 0 5px 8px 0 rgba(0,0,0,.14) , 0 1px 14px 0 rgba(0,0,0,.12)
}

body.page-home .home-generator-card:active {
  box-shadow: 0 5px 5px -3px rgba(0,0,0,.2) , 0 8px 10px 1px rgba(0,0,0,.14) , 0 3px 14px 2px rgba(0,0,0,.12)
}

body.page-home .home-generator-card .generator-image {
  width: 296px;
  height: 200px
}

body.page-home .home-generator-card .generator-title {
  margin: 16px 16px 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(0,0,0,.87)
}

body.page-home .home-generator-card.is-external .generator-title::after {
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: 'liga';
  -moz-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: 'Material Icons';
  content: 'open_in_new';
  font-size: 16px;
  vertical-align: middle;
  margin-left: 4px;
  position: relative;
  top: -1px
}

body.page-home .home-generator-card .generator-description {
  margin: 4px 16px 16px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0,0,0,.54)
}

body.page-nine-patch-generator .inputs-panel {
  width: 350px
}

body.page-nine-patch-generator .nine-patch-editor-area {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

body.page-nine-patch-generator .stage-bottom-toolbar,body.page-nine-patch-generator .stage-top-toolbar {
  background-color: #fff;
  padding: 12px 20px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

body.page-nine-patch-generator .stage-bottom-toolbar .field-label,body.page-nine-patch-generator .stage-top-toolbar .field-label {
  font-size: 13px;
  line-height: 16px;
  margin-right: 12px;
  color: rgba(0,0,0,.54)
}

body.page-nine-patch-generator .stage-bottom-toolbar button,body.page-nine-patch-generator .stage-top-toolbar button {
  margin-right: 8px
}

body.page-nine-patch-generator .stage-bottom-toolbar .flex,body.page-nine-patch-generator .stage-top-toolbar .flex {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto
}

body.page-nine-patch-generator .stage-top-toolbar {
  box-shadow: 0 1px 0 rgba(0,0,0,.12)
}

body.page-nine-patch-generator .stage-bottom-toolbar {
  box-shadow: 0 -1px 0 rgba(0,0,0,.12)
}

body.page-nine-patch-generator .stage-grid-color,body.page-nine-patch-generator .stage-which {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex
}

body.page-nine-patch-generator .preview-stage>div,body.page-nine-patch-generator .stage-bottom-controls {
  position: relative
}

body.page-nine-patch-generator .stage-bottom-right-controls {
  position: absolute;
  top: 0;
  right: 0
}

body.page-nine-patch-generator .nine-patch-stage {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 24px
}

body.page-nine-patch-generator .stage-canvas-container {
  position: relative;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.2) , 0 3px 4px 0 rgba(0,0,0,.14) , 0 3px 3px -2px rgba(0,0,0,.12);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

body.page-nine-patch-generator .stage-canvas-container .empty {
  color: rgba(0,0,0,.38);
  max-width: 300px;
  padding: 32px 48px
}

body.page-nine-patch-generator .stage-canvas-container canvas {
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor
}

body.page-nine-patch-generator .stage-canvas-container .overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0
}

body.page-nine-patch-generator .canvas-label {
  position: absolute;
  font-weight: 700;
  font-family: Roboto;
  color: #ff1744;
  pointer-events: none;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

body.page-nine-patch-generator .canvas-label::after,body.page-nine-patch-generator .canvas-label::before {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: rgba(255,23,68,.2);
  content: ''
}

body.page-nine-patch-generator .canvas-label.label-horizontal {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 10px;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row
}

body.page-nine-patch-generator .canvas-label.label-horizontal::after,body.page-nine-patch-generator .canvas-label.label-horizontal::before {
  height: 1px
}

body.page-nine-patch-generator .canvas-label.label-horizontal::before {
  margin-right: 4px
}

body.page-nine-patch-generator .canvas-label.label-horizontal::after {
  margin-left: 4px
}

body.page-nine-patch-generator .canvas-label.label-vertical {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column
}

body.page-nine-patch-generator .canvas-label.label-vertical::after,body.page-nine-patch-generator .canvas-label.label-vertical::before {
  width: 1px
}

body.page-nine-patch-generator .canvas-label.label-vertical::before {
  margin-bottom: 4px
}

body.page-nine-patch-generator .canvas-label.label-vertical::after {
  margin-top: 4px
}

body.page-nine-patch-generator #download-zip-button {
  top: 24px
}

body.page-nine-patch-generator .outputs-preview-sidebar {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 400px;
  box-shadow: 0 1px 5px 0 rgba(0,0,0,.2) , 0 2px 2px 0 rgba(0,0,0,.14) , 0 3px 1px -2px rgba(0,0,0,.12);
  z-index: 1;
  overflow: hidden
}

body.page-nine-patch-generator .outputs-preview-tabs {
  background-color: #455a64;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

body.page-nine-patch-generator .outputs-preview-tabs label {
  color: rgba(255,255,255,.7);
  padding: 16px 20px
}

body.page-nine-patch-generator .outputs-preview-tabs input:checked+label {
  color: #fff;
  box-shadow: 0 -2px 0 #fff inset
}

body.page-nine-patch-generator .nine-patch-preview-area-container,body.page-nine-patch-generator .outputs-panel {
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: none;
  background-color: #e0e0e0
}

body.page-nine-patch-generator[data-theme="dark"] .nine-patch-preview-area-container,body.page-nine-patch-generator[data-theme="dark"] .outputs-panel {
  background-color: #bdbdbd
}

body.page-nine-patch-generator .preview-area {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: se-resize;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

body.page-nine-patch-generator .preview-area .text-preview {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  display: none
}

body.page-nine-patch-generator .preview-area canvas {
  pointer-events: none
}

body.page-nine-patch-generator #preview-with-content-container {
  position: absolute;
  top: 24px;
  left: 24px
}

body.page-nine-patch-generator .preview-area.dark label {
  color: #eee
}

body.page-nine-patch-generator .preview-stage {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center
}

a {
  position: relative;
  overflow: hidden;
  transform: translate3d(0,0,0)
}

a:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle,#000 10%,transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10,10);
  opacity: 0;
  transition: transform .5s , opacity 1s
}

a:active:after {
  transform: scale(0,0);
  opacity: .2;
  transition: 0s
}

.advertads{
    max-height: 90px!important;
}