body {
  font-size: 16px;
  background: #f3f3f3;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.57143em;
  color: #141414;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default; }

textarea, input, button {
  font-family: "Open Sans", Helvetica, Arial, sans-serif; }

.logged-out > header .user {
  display: none; }

.hidden {
  display: none !important; }

.invisible {
  visibility: hidden !important; }

.full {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.flex-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden; }

.flex-center {
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center; }

.flex-vcenter {
  align-self: stretch;
  display: flex;
  align-items: center; }

.flex-justify-start {
  justify-content: flex-start !important; }

.flex-stretch {
  flex: 1; }

::selection {
  background: #62c05d;
  color: #fff; }

body > header {
  margin: 0;
  padding: 4px;
  background: #62c05d;
  color: #fff;
  border-bottom: 1px solid #0e6938; }
  body > header .header-logo {
    background: url(../icons/app32.png) no-repeat 0 1px;
    padding-left: 32px;
    color: #0e6938;
    font-weight: 500;
    font-size: 24px;
    height: 32px;
    line-height: 32px;
    cursor: default;
    display: inline-block;
    margin-top: 0px; }
    body > header .header-logo i {
      color: #fff;
      font-style: normal; }
  body > header .header-menu a {
    color: #0e6938;
    text-decoration: none;
    font-size: 14px; }
    body > header .header-menu a:hover {
      color: #fff; }
  body > header .header-right {
    float: right; }
    body > header .header-right input {
      margin-top: 3px;
      margin-bottom: -3px; }

body > footer {
  height: 80px; }

.right {
  float: right; }

.header-user {
  font-size: 14px;
  float: right;
  padding: 0 4px;
  color: #0e6938;
  border: 1px solid transparent;
  cursor: default;
  border-radius: 3px;
  transition: .2s all; }
  .header-user:hover {
    border: 1px solid #0e6938;
    background: #0e6938;
    /*background: rgba(255,255,255,.2);*/
    color: #fff; }

h1, h2, h3, h4, h5 {
  font-weight: normal;
  color: #333; }

h1 {
  font-size: 24px; }

a {
  color: #62c05d;
  text-decoration: none;
  cursor: pointer; }
  a:hover {
    text-decoration: underline; }
  a:focus {
    outline-color: #62c05d; }

p {
  line-height: 22px; }

.dib {
  display: inline-block; }

.db {
  display: block; }

.oh {
  overflow: hidden; }

.group::after {
  visibility: hidden;
  display: block;
  content: '';
  clear: both;
  height: 0; }

.text {
  font-size: 13px;
  padding: 6px 12px;
  color: #757e85;
  background: #f2f2f2;
  box-shadow: 2px 2px 6px -1px #b9bdc1 inset;
  border: 1px solid #aaa; }

input:focus,
textarea:focus,
select:focus {
  outline-color: #62c05d; }

.button {
  display: inline-block;
  padding: 4px 10px 6px;
  position: relative;
  outline: 0;
  background-color: #8f8f8f;
  border: 0px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-clip: padding-box;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15), inset 0 2px rgba(0, 0, 0, 0);
  font-size: 14px;
  /*font-size: 1rem;*/
  color: white;
  font-weight: bold;
  line-height: 20px;
  vertical-align: middle;
  cursor: pointer;
  transition: color 0.2s ease 0s, background 0.2s ease 0s, border-color 0.2s ease 0s; }
  .button:hover, .button:focus {
    background-color: #6f6f6f;
    color: white; }
  .button:active, .button.active {
    padding: 5px 10px;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0), inset 0 2px rgba(0, 0, 0, 0.15); }
  .button.disabled, .button[disabled] {
    padding: 5px 10px;
    background-color: rgba(143, 143, 143, 0.4);
    box-shadow: 0 0 0 0 transparent;
    color: rgba(35, 35, 35, 0.4);
    pointer-events: auto;
    cursor: not-allowed; }

.button-green {
  background-color: #62c05d; }
  .button-green:hover, .button-green:focus {
    background-color: #44a041; }
  .button-green[disabled], .button-green.disabled {
    background-color: rgba(98, 192, 93, 0.4);
    color: rgba(53, 124, 50, 0.4); }

.button-orange {
  background-color: #fe884f; }
  .button-orange:hover, .button-orange:focus {
    background-color: #d96933; }
  .button-orange[disabled], .button-orange.disabled {
    background-color: rgba(254, 136, 79, 0.4);
    color: rgba(183, 82, 34, 0.4); }

.button-white {
  color: #44a041;
  border: 1px solid #44a041;
  padding: 3px 10px 5px;
  box-shadow: inset 0 -3px 0 rgba(98, 192, 93, 0.58), inset 0 2px rgba(98, 192, 93, 0);
  background-color: #fcfcfc; }
  .button-white:hover, .button-white:focus {
    background-color: #fcfcfc;
    border-color: #44a041;
    color: #62c05d; }
  .button-white:active, .button-white.active {
    box-shadow: inset 0 -1px 0 rgba(98, 192, 93, 0.58), inset 0 2px rgba(98, 192, 93, 0.2); }
  .button-white[disabled], .button-white.disabled {
    border-color: rgba(204, 204, 204, 0.4);
    color: rgba(68, 160, 65, 0.4); }

.button-green-2 {
  box-shadow: none;
  background-color: #62c05d; }
  .button-green-2:hover, .button-green-2:focus {
    background-color: #44a041;
    box-shadow: none; }
  .button-green-2[disabled], .button-green-2.disabled {
    background-color: rgba(98, 192, 93, 0.4);
    color: rgba(53, 124, 50, 0.4);
    box-shadow: none; }

.link {
  font-size: 14px; }

.container-right {
  display: flex;
  flex: 1;
  align-items: flex-end;
  flex-direction: column; }

.centered-container {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.filmstrip-container {
  overflow: auto;
  position: relative;
  justify-content: flex-start; }

.content {
  align-self: center;
  justify-content: center;
  font-size: 14px;
  flex: 1;
  width: 100%;
  overflow: auto;
  display: flex;
  position: relative; }

.content.empty {
  color: #ccc;
  font-size: 32px;
  line-height: 1.4;
  text-align: center; }

.center {
  margin: auto; }

.text-center {
  text-align: center; }

.cursor-pointer {
  cursor: pointer; }

.panel-username, .panel-account {
  display: block; }

.has-account {
  font-size: 80%; }

.has-account {
  line-height: 1.15; }

.has-account .fa {
  position: relative;
  top: -5px; }

.login-page {
  padding-bottom: 5em; }

.login-page i {
  margin-right: .5em;
  color: #aaa;
  font-weight: normal; }

.list-page-empty .mailing-header {
  display: none; }

.list-page-empty .nomailings {
  opacity: 1; }

.nomailings {
  position: absolute;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.2s ease 0s;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  text-align: center; }
  .nomailings h1 {
    color: #ccc; }
  .nomailings .fa {
    font-size: 140px;
    padding: 20px;
    color: #ddd; }
  .nomailings > div {
    border: 3px dashed #ccc;
    padding: 1em 2em; }
  .nomailings b {
    font-weight: normal;
    color: #999; }

.list {
  list-style: none;
  margin: 0;
  padding: 0; }

.mailings-list {
  counter-reset: li;
  list-style: none;
  min-width: 500px;
  font-size: 14px;
  flex: 1; }

.mailing-header {
  display: flex;
  min-width: 720px;
  background: #dfdfdf;
  border-bottom: 1px solid #bbb;
  text-transform: uppercase;
  font-size: 12px; }
  .mailing-header > span {
    display: inline-block;
    align-self: center;
    padding: 0; }

.mailing-header-index {
  text-align: center;
  width: 30px; }

.mailing-header-content {
  width: 100px; }

.mailing-header-product {
  width: 150px;
  margin: 0 3px; }

.mailing-header-recipient {
  width: 180px; }

.mailing-header-sender {
  width: 180px; }

.mailing-header-template {
  width: 180px; }

.mailing-header-price {
  flex: 1;
  text-align: right;
  margin-right: 30px; }

.mailing {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  min-width: 720px;
  align-items: center; }
  .mailing::before {
    content: counter(li);
    counter-increment: li;
    position: absolute;
    color: #abc;
    top: 6px;
    left: 0;
    width: 30px;
    text-align: center; }
  .mailing .mailing-pricevalue small {
    text-align: center;
    font-size: 70%;
    color: #8f8f8f;
    margin-right: 4px; }

li:hover .list-select {
  opacity: 1; }

.list-selected {
  background: #cbe3f8; }

.list-found {
  background: #ffc; }

.list-select {
  width: 30px;
  margin: 0;
  padding: 0;
  opacity: 0; }
  .list-select:checked, .list-select:focus {
    opacity: 1;
    outline: none; }

.mailing-list-none .list-select {
  visibility: hidden; }

.mailing-status {
  position: absolute;
  bottom: 10px;
  left: 8px;
  pointer-events: none; }
  .mailing-status > span {
    font-size: 12px;
    background: rgba(255, 255, 255, 0.5);
    margin-left: 3px;
    padding: 3px;
    pointer-events: none; }

.mailing-image {
  width: 100px;
  height: 80px; }

.mailing-content {
  cursor: pointer;
  padding: 3px; }
  .mailing-content > div {
    width: 96px;
    text-align: center; }
  .mailing-content img {
    display: block; }
  .mailing-content small {
    color: #777;
    font-weight: normal;
    line-height: 1.2;
    display: block;
    word-break: break-all;
    text-overflow: ellipsis; }
  .mailing-content:hover {
    background: rgba(128, 128, 128, 0.1); }

.action-setproduct {
  cursor: pointer; }
  .action-setproduct:hover {
    background: rgba(128, 128, 128, 0.1); }

.mailing-description {
  width: 150px; }
  .mailing-description span {
    font-size: 13px;
    color: #000;
    line-height: 14px;
    padding: 3px;
    border: 1px solid transparent;
    cursor: pointer; }
  .mailing-description small {
    display: inline-block;
    padding: 0 3px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #999; }
  .mailing-description > span > span {
    display: inline-block; }
    .mailing-description > span > span:hover {
      border: 1px solid #ccc; }

.mailing-recipient {
  line-height: 16px;
  width: 180px; }
  .mailing-recipient b {
    color: #0e6938;
    font-weight: normal; }
  .mailing-recipient small {
    color: #999; }

.mailing-sender {
  line-height: 16px;
  width: 180px; }
  .mailing-sender b {
    color: #333;
    font-weight: normal; }
  .mailing-sender small {
    color: #999; }

.mailing-action {
  padding: 3px;
  border: 1px solid transparent;
  cursor: pointer; }
  .mailing-action:hover {
    border: 1px solid #ccc;
    background: rgba(128, 128, 128, 0.1); }

.mailing-template {
  width: 180px; }
  .mailing-template .mailing-action {
    color: #777; }
  .mailing-template small {
    display: inline-block;
    padding: 0 4px; }

.mailing-price {
  font-size: 18px;
  text-align: right;
  margin-right: 12px;
  flex: 1;
  white-space: nowrap; }
  .mailing-price b {
    color: #333;
    font-weight: normal;
    display: block; }

.footer {
  margin: 0;
  padding: 6px;
  text-align: right;
  background: #dfdfdf;
  border-top: 1px solid #ccc; }
  .footer .left {
    margin-left: 6px;
    line-height: 26px;
    float: left; }
    .footer .left a {
      color: #333;
      text-decoration: none;
      padding: 3px;
      border: 1px solid transparent;
      cursor: pointer; }
      .footer .left a:hover {
        border: 1px solid #ccc;
        background: rgba(128, 128, 128, 0.1); }

.footer-left {
  float: left;
  padding: 6px; }
  .footer-left b {
    color: #333; }

.color-error {
  color: #bd362f; }

.color-warning {
  color: #f89406; }

.color-success {
  color: #5cb85c; }

.color-info {
  color: #428bca; }

.color-black {
  color: #000; }

.color-lightgrey {
  color: #ccc; }

.toolbar-name {
  padding: 3px 6px;
  color: #333;
  text-transform: none; }

.toolbar-template {
  padding: 0 3px; }
  .toolbar-template .fa-lock {
    color: red;
    padding: 0 5px; }
  .toolbar-template.readonly .toolbar-button,
  .toolbar-template.readonly .field-select {
    display: none; }
  .toolbar-template .fa-lock {
    display: none; }
  .toolbar-template.readonly .fa-lock {
    display: inline-block; }

.preview {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center; }

.filmstrip {
  list-style: none;
  margin: 0;
  padding: 6px;
  overflow: visible; }
  .filmstrip li {
    position: relative; }
    .filmstrip li > div {
      position: relative;
      overflow: visible;
      margin: 8px auto;
      border: 1px solid #777;
      box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
      background: #f4f4f4;
      width: 100%;
      box-sizing: padding-box;
      height: 141%; }
    .filmstrip li > .page-buttons {
      position: absolute;
      top: 0;
      right: -20px;
      display: inline-block;
      background: transparent;
      box-shadow: none;
      border: none;
      width: auto;
      height: auto; }
      .filmstrip li > .page-buttons > a {
        display: block; }
      .filmstrip li > .page-buttons > a[data-action=delete] {
        display: none;
        color: #777; }
        .filmstrip li > .page-buttons > a[data-action=delete]:hover {
          color: #f00; }
      .filmstrip li > .page-buttons > a[data-action=delete-page] {
        color: #fe884f; }

.filmstrip-full.multiple-items > li > .page-buttons a[data-action=delete] {
  display: block; }

.marker {
  position: absolute;
  border: 1px solid rgba(127, 127, 127, 0.5);
  background: rgba(127, 127, 127, 0.1); }

.marker-overlap {
  border: 1px solid rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.1); }

.marker-char {
  font-size: 6px;
  border: 0; }

.marker-char.marker-overlap {
  background: rgba(255, 0, 0, 0.5);
  border: 0; }

.filmstrip-thumb {
  width: 172px;
  border-right: 1px solid #ccc;
  background: #d4d4d4; }
  .filmstrip-thumb li > div {
    width: 138px;
    height: 195px; }

.filmstrip-full {
  flex: 1;
  margin: .5em 0 2em 0; }
  .filmstrip-full li > div {
    width: 780px;
    height: 1103.14285714px;
    background: #eee; }

#selection-toolbar {
  border-top: 1px solid #ccc;
  font-size: 14px;
  padding: 2px 5px;
  color: #141414;
  background: #dfdfdf; }
  #selection-toolbar a {
    display: inline-block;
    padding: 0 6px;
    cursor: pointer;
    color: inherit;
    transition: .2s all;
    border-radius: 3px; }
    #selection-toolbar a:hover {
      color: #f2f2f2;
      text-decoration: none;
      background: #777;
      box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15), inset 0 2px rgba(0, 0, 0, 0); }
  #selection-toolbar.selection-toolbar-empty a:not(.always-active) {
    color: #777;
    text-shadow: 1px 1px #fff;
    cursor: default; }
    #selection-toolbar.selection-toolbar-empty a:not(.always-active):hover {
      color: inherit;
      background: transparent;
      box-shadow: none; }
  #selection-toolbar.selection-toolbar-empty #selected-label {
    visibility: hidden; }

#selected-label {
  color: #555; }

#selected-label, #total-label {
  margin-right: 6px; }

.footer .actions, #selection-toolbar .actions {
  display: inline-block;
  min-width: 6em;
  text-align: right; }

.popup {
  background: #fff;
  border: 1px solid #777;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  font-size: 14px;
  width: 360px; }
  .popup h2 {
    margin: 0;
    padding: 12px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    position: relative;
    background: #62c05d;
    color: #fff; }
    .popup h2 .fa {
      position: absolute;
      right: 12px;
      top: 12px;
      color: #fff;
      cursor: pointer; }
      .popup h2 .fa:hover {
        color: #333; }

.popup-wide {
  width: 500px; }

.popup-content {
  margin: 0;
  padding: 0 12px; }

.popup-actions {
  margin: 0;
  padding: 6px 12px;
  background: #f2f2f2;
  border-top: 1px solid #ccc;
  text-align: right; }

.number {
  width: 2.4em;
  text-align: center; }

.overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); }
  .overlay.overlay-visible {
    display: block; }

.product {
  cursor: pointer;
  position: relative;
  margin: 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center; }
  .product span {
    flex: 1; }

.product-image {
  width: 100px;
  height: 80px; }

.product-title {
  margin: 10px; }

.product-name {
  position: absolute;
  right: 3px;
  top: 1px;
  font-size: 12px;
  color: #ccc; }

.modal-overlay {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow: auto;
  text-align: center;
  transition: opacity 0.2s ease 0s; }

.overlay-light {
  background-color: rgba(238, 238, 238, 0.5); }

.overlay-dark {
  background: rgba(30, 30, 30, 0.5); }

.overlay-black {
  background: rgba(30, 30, 30, 0.8); }

.modal {
  width: 100%;
  max-width: 480px;
  font-size: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background-clip: padding-box;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  transform: scale(0.95); }

.modal_active .modal {
  transform: scale(1); }

a.modal-close {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  font-size: 22px;
  line-height: 22px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  text-align: center; }

.modal_header {
  align-self: stretch;
  height: 56px;
  padding: 0 35px 0 15px;
  position: relative;
  border-bottom: 1px solid #cccccc;
  text-align: left;
  vertical-align: middle; }
  .modal_header h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    color: #003f00; }
    .modal_header h3 .icon {
      margin-right: 5px; }
  .modal_header .modal-close {
    color: #44a041; }

.modal_content {
  flex: 1;
  align-self: stretch;
  padding: 15px;
  text-align: left;
  overflow: auto; }
  .modal_content.no-pad {
    padding: 0; }

.modal_footer {
  align-self: stretch;
  padding: 10px 15px;
  background-color: white;
  border-top: 1px solid #cccccc; }

.modal-popup {
  max-width: 400px;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  background-clip: padding-box;
  box-shadow: 0 0 0 0 transparent; }

.input {
  margin: 0;
  padding: 5px 8px;
  position: relative;
  display: inline-block;
  background-color: #fcfcfc;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-clip: padding-box;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.08), 0 0 7px rgba(0, 0, 0, 0);
  outline: none;
  font-size: 14px;
  font-size: 1rem;
  color: #141414;
  line-height: 20px;
  transition: border 0.2s ease 0s, color 0.2s ease 0s, box-shadow 0.2s ease 0s; }
  .input:focus, .input:active {
    border-color: #b0b0b0;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0), 0 0 7px rgba(0, 0, 0, 0.15); }
  .input[disabled], .input.disabled {
    filter: alpha(opacity=60);
    opacity: 0.6;
    border-color: #b0b0b0;
    background-color: #ccc;
    pointer-events: none; }
  .input.readonly, .input[readonly] {
    filter: alpha(opacity=80);
    opacity: 0.8; }
  .input.error {
    background-color: #fff4f0;
    border-color: #fe884f;
    color: #fe884f; }
  .input.input-number {
    width: 48px; }
  .input.input-date {
    width: 150px;
    padding: 2px 0 2px 8px; }
  .input.input-medium {
    width: 200px; }

.disabled {
  color: #999; }

.palette {
  margin-top: 30px;
  background: #efeff2;
  border: 1px solid #dbdde6;
  padding: 3px;
  box-shadow: 0 0 3px #000;
  width: 80%;
  max-width: 400px;
  text-align: left; }
  .palette p {
    margin: 2px 0 4px 0; }
    .palette p input {
      width: 100%;
      box-sizing: border-box; }
  .palette ul {
    position: relative;
    border: 1px solid #dbdde6;
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 253px;
    box-sizing: border-box;
    overflow: auto;
    overflow-x: hidden; }
  .palette li {
    margin: 0;
    padding: 4px;
    border: 1px solid #ddd;
    margin-top: -1px;
    font-size: 14px;
    color: #444; }
    .palette li.selected {
      background: #ccc; }
    .palette li b {
      text-decoration: underline; }

.toolbar {
  position: relative;
  color: #eee;
  background: rgba(30, 30, 30, 0.7);
  border-bottom: 1px solid #1e1e1e;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 3px 12px; }
  .toolbar .toolbar-notemplate {
    padding: 0 3px;
    display: none; }
  .toolbar a.toolbar-button {
    display: inline-block;
    padding: 0 6px;
    cursor: pointer;
    color: #777;
    text-decoration: none; }
    .toolbar a.toolbar-button:hover {
      color: #fff;
      background-color: #777; }
    .toolbar a.toolbar-button[data-id=field-add]:hover {
      color: #0f0; }
    .toolbar a.toolbar-button[data-id=template-delete]:hover, .toolbar a.toolbar-button[data-id=field-delete]:hover {
      color: #f00; }
  .toolbar label {
    margin-left: 12px; }
  .toolbar input, .toolbar select {
    width: 120px;
    margin-left: 6px;
    padding: 4px;
    background: #1e1e1e;
    -webkit-appearance: none;
    border: 1px solid #444;
    color: #ddd;
    position: relative; }
    .toolbar input.empty, .toolbar select.empty {
      color: #777; }
    .toolbar input option, .toolbar select option {
      line-height: 40px;
      color: #ddd; }
      .toolbar input option.empty, .toolbar select option.empty {
        color: #777; }
      .toolbar input option.preferred, .toolbar select option.preferred {
        color: #ff0;
        text-shadow: 1px 1px 1px #fff; }
  .toolbar input.select {
    color: #fff;
    width: 118px;
    padding-left: 12px; }
  .toolbar .right-buttons {
    right: 6px;
    top: 8px;
    position: absolute; }
    .toolbar .right-buttons a {
      display: inline-block;
      color: #ddd;
      text-decoration: none;
      cursor: pointer;
      text-align: center;
      vertical-align: middle;
      width: 20px; }
      .toolbar .right-buttons a:hover {
        color: #fff; }
      .toolbar .right-buttons a.close {
        font-size: 22px;
        height: 30px;
        font-weight: bold; }

.no-template .toolbar .toolbar-notemplate {
  display: block; }

.no-template .toolbar .toolbar-template {
  display: none; }

.no-padding {
  padding: 0; }

ul.list-products {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative; }
  ul.list-products li {
    position: relative;
    margin: 0;
    padding: 0;
    border-top: 1px solid #ccc;
    color: #777; }
    ul.list-products li:first-child {
      border-top: 0; }
    ul.list-products li label {
      display: flex;
      align-items: center; }
      ul.list-products li label img {
        flex: 0 0 100px; }
      ul.list-products li label span {
        flex: 1; }
        ul.list-products li label span .tags {
          display: block; }
          ul.list-products li label span .tags small {
            padding: 1px 4px;
            font-size: 10px;
            font-weight: bold;
            background: #419641;
            color: #fff; }
    ul.list-products li.list-selected small {
      color: #999; }

#error-list {
  font-size: 13px; }
  #error-list h3 {
    font-size: 13px;
    background: #ccc;
    color: #000;
    padding: 0 6px;
    margin: 0;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #bbb; }
  #error-list .error-list-table {
    max-height: 100px;
    overflow: auto; }
    #error-list .error-list-table table {
      border-collapse: collapse;
      width: 100%; }
      #error-list .error-list-table table tr {
        border-bottom: 1px solid #ddd; }
      #error-list .error-list-table table .icon {
        width: 30px;
        padding-left: 6px;
        color: #777; }
        #error-list .error-list-table table .icon .fa-times-circle {
          color: #f00; }
        #error-list .error-list-table table .icon .fa-exclamation-triangle {
          color: #f88017; }
      #error-list .error-list-table table .message:hover {
        text-decoration: underline;
        cursor: pointer; }

.registered-post-field {
  position: absolute;
  border: 2px solid #666666;
  margin: -2px;
  background: rgba(169, 169, 169, 0.2);
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  display: table; }
  .registered-post-field i {
    display: table-cell;
    vertical-align: middle; }

.field {
  position: absolute;
  border: 2px solid #9b4;
  margin: -2px;
  box-shadow: 0 0 1px #074;
  background: rgba(153, 187, 68, 0.2);
  text-align: left;
  z-index: 2;
  cursor: pointer; }
  .field b.move {
    position: absolute;
    width: 6px;
    height: 6px;
    border: 1px solid #074;
    background: #9b4;
    z-index: 1;
    display: none; }
  .field .nw {
    left: 0;
    top: 0;
    margin: -5px -5px;
    cursor: nw-resize; }
  .field .n {
    left: 50%;
    top: 0;
    margin: -5px -4px;
    cursor: n-resize; }
  .field .ne {
    left: 100%;
    top: 0;
    margin: -5px -3px;
    cursor: ne-resize; }
  .field .e {
    left: 100%;
    top: 50%;
    margin: -4px -3px;
    cursor: e-resize; }
  .field .se {
    left: 100%;
    top: 100%;
    margin: -3px -3px;
    cursor: se-resize; }
  .field .s {
    left: 50%;
    top: 100%;
    margin: -3px -4px;
    cursor: s-resize; }
  .field .sw {
    left: 0;
    top: 100%;
    margin: -3px -5px;
    cursor: sw-resize; }
  .field .w {
    left: 0;
    top: 50%;
    margin: -4px -5px;
    cursor: w-resize; }
  .field b.del {
    visibility: hidden;
    width: 15px;
    height: 15px;
    color: #f00;
    right: 0;
    top: -25px;
    padding: 3px;
    color: rgba(255, 0, 0, 0);
    cursor: pointer;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    text-align: center; }
  .field:hover b.del {
    visibility: visible;
    color: red; }
  .field i {
    position: absolute;
    display: block;
    visibility: hidden;
    bottom: 100%;
    left: -2px;
    font-style: normal;
    font-size: 12px;
    border: 1px solid #ccc;
    color: rgba(0, 0, 0, 0);
    background: rgba(255, 255, 255, 0);
    border-color: rgba(192, 192, 192, 0);
    margin: 3px 0;
    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    padding: 0 3px;
    cursor: default;
    white-space: nowrap; }
  .field:hover i {
    visibility: visible;
    color: black;
    background: rgba(255, 255, 255, 0.8);
    border-color: silver; }
  .field.field-selected {
    cursor: move; }
    .field.field-selected b.move {
      display: block; }

.panel header {
  position: relative; }
  .panel header .modal-close {
    color: #555;
    right: 0; }

section.user {
  margin-top: 45px;
  margin-right: 5px;
  padding: 10px 10px 10px 56px;
  width: 20em;
  text-align: left;
  font-size: 14px;
  position: relative;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  background-clip: padding-box;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2); }
  section.user::after {
    position: absolute;
    top: 0;
    right: 72px;
    content: '';
    margin-top: -7px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-bottom: 7px solid #fff;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent; }
  section.user::before {
    position: absolute;
    top: 0;
    right: 70px;
    content: '';
    margin-top: -9px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(0, 0, 0, 0.3); }
  section.user img {
    position: absolute;
    left: 0;
    top: 0;
    padding: 9px 3px;
    width: 50px; }
  section.user h3 {
    margin: 0;
    margin-top: 6px;
    white-space: nowrap;
    line-height: 20px;
    vertical-align: bottom;
    font-weight: bold; }
  section.user p {
    margin: 3px 0;
    white-space: nowrap;
    line-height: 18px;
    font-size: smaller; }
  section.user ul {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
    text-align: right; }
  section.user li {
    margin: 0;
    padding: 0;
    display: inline-block; }
  section.user a.link {
    font-size: 9pt;
    text-decoration: underline;
    padding: 0;
    color: #777; }
    section.user a.link:hover {
      background: transparent;
      color: #000; }
  section.user a {
    display: inline-block;
    color: #141414;
    padding: 3px 6px;
    text-decoration: none;
    text-align: center; }
    section.user a:hover {
      background: #eee; }

#messages {
  position: absolute;
  right: 8px;
  top: 44px;
  z-index: 9999;
  margin: 0;
  padding: 3px;
  list-style: none; }
  #messages li {
    border-left: 24px solid #cc0000;
    background: #ff4b47;
    margin: 0;
    padding: 2px 6px;
    font-size: 9pt;
    position: relative;
    padding-right: 24px;
    width: 240px; }
    #messages li i.close {
      cursor: pointer;
      display: block;
      position: absolute;
      top: 7px;
      right: 4px;
      width: 16px;
      height: 16px;
      text-align: center;
      line-height: 16px;
      font-size: 20px;
      color: rgba(0, 0, 0, 0.5); }

progress {
  background-color: #fff;
  border: 1px solid #ccc; }
  progress::-webkit-progress-bar {
    background-color: transparent; }
  progress::-webkit-progress-value {
    background-color: #62c05d; }

.filter-product {
  margin: 0;
  padding: 3px 12px;
  border-bottom: 1px solid #ccc;
  background: #f3f3f3; }
  .filter-product b {
    display: inline-block;
    width: 10em; }
  .filter-product select[data-id=select-correspondence] {
    max-width: 250px; }

body.debug
.detail-page a[data-id=download] {
  display: inline-block; }

.detail-page a[data-id=download] {
  display: none; }

body.debug
.modal-field input[data-id=name] {
  display: inline-block; }

.modal-field input[data-id=name] {
  display: none; }

.dock-column {
  display: flex;
  flex-direction: column; }

.dock-fill {
  flex: 1;
  overflow: auto; }

.table-preview {
  overflow: auto;
  max-height: 200px;
  border: 1px solid #ccc;
  background: #f3f3f3;
  padding: 3px;
  line-height: 1.5;
  font-size: smaller; }
  .table-preview table {
    background: #fff;
    border-collapse: collapse; }
    .table-preview table th {
      background: #ccc;
      border: 1px solid #999; }
    .table-preview table td {
      border: 1px solid #ccc; }

table.table-import {
  border-collapse: collapse; }
  table.table-import td {
    border: 1px solid #ccc;
    padding: 0 2px; }
    table.table-import td select {
      width: 100px; }

.helptext {
  margin: 0;
  padding: 0;
  color: #777;
  font-weight: normal;
  font-size: smaller; }

.helptext-checkbox {
  margin: 0;
  padding: 0;
  margin-left: 2em;
  color: #777;
  font-weight: normal;
  font-size: smaller; }

.rd-container {
  display: none;
  border: 1px solid #333;
  background-color: #fff;
  padding: 0;
  text-align: center;
  font-size: 12px; }

.rd-container-attachment {
  position: absolute; }

.rd-month {
  display: inline-block;
  margin-right: 25px; }

.rd-month:last-child {
  margin-right: 0; }

.rd-back,
.rd-next {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  margin: 0; }

.rd-back[disabled],
.rd-next[disabled] {
  cursor: default; }

.rd-back {
  float: left; }

.rd-next {
  float: right; }

.rd-back:before {
  display: block;
  font-weight: bold;
  content: '<';
  height: 25px;
  width: 20px;
  line-height: 25px;
  cursor: pointer; }

.rd-next:before {
  display: block;
  font-weight: bold;
  content: '>';
  height: 25px;
  width: 20px;
  line-height: 25px;
  cursor: pointer; }

.rd-day-body {
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  padding: 3px; }

.rd-day-selected,
.rd-time-option:hover,
.rd-time-selected {
  cursor: pointer;
  background-color: #333;
  color: #fff; }

.rd-day-next-month,
.rd-day-prev-month {
  color: #999; }

.rd-day-disabled {
  cursor: default;
  color: #fcc; }

.rd-time {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  min-width: 80px; }

.rd-time-list {
  display: none;
  position: absolute;
  overflow-y: scroll;
  max-height: 160px;
  left: 0;
  right: 0;
  background-color: #fff;
  color: #333; }

.rd-time-selected {
  padding: 5px; }

.rd-time-option {
  padding: 5px; }

.rd-day-concealed {
  visibility: hidden; }

.find-popup {
  position: absolute;
  display: none;
  right: 20px;
  background: #dfdfdf;
  border: 1px solid #bbb;
  border-top: 0;
  margin-top: -1px;
  padding: 1px 2px;
  z-index: 1; }
  .find-popup.active {
    display: block; }
  .find-popup span {
    display: inline-block;
    min-width: 40px;
    text-align: center;
    white-space: nowrap;
    font-size: 13px; }
  .find-popup i {
    margin: 0 -1px;
    font-size: 13px;
    padding: 2px 4px;
    cursor: pointer; }
    .find-popup i:hover, .find-popup i.selected {
      background: #eee; }

.account-list {
  width: 60%;
  margin: 0 auto;
  list-style: none;
  padding: 0; }
  .account-list button {
    cursor: pointer;
    outline: none;
    width: 100%;
    padding: 20px 0;
    display: block;
    border: none;
    background: transparent;
    border-bottom: 1px solid #cecece;
    text-align: left;
    font-size: 12px; }
  .account-list span {
    display: inline-block; }
  .account-list .role {
    width: 160px;
    text-align: center;
    vertical-align: top;
    position: relative;
    top: 5px; }
    .account-list .role span {
      background: #fe884f;
      color: white;
      padding: 5px 10px;
      border-radius: 10px;
      font-weight: bold;
      text-transform: uppercase; }
  .account-list .role-user .role span {
    background: #62c05d; }
  .account-list h3 {
    color: #fe884f;
    margin: 0; }
  .account-list .role-user h3 {
    color: #62c05d; }

.metadata-table {
  width: 100%; }
  .metadata-table td, .metadata-table th {
    padding: 5px 10px; }
  .metadata-table i.icon {
    font-size: 20px;
    font-weight: bold; }
  .metadata-table input[type="text"] {
    width: 100%; }

.table {
  width: 100%;
  border-collapse: collapse; }
  .table th, .table td {
    border: 1px solid gray;
    padding: 2px 5px; }

.slsp-button, .slsp-button:hover, .slsp-button:focus {
  padding: 0 2px;
  background: none;
  box-shadow: none;
  position: relative;
  top: 1px; }

.slsp-button img {
  border-radius: 4px; }

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