[contentEditable]:empty:not(:focus):before{
    content:attr(placeholder);
    pointer-events: none;
}
.app-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background-color: #f1f1f1;
}
.app-edit:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background-color: rgba(0,0,0,0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.app-edit.hide {
  pointer-events: none;
}
.selected:after {
  visibility: visible;
  pointer-events: none;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0px 0px 0px 2px rgba(21,255,205,1);
  -moz-box-shadow: inset 0px 0px 0px 2px rgba(21,255,205,1);
  box-shadow: inset 0px 0px 0px 2px rgba(21,255,205,1);
}
.app-edit.hide .section-container {
  transform: scale(0.8);
}
.app-edit.hide:after {
  visibility: visible;
  background-color: rgba(25,30,49,0.5);
}
.app-cursor-disabled {
  pointer-events: none;
}
.app-editor {
    font-family: 'Akrobat', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
}
.app-bg {
  color: #9AA4A6;
  background-color: #232E40;
}
.app-dark-bg {
  color: #9AA4A6;
  background-color: #191E31;
}
.app-shadow {
  -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
  box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.39);
}
.app-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.app-link {
  cursor: pointer;
}
.app-row-1 {
  width: 100%;
}
.app-row-2 {
  width: 50%;
}
.app-row-3 {
  width: 33.333%;
}
.app-row-4 {
  width: 25%;
}
.app-row-5 {
  width: 20%;
}
/* Tools */
.app-tool {
  position: fixed;
}
.app-tool.main-tool,
.app-tool.edit {
  left: 50%;
  bottom: 10px;
}
.app-tool.format {
  left: 50%;
  top: 10px;
}
.app-tool-container {
  position: relative;
  border-radius: 5px;
  padding: 10px;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.app-tool-list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: stretch;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}
.app-tool-header {
  position: relative;
  height: 30px;
  display: block;
  text-align: center;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
}
.app-tool-header h4 {
  margin: 0;
  padding: 0;
  line-height: 30px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
}
.app-tool-btn {
  position: relative;
  display: block;
  width: 50px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.app-tool-btn.active {
  color: #15FFCD;
}
.app-tool-btn:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #15FFCD;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app-tool-btn.active:after {
  width: 100%;
}
.app-tool-btn.large {
  width: 70px;
}

.app-tool-btn i {
  display: block;
  margin: 5px 0;
  color: #15FFCD;
  text-shadow: 0px 0px 5px #15FFCD;
  font-size: 28px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.app-tool-btn.large i{
  font-size: 48px;
}
.app-tool-btn.small i{
  font-size: 21px;
}
.app-tool-btn.disabled {
  cursor: auto;
  pointer-events: none;
}
.app-tool-btn.disabled i,.app-tool-btn.disabled:hover i,
.app-tool-btn.disabled span, .app-tool-btn.disabled:hover span {
  cursor: auto;
  color: #737A93;
  text-shadow: none;
}
.app-tool-btn span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #9AA4A6;
}
.app-tool-btn:hover span {
  color: #15FFCD;
}
.app-tool-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
}
.app-tool-close i {
  line-height: 30px;
}
.app-tool-close:hover {
  color: #15FFCD;
}
.app-tool-divider {
  width: 1px;
  background-color: #9AA4A6;
  margin: 0 10px;
  opacity: 0.2;
}
.tools-enter-active, .tools-leave-active {
 transition: all .5s ease;
}
.tools-enter, .tools-leave-to {
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  opacity: 0;
}
.app-tool-sub {
  position: absolute;
  top: 60px;
  left: 0;
  list-style: none;
  border-radius: 5px;
}
.app-tool-sub li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-format-btn {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  cursor: pointer;
}
/* Text editor */
.app-format-tool {
  position: fixed;
  left: 50%;
  top: 10px;
  z-index: 9999999;
}
.app-format-container {
  position: relative;
  border-radius: 5px;
  padding: 10px;
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}
.app-format-box {
  min-width: 400px;
}
.app-format-list {
  list-style: none;

}
.app-format-list a {
  padding: 0 25px;
}
.app-dropdown {
  position: absolute;
}

.app-link-box {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.app-link-box input {
  color: #9e9e9e;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  width: 100%;
  background: none;
  border-bottom: 1px solid #9e9e9e;
}
.app-link-box input:focus {
  border-color:#15FFCD;
}
.app-link-box a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
}
.app-link-box a:hover {
  color:#15FFCD;
}
.app-link-box a i {
  height: 50px;
  line-height: 50px;
  font-size: 28px;
}

/* Items */
.app-item-list {
  margin: -5px;
}
.app-item {
  padding: 5px;
}
.app-item-btn {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: center;
  align-items: center;
  min-height: 70px;
  width: 100%;
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.05);
}
.selected {
  border-color: #15FFCD;
}
.app-item-icon {
  width: 40px;
  font-size: 28px;
  margin-right: 10px;
  line-height: 40px;
  text-align: center;
  color: #15FFCD;
  text-shadow: 0px 0px 5px #15FFCD;
}
.app-item-title {
  line-height: 40px;
}
.app-item-image {
  height: 40px;
  margin-right: 15px;
}
.app-item-tools {
  position: absolute;
  top: 0;
  right: 5px;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -webkit-align-items: center;
  align-items: center;
  z-index: 5;
}
.app-large-list .app-item-btn {
  display: block;
  text-align: center;
  padding: 15px;
}
.app-large-list .app-item-btn .app-item-icon {

  font-size: 64px;
  margin: 0;
  line-height: 72px;
  text-align: center;
  color: #15FFCD;
  text-shadow: 0px 0px 5px #15FFCD;
}
.app-large-list .app-item-btn .app-item-title {
  display: block;
}
.app-large-list .app-item-btn:hover .app-item-title {
  color: #15FFCD;
}
/* Panels */
.app-panel {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
}
.app-panel.side {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 100%;
  height: calc(100vh - 20px);
  border-radius: 5px;
  max-width: 600px;
}
.app-panel.full {
  position: fixed;
  top: 10px;
  left: 10px;
  width:calc(100vw - 20px);;
  height: calc(100vh - 20px);
  border-radius: 5px;
}
.app-panel.alert {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: -webkit-box;
   display: flex;
   -webkit-justify-content: center;
   justify-content: center;
   -webkit-box-align: center;
   align-items: center;
}
.app-panel.alert .app-panel-container {
 position: relative;
 width: 100%;
 max-width: 600px;
 border-radius: 5px;
 height: auto;
}
.app-panel.alert .app-panel-content {
  text-align: center;
  height: auto;
}
.app-panel.alert .app-panel-content p {
 margin-bottom: 15px;
 font-size: 21px;
 font-weight: 300;
 letter-spacing: 1px;
}
.app-panel.alert .app-panel-content p b {
 font-weight: 300;
 color: #15FFCD;
}
.app-panel-header {
  position: relative;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
.app-panel-header h4 {
 font-size: 16px;
 text-transform: uppercase;
 font-weight: normal;
 letter-spacing: 2px;
 color: #15FFCD;
}
.app-panel-header .app-close {
 position: absolute;
 top: 0;
 right: 0;
 width: 50px;
 height: 50px;
 text-align: center;
 cursor: pointer;
}
.app-panel-content {
  height: calc(100vh - 70px);
}
.app-panel-header .app-close i {
  line-height: 40px;
  font-size: 21px;
}
.app-panel-box {
  padding: 25px;
}
.app-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,0.15);
}
.app-panel-tool {
  margin-bottom: 10px;
}
.panel-overlay-enter-active,
.panel-overlay-leave-active {
 transition: all .5s ease-in-out;
}
.panel-overlay-enter, .panel-overlay-leave-to {
 opacity: 0;
}
.panel-enter-active, .panel-leave-active,
.alert .app-panel-container {
 transition: all .5s ease;
}
.panel-enter, .panel-leave-to {
 opacity: 0;
}
.panel-enter.side, .panel-leave-to.side,
.panel-enter.full, .panel-leave-to.full {
 transform: translateX(-50%);
 -webkit-transform: translateX(-50%);
}
.panel-enter.alert .app-panel-container, .panel-leave-to.alert .app-panel-container {
 transform: translateY(50%);
 -webkit-transform: translateY(50%);
}
.panel-show-enter-active {
 transition: opacity .5s ease;
}
.panel-show-leave-active {
 transition: opacity .5s ease;
}
.panel-show-enter, .panel-overlay-leave-to {
 opacity: 0;
}
/* Messagess */
.app-messagess {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 100%;
  max-width: 400px;
  z-index: 999999;
}
.app-messagess-item {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #ffffff;
}
.app-messagess-container {
  position: relative;
  padding: 15px;
  background-color: #15FFCD;
  cursor: pointer;
}
.app-messagess-content {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  align-items: center;
  -webkit-align-items: center;
}
.app-messagess-content i {
  font-size: 2em;
  margin-right: 15px;
}
.app-messagess-container p {
    font-size: 16px;
    font-weight: bold;
}
.app-messagess-item.success .app-messagess-container {
  color: #191E31!important;
  background-color: #00e676!important
}
.app-messagess-item.error .app-messagess-container {
  color: #191E31!important;
  background-color: #f50057!important;
}
.app-messagess-item.info .app-messagess-container {
  color: #191E31!important;
  background-color: #ffff00!important;
}

/* Progress */
.app-progress {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;;
}
.app-progress.small {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}
.app-stat-circle {
  width: 75px;
}
.app-stat-circle circle.bg {
  fill: none;
  stroke: rgba(0,0,0,0.1);
  stroke-width: 0.4;
}
.app-stat-circle circle.progress {
  fill: none;
  stroke:#15FFCD;
  stroke-width: 0.8;
  stroke-dasharray: 51 51;
  stroke-dashoffset: -51;
  stroke-linecap: round;
}
.app-stat-circle text {
  font-size: 4px;
  font-weight: 700;
  text-anchor: middle;
  fill: #15FFCD;
}

/* form */
.app-form {
  padding: 0 15px;
}
.app-form-title {
  font-weight: normal;
  text-transform: uppercase;
  color: #15FFCD;
  padding: 0 5px;
}
.app-form .field .bar:before {
  background-color: #15FFCD;
}
.app-form .btn {
  color: #232E40;
  background-color: #15FFCD;
}
.app-form .field input:focus ~ label,
.app-form .field input:not(:placeholder-shown) ~ label,
.app-form .field textarea:focus ~ label,
.app-form .field textarea:not(:placeholder-shown) ~ label {
  color: #15FFCD;
}
.app-form .checkbox input:checked+span:before {
  border-right: 2px solid #15FFCD;
  border-bottom: 2px solid #15FFCD;
}
.app-form .options-container li a:hover,
.app-form .options-container li a.selected {
  color: #15FFCD;
}
.app-form .selected-option svg {
  fill: #15FFCD;
}
/* Files */
.app-uploads-btn {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.app-file-btn {
  display: block;
  text-align: center;
}
.app-file-btn .app-item-title {
  font-size: 10px;
}
.app-file-btn .app-item-tools {
  top: 0;
  right: 0;
  height: auto;
}
.app-file-btn .app-tool-btn {
  padding: 5px;
}
.app-file-image {
  position: relative;
  display: block;
  height: 150px;
  width: 100%;
  overflow: hidden;
}
.app-file-image img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.app-file-icon {
  position: relative;
  height: 150px;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;;
  overflow: hidden;
}
.app-file-icon i {
  position: relative;
  font-size: 100px;
  color: #15FFCD;
}
.app-file-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #15FFCD;
  text-shadow: 0px 0px 5px #15FFCD;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
/* Images */
.app-image-input {
  position: relative;
  display: block;
  width: 100%;

}
.app-image-box {
  display: block;
  width: 100%;
  height: 150px;
  cursor: pointer;
  background-color: rgba(0,0,0,0.1);
}
.app-image-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
.app-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.app-label {
  padding: 0 5px;
  font-size: 12px;
  color: #15FFCD;
}
/* Date */
.app-date-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.app-date-checkbox {
  margin-top: 8px;
  margin-left: 10px;
}
.app-date-input {
  position: relative;
}
.app-date-input input{
  background: none;
  color: #9e9e9e;
  font-size: 18px;
  padding: 10px 10px 10px 5px;
  display: block;
  border: none;
  width: 100%;
  border-radius: 0;
  border-bottom: 1px solid #9e9e9e;
  font-family: 'Akrobat', sans-serif;
}
.app-date-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 1px;
  width: 50px;
  color: #15FFCD;
  font-size: 28px;
  line-height: 45px;
  text-align: center;
  pointer-events: none;
}
.app-date-icon.disabled {
  color: #9e9e9e;
}
.app-show-btn {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  border: 1px solid #737A93;
  cursor: pointer;
}
.app-show-btn i {
  font-size: 36px;
  line-height: 50px;
}
.app-show-btn.active {
  color: #15FFCD;
  border-color: #15FFCD;
}
.app-input {
  position: relative;
  margin: 20px 0 5px;
}
.app-drag {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21,255,205,0.9);
  display: -webkit-box;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.app-drag-pulse {
  position: relative;
  width: 150px;
  height: 150px;
  pointer-events: none;
}
.app-drag-pulse:before, .app-drag-pulse:after {
  -webkit-animation: app-drag-pulse infinite 2s;
          animation: app-drag-pulse infinite 2s;
  box-shadow: 0 0 5px #232E40;
  border-radius: 50%;
  border: 8px solid #232E40;
  content: '';
  display: block;
  height: 100%;
  left: -3px;
  opacity: 0;
  position: absolute;
  top: -3px;
  width: 100%;
}
.app-drag-pulse:after {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes app-drag-pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

/* Tabs */
.app-tabs {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: stretch;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.app-tabs ul {
  align-items: center;
  border-bottom: 1px solid #232E40;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
}
.app-tabs a {
    align-items: center;
    border-bottom: 1px solid #232E40;
    color: #9AA4A6;
    display: flex;
    justify-content: center;
    margin-bottom: -1px;
    padding: 0.5em 1em;
    vertical-align: top;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.app-tabs a:hover {
  border-bottom-color: #9AA4A6;
}
.app-tabs li.is-active a,
.app-tabs li.is-active a:hover {
    border-bottom-color: #15FFCD;
    color: #15FFCD;
}



.ps {
  height: 100%;
}
