* {
  -webkit-tap-highlight-color: transparent !important; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  outline: none; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

.spinner {
  margin: 100px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  -webkit-animation: sk-rotate 2.0s infinite linear;
  animation: sk-rotate 2.0s infinite linear; }

.dot1, .dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out; }

.dot2 {
  top: auto;
  bottom: 0;
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s; }

@-webkit-keyframes sk-rotate {
  100% {
    -webkit-transform: rotate(360deg); } }
@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg); } }
@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0); }
  50% {
    -webkit-transform: scale(1); } }
@keyframes sk-bounce {
  0%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0); }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1); } }
body.module-dashboard > main {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0; }
  body.module-dashboard > main > div {
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }
    body.module-dashboard > main > div a:hover .remove {
      opacity: .2; }
    body.module-dashboard > main > div h1 {
      height: 125px;
      margin: 15px;
      margin-bottom: 0; }
    body.module-dashboard > main > div > .list {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      overflow: auto;
      padding: 15px; }
      body.module-dashboard > main > div > .list > .no-results {
        width: 100%;
        height: 100%;
        color: #6e6e6d;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        line-height: 40px;
        padding: 40px;
        padding-bottom: 140px;
        text-align: center; }
        body.module-dashboard > main > div > .list > .no-results .icon-featuring {
          width: 18px;
          height: 18px;
          background: url(../images/icons/not-featured.png) center center no-repeat;
          display: inline-block;
          margin: 0 6px;
          opacity: .4;
          position: relative;
          top: -2px;
          vertical-align: middle; }
        body.module-dashboard > main > div > .list > .no-results a {
          color: #6e6e6d;
          white-space: nowrap; }
    body.module-dashboard > main > div .info-created {
      color: #666;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      font-size: 13px;
      font-weight: 100;
      margin-top: 12px; }
    body.module-dashboard > main > div .remove {
      width: 32px;
      height: 32px;
      background: url(../images/icons/close.png) center center no-repeat;
      background-size: 12px;
      cursor: pointer;
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      transition: opacity 0.15s; }
      body.module-dashboard > main > div .remove:hover {
        opacity: .5 !important; }
    body.module-dashboard > main > div.collections {
      width: 40%;
      background-color: #cfe7e3;
      overflow: hidden; }
      body.module-dashboard > main > div.collections .collections-list > ul > li > a > div.icon-folder {
        background-position-y: calc(50% - 13px); }
      body.module-dashboard > main > div.collections .collections-list > ul > li > a > div.name {
        width: calc(100% - 96px);
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        align-items: flex-start;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center; }
      body.module-dashboard > main > div.collections .collections-list > ul > li > a > div.number {
        width: 48px; }
      body.module-dashboard > main > div.collections .collections-list > ul > li > a > div.remove {
        top: 6px; }
    body.module-dashboard > main > div.projects {
      width: 60%;
      overflow: hidden; }
      body.module-dashboard > main > div.projects .projects-list > ul > li.approved:before {
        width: 15px;
        background: #73e8a2;
        content: '';
        position: absolute;
        top: 0;
        bottom: -2px;
        left: -15px; }
      body.module-dashboard > main > div.projects .projects-list > ul > li > a {
        position: relative; }
        body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name {
          width: calc(60% - 110px);
          -webkit-box-direction: normal;
          -webkit-box-orient: vertical;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-align: start;
          -ms-flex-align: start;
          -webkit-align-items: flex-start;
          -moz-align-items: flex-start;
          align-items: flex-start;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -moz-box-flex: 1;
          -moz-flex: 1;
          -ms-flex: 1;
          flex: 1; }
          body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name .value {
            line-height: 22px; }
          body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name .info-created {
            margin-top: 10px; }
            body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name .info-created .pm {
              min-width: 110px;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              padding-right: 20px; }
            body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name .info-created .mcc {
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              line-height: 14px;
              margin-left: 8px; }
              body.module-dashboard > main > div.projects .projects-list > ul > li > a > div.name .info-created .mcc strong {
                margin-left: 2px; }
        body.module-dashboard > main > div.projects .projects-list > ul > li > a .info .btn {
          margin: 0 4px; }
          body.module-dashboard > main > div.projects .projects-list > ul > li > a .info .btn:last-child {
            margin-right: 0; }

body.module-collections {
  background-color: #cfe7e3; }
  body.module-collections > main {
    padding: 0;
    background-color: #cfe7e3; }
    body.module-collections > main .form-container #projects-field {
      width: 100%; }
    body.module-collections > main .form-container h2 {
      background-image: url(../images/icons/add-project.png);
      background-position: left center; }
    body.module-collections > main h1 {
      background: #cfe7e3;
      padding-left: 40px;
      padding-right: 15px;
      position: relative; }
    body.module-collections > main ul.list {
      padding: 15px;
      padding-top: 0; }
      body.module-collections > main ul.list > li.not-mine-hidden {
        display: none; }
      body.module-collections > main ul.list > li > a > div.icon {
        width: 48px; }
      body.module-collections > main ul.list > li > a > div.name {
        width: calc(50% - 48px); }
      body.module-collections > main ul.list > li > a > div.created {
        width: 20%;
        color: #666;
        font-size: 12px;
        padding-right: 20px; }
      body.module-collections > main ul.list > li > a > div.featuring {
        width: 5%; }
      body.module-collections > main ul.list > li > a > div.number {
        width: 25%; }

body.module-projects > main {
  padding: 0; }
  body.module-projects > main.project #revision_form_container {
    display: none; }
  body.module-projects > main.message #project_form_container {
    display: none; }
  body.module-projects > main h1 {
    background-color: #eeefef;
    padding-top: 0;
    padding-left: 40px;
    padding-right: 15px; }
    body.module-projects > main h1 > .spacer {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -moz-box-flex: 1;
      -moz-flex: 1;
      -ms-flex: 1;
      flex: 1;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      position: relative; }
    body.module-projects > main h1 > .sorting {
      position: relative; }
      body.module-projects > main h1 > .sorting:after, body.module-projects > main h1 > .sorting:before {
        pointer-events: none;
        position: absolute;
        z-index: 3; }
      body.module-projects > main h1 > .sorting:before {
        width: 88px;
        height: 44px;
        box-sizing: border-box;
        color: #6e6e6d;
        content: 'Sort';
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 14px;
        padding-left: 56px;
        top: 0;
        left: 0; }
      body.module-projects > main h1 > .sorting:after {
        width: 44px;
        height: 100%;
        background: url(../images/icons/arrow-select.png) center center no-repeat;
        content: '';
        top: 0;
        right: 0;
        transition: opacity 0.15s, transform 0.15s; }
      body.module-projects > main h1 > .sorting.expanded:after {
        opacity: .4;
        transform: rotate(-180deg); }
      body.module-projects > main h1 > .sorting.expanded > ul.options {
        opacity: 1;
        pointer-events: all;
        top: 40px; }
      body.module-projects > main h1 > .sorting > #sorting {
        width: 300px;
        height: 44px;
        background-color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 14px;
        outline: none;
        overflow: hidden;
        padding-left: 88px;
        padding-right: 44px;
        position: relative;
        z-index: 2; }
        body.module-projects > main h1 > .sorting > #sorting > .chosen {
          height: 44px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          -webkit-box-pack: start;
          -ms-flex-pack: start;
          -webkit-justify-content: flex-start;
          -moz-justify-content: flex-start;
          justify-content: flex-start; }
      body.module-projects > main h1 > .sorting > ul.options {
        background: #fff;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
        color: #666;
        font-size: 14px;
        opacity: 0;
        padding: 8px 22px;
        pointer-events: none;
        position: absolute;
        top: 30px;
        left: 0;
        right: 0;
        transition: background 0.15s, opacity 0.15s, top 0.15s;
        z-index: 1; }
        body.module-projects > main h1 > .sorting > ul.options > li {
          border-bottom: 1px solid #e2e2e2;
          cursor: pointer;
          padding: 12px 0;
          transition: color 0.15s, padding-left 0.15s;
          user-select: none; }
          body.module-projects > main h1 > .sorting > ul.options > li:hover {
            font-weight: 600;
            padding-left: 2px; }
          body.module-projects > main h1 > .sorting > ul.options > li:last-child {
            border: none; }
          body.module-projects > main h1 > .sorting > ul.options > li[selected] {
            background: url(../images/icons/tick.png) left center no-repeat;
            color: #000 !important;
            font-weight: 600;
            padding-left: 30px; }
      body.module-projects > main h1 > .sorting #order {
        width: 58px;
        height: 44px;
        cursor: pointer;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 3; }
        body.module-projects > main h1 > .sorting #order > .bar {
          width: 12px;
          height: 2px;
          background-color: #494949;
          margin-left: 21px;
          margin-bottom: 3px;
          pointer-events: none;
          transition: width 0.15s; }
          body.module-projects > main h1 > .sorting #order > .bar:first-child {
            margin-top: 16px; }
        body.module-projects > main h1 > .sorting #order.asc > .bar:first-child {
          width: 6px; }
        body.module-projects > main h1 > .sorting #order.asc > .bar:last-child {
          width: 18px; }
        body.module-projects > main h1 > .sorting #order.desc > .bar:first-child {
          width: 18px; }
        body.module-projects > main h1 > .sorting #order.desc > .bar:last-child {
          width: 6px; }
  body.module-projects > main #project_form_container > .content h2 {
    background-image: url(../images/icons/add-project.png);
    background-position: left calc(50% + 4px); }
  body.module-projects > main #collections-list {
    opacity: 1;
    padding: 15px;
    padding-top: 0;
    transition: opacity 0.1s; }
    body.module-projects > main #collections-list ul.list > li.not-mine-hidden {
      display: none; }
    body.module-projects > main #collections-list ul.list > li.approved:before {
      width: 15px;
      background: #73e8a2;
      content: '';
      position: absolute;
      top: 0;
      bottom: -2px;
      left: -15px; }
    body.module-projects > main #collections-list ul.list > li > a > div.icon {
      width: 48px; }
    body.module-projects > main #collections-list ul.list > li > a > div.name {
      width: calc(35% - 48px); }
    body.module-projects > main #collections-list ul.list > li > a > div.pm, body.module-projects > main #collections-list ul.list > li > a > div.mcc {
      color: #666;
      font-size: 12px;
      line-height: 15px; }
    body.module-projects > main #collections-list ul.list > li > a > div.pm {
      min-width: 140px;
      padding-right: 20px; }
    body.module-projects > main #collections-list ul.list > li > a > div.mcc {
      width: calc(24% - 76px);
      padding-right: 20px; }
      body.module-projects > main #collections-list ul.list > li > a > div.mcc strong {
        margin-left: 2px; }
    body.module-projects > main #collections-list ul.list > li > a > div.deadline {
      width: 13%; }
    body.module-projects > main #collections-list ul.list > li > a > div.approved {
      width: 8%; }
    body.module-projects > main #collections-list ul.list > li > a > div.info {
      width: 15%;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end; }
      body.module-projects > main #collections-list ul.list > li > a > div.info .btn {
        margin: 0 4px; }

body.module-projects > main {
  transition: opacity 0.3s; }
  body.module-projects > main:not(.revision):not(.message):not(.task) > h1 > .spacer .btn {
    margin-right: 0; }
    body.module-projects > main:not(.revision):not(.message):not(.task) > h1 > .spacer .btn:last-child {
      margin-right: 25px; }
  body.module-projects > main.revision #task_form_container {
    display: none; }
  body.module-projects > main.message #revision_form_container h2 .revision,
  body.module-projects > main.message #revision_form_container .actions .revision {
    display: none; }
  body.module-projects > main.message #revision_form_container h2 .message,
  body.module-projects > main.message #revision_form_container .actions .message {
    display: block !important; }
  body.module-projects > main.message #task_form_container {
    display: none; }
  body.module-projects > main.message .field.calendar {
    display: none; }
  body.module-projects > main.task #revision_form_container {
    display: none; }
  body.module-projects > main #revision_form_container > .content h2 {
    background-image: url(../images/icons/eye-big.png); }
    body.module-projects > main #revision_form_container > .content h2 .message {
      display: none; }
  body.module-projects > main #revision_form_container .actions .message {
    display: none; }
  body.module-projects > main #revision_form_container #attachments-zone {
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    padding-left: 20px;
    transition: background-color 0.6s;
    user-select: none;
    -moz-user-select: none; }
    body.module-projects > main #revision_form_container #attachments-zone.dz-drag-hover {
      background-color: rgba(255, 255, 255, 0.4); }
    body.module-projects > main #revision_form_container #attachments-zone .title {
      height: 55px;
      background: url(../images/icons/plus.png) left center no-repeat;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      opacity: .8;
      padding: 0 20px;
      padding-left: 28px;
      margin-bottom: 35px;
      pointer-events: none; }
    body.module-projects > main #revision_form_container #attachments-zone .dz-preview {
      height: 32px;
      border-radius: 32px;
      background-color: #fff;
      box-shadow: 0 0 18px transparent;
      cursor: default;
      display: inline-block;
      margin-right: 16px;
      margin-bottom: 16px;
      position: relative;
      white-space: nowrap;
      transition: box-shadow 0.15s; }
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview:hover {
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15); }
        body.module-projects > main #revision_form_container #attachments-zone .dz-preview:hover .dz-filename {
          color: #444; }
        body.module-projects > main #revision_form_container #attachments-zone .dz-preview:hover .dz-success-mark {
          opacity: 1;
          pointer-events: all; }
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-image,
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-details .dz-size,
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-error-mark {
        display: none; }
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-success-mark {
        width: 32px;
        height: 32px;
        background: #fff url(../images/icons/close.png) center center no-repeat;
        border-radius: 50%;
        cursor: pointer;
        display: block;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 8px;
        transition: opacity 0.15s; }
        body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-success-mark > svg {
          display: none; }
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-details {
        width: 100%;
        height: 100%; }
        body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-details .dz-filename {
          width: 100%;
          height: 100%;
          background: url(../images/icons/attachment.png) 14px center no-repeat;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          padding-left: 42px;
          padding-right: 16px;
          transition: color 0.15s, padding-right 0.15s; }
      body.module-projects > main #revision_form_container #attachments-zone .dz-preview .dz-error-message {
        position: absolute;
        font-size: 10px;
        color: #000;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        transition: width .1s; }
  body.module-projects > main #revision_form_container .field.calendar {
    position: relative; }
    body.module-projects > main #revision_form_container .field.calendar:before {
      width: 100px;
      height: 55px;
      background: url(../images/icons/calendar.png) 16px center no-repeat;
      color: #666;
      content: 'Deadline';
      cursor: pointer;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end;
      font-size: 14px;
      pointer-events: none;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0; }
    body.module-projects > main #revision_form_container .field.calendar > img {
      display: none; }
    body.module-projects > main #revision_form_container .field.calendar input {
      padding-left: 110px; }
  body.module-projects > main #task_form_container > .content h2 {
    background-image: url(../images/icons/comment-big.png);
    background-position: left calc(50% + 3px); }
  body.module-projects > main #task_form_container .field {
    width: 100%; }
    body.module-projects > main #task_form_container .field textarea {
      width: 100%; }
  body.module-projects > main > h1.project {
    background-color: #eeefef;
    border-bottom: 2px solid #bed5d1;
    position: relative;
    padding-right: 40px; }
    body.module-projects > main > h1.project > .btn {
      font-family: 'Roboto', Arial, sans-serif;
      margin: 0 2px; }
      body.module-projects > main > h1.project > .btn#reopen-project, body.module-projects > main > h1.project > .btn#approve-project {
        margin-left: 20px !important;
        margin-right: 0 !important; }
      body.module-projects > main > h1.project > .btn:nth-child(3) {
        margin-left: 20px; }
        body.module-projects > main > h1.project > .btn:nth-child(3).new {
          margin-right: 12px; }
      body.module-projects > main > h1.project > .btn.creamy.comment {
        margin-right: 20px; }
    body.module-projects > main > h1.project > .spacer {
      color: #666;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end;
      font-family: 'Roboto', Arial, sans-serif;
      font-size: 12px; }
      body.module-projects > main > h1.project > .spacer > .mcc {
        margin-right: 40px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center; }
        body.module-projects > main > h1.project > .spacer > .mcc:last-child {
          margin-right: 0; }
        body.module-projects > main > h1.project > .spacer > .mcc > strong {
          line-height: 14px;
          margin-left: 2px; }
          body.module-projects > main > h1.project > .spacer > .mcc > strong .mcc-name {
            white-space: nowrap; }
      body.module-projects > main > h1.project > .spacer > .updated {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        line-height: 18px; }
        body.module-projects > main > h1.project > .spacer > .updated .name {
          white-space: nowrap; }
  body.module-projects > main > #revisions-list {
    transition: opacity 0.1s;
    padding-bottom: 280px !important; }
    body.module-projects > main > #revisions-list ul.list > li.revision {
      height: auto;
      border-bottom: none;
      padding: 0;
      padding-left: 15px;
      transition: opacity 0.3s; }
      body.module-projects > main > #revisions-list ul.list > li.revision.closed:before {
        background: #fdb19a; }
      body.module-projects > main > #revisions-list ul.list > li.revision.draft:before {
        background: #ccc; }
      body.module-projects > main > #revisions-list ul.list > li.revision.draft > ul > li {
        border-bottom: 2px solid #ccc; }
        body.module-projects > main > #revisions-list ul.list > li.revision.draft > ul > li > div.icon-eye {
          background-image: url(../images/icons/eye-closed.png) !important; }
      body.module-projects > main > #revisions-list ul.list > li.revision.visible .entries {
        display: block; }
      body.module-projects > main > #revisions-list ul.list > li.revision.visible > ul > li.head:after {
        transform: rotate(180deg); }
      body.module-projects > main > #revisions-list ul.list > li.revision:before {
        width: 15px;
        background: #bac6bf;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0; }
      body.module-projects > main > #revisions-list ul.list > li.revision:first-child:before {
        top: -2px; }
      body.module-projects > main > #revisions-list ul.list > li.revision > ul > li {
        width: 100%;
        height: 148px;
        border-bottom: 2px solid #bed5d1;
        position: relative; }
        body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.no-results, body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.no-search-results {
          font-size: 14px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center;
          position: relative; }
        body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          cursor: pointer;
          position: relative;
          transition: background-color 0.15s, box-shadow 0.15s; }
          body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head:hover {
            background-color: #f5f8f8;
            box-shadow: 0 0 18px rgba(0, 0, 0, 0.1); }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head:hover div.edit {
              opacity: .4; }
          body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div {
            height: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.icon-eye {
              width: 48px;
              background: url(../images/icons/eye.png) left center no-repeat;
              margin-left: 27px; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.name {
              width: 130px;
              font-size: 16px;
              font-weight: 600; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.status {
              min-width: 120px; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.status .btn.revision-closed {
                cursor: help; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.info {
              width: calc(100% - 153px);
              color: #666;
              font-size: 12px;
              padding-left: 35px;
              padding-right: 90px; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.info > .created {
                width: 380px;
                padding-right: 40px;
                line-height: 16px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.info > .created i {
                  font-style: italic; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.info > .deadline > .label {
                height: 30px;
                font-size: 12px;
                color: #666;
                background: url(../images/icons/clock.png) 11px center no-repeat;
                border-radius: 30px;
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                -moz-align-items: center;
                align-items: center;
                padding-left: 41px;
                padding-right: 12px;
                white-space: nowrap; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.info > .deadline > .label.expired {
                  background-color: #fdb19a;
                  background-image: url(../images/icons/warning.png);
                  color: #000; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.time-meter, body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.deadline-meter {
              height: 2px;
              position: absolute; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.deadline-meter {
              background-color: #db3f3f; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head > div.edit {
              height: 24px;
              top: 0; }
          body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.head:after {
            width: 16px;
            height: 16px;
            background: url(../images/icons/arrow-revision.png) center center no-repeat;
            content: '';
            pointer-events: none;
            position: absolute;
            right: 40px;
            transition: transform 0.15s; }
        body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries {
          height: auto;
          background: #e2e2e2;
          border-bottom: none;
          display: none; }
          body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li {
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            position: relative; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li.no-results {
              height: 120px;
              font-size: 14px;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              -webkit-box-pack: center;
              -ms-flex-pack: center;
              -webkit-justify-content: center;
              -moz-justify-content: center;
              justify-content: center; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li:not(:last-child):after {
              height: 2px;
              background-color: #eeefef;
              content: '';
              pointer-events: none;
              position: absolute;
              bottom: 0;
              left: -15px;
              right: 0; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content {
              width: 65%;
              font-size: 14px;
              line-height: 20px;
              padding: 35px;
              padding-left: 70px;
              position: relative; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content.no-tasks {
                width: 100%; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content:hover .edit {
                opacity: .4; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content ul {
                list-style: disc; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content ol {
                list-style: decimal; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content h2 {
                font-size: 16px;
                font-weight: 600;
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
                line-height: 20px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content h2 > .title {
                  -webkit-box-flex: 1;
                  -webkit-flex: 1;
                  -moz-box-flex: 1;
                  -moz-flex: 1;
                  -ms-flex: 1;
                  flex: 1;
                  padding-right: 40px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content h2 > .created {
                  color: #666;
                  font-weight: 100;
                  font-size: 12px; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content {
                margin-top: 40px;
                font-size: 14px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content p {
                  margin: 20px 0; }
                  body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content p .btn {
                    display: -webkit-inline-box;
                    display: -webkit-inline-flex;
                    display: -moz-inline-flex;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    margin: 8px 0; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content ul, body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content ol {
                  margin: 20px 0;
                  margin-left: 24px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .entry-content > *:last-child {
                  margin-bottom: 0; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content ul.attachments {
                margin-top: 25px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content ul.attachments > li {
                  max-width: 100%;
                  display: inline-block;
                  margin-top: 6px;
                  margin-right: 8px; }
                  body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content ul.attachments > li > a {
                    background: #fff url(../images/icons/attachment.png) 13px center no-repeat;
                    display: block;
                    line-height: 26px;
                    overflow: hidden;
                    padding-left: 44px;
                    text-overflow: ellipsis;
                    white-space: nowrap; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content .edit {
                cursor: pointer;
                right: 6px; }
            body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks {
              width: 35%;
              background-color: #e9e9e9; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li {
                padding: 30px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li:first-child {
                  padding-top: 25px; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li:not(:last-child) {
                  padding-bottom: 0; }
                body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li.no-results {
                  color: #949494;
                  font-size: 14px;
                  display: -webkit-box;
                  display: -webkit-flex;
                  display: -moz-flex;
                  display: -ms-flexbox;
                  display: flex;
                  padding-top: 38px; }
              body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks .btn {
                display: -webkit-inline-box;
                display: -webkit-inline-flex;
                display: -moz-inline-flex;
                display: -ms-inline-flexbox;
                display: inline-flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                -moz-align-items: center;
                align-items: center;
                margin-left: 30px;
                margin-bottom: 25px; }

#ui-datepicker-div {
  font-size: 14px; }
  #ui-datepicker-div .ui_tpicker_time_label,
  #ui-datepicker-div .ui_tpicker_hour_label,
  #ui-datepicker-div .ui_tpicker_minute_label,
  #ui-datepicker-div .ui-datepicker-buttonpane {
    font-size: 13px; }

body.module-users.action-login {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-top: 0 !important; }
  body.module-users.action-login header {
    display: none !important; }
  body.module-users.action-login main {
    width: 100%;
    height: 100%;
    background: none;
    padding: 0; }
    body.module-users.action-login main #login-bg {
      width: 100%;
      height: 100%;
      background: center center no-repeat;
      background-size: cover;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center; }
      body.module-users.action-login main #login-bg.no-image {
        background: #d1ccb8 url("../images/background.jpg") top left !important; }
      body.module-users.action-login main #login-bg .login-form {
        width: 100%;
        max-width: 540px;
        background-color: #fff;
        border-radius: 20px;
        border-bottom-left-radius: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        margin: 40px;
        padding: 40px;
        padding-bottom: 20px; }
        body.module-users.action-login main #login-bg .login-form img {
          max-width: 55%;
          margin-bottom: 25px; }
        body.module-users.action-login main #login-bg .login-form .error_list {
          color: #da7556;
          font-size: 12px;
          line-height: 16px;
          margin: 6px 0; }
        body.module-users.action-login main #login-bg .login-form .field {
          margin: 16px 0; }
          body.module-users.action-login main #login-bg .login-form .field input {
            width: 100%;
            height: 55px;
            background-color: #eeefef;
            border: none;
            border-radius: 3px;
            box-sizing: border-box;
            font-size: 14px;
            outline: none;
            padding: 0 16px; }
        body.module-users.action-login main #login-bg .login-form .btn {
          cursor: pointer;
          float: right; }
      body.module-users.action-login main #login-bg .contribution {
        font-size: 11px;
        padding: 16px;
        opacity: .8;
        position: absolute;
        bottom: 0;
        right: 0;
        white-space: nowrap; }
        body.module-users.action-login main #login-bg .contribution a {
          color: inherit; }

body.module-tasks.sticky-header > main h1 {
  padding: 0 20px 0 25px;
  transform: translateX(-15px); }
body.module-tasks > main {
  padding-top: 0;
  box-sizing: border-box; }
  body.module-tasks > main h1 {
    background: #eeefef; }
    body.module-tasks > main h1 .spacer {
      width: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      -webkit-justify-content: space-between;
      -moz-justify-content: space-between;
      justify-content: space-between; }
      body.module-tasks > main h1 .spacer ul.filter {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        font-size: 12px; }
        body.module-tasks > main h1 .spacer ul.filter li {
          display: inline-block;
          margin: 0 10px; }
          body.module-tasks > main h1 .spacer ul.filter li a {
            text-decoration: none; }
            body.module-tasks > main h1 .spacer ul.filter li a.active {
              font-weight: 600; }
  body.module-tasks > main #tasks-list {
    position: relative;
    top: -30px; }
    body.module-tasks > main #tasks-list .hidden-others {
      display: none !important; }
    body.module-tasks > main #tasks-list ul.tasks-grid {
      column-count: 3;
      column-gap: 30px;
      column-fill: auto;
      font-weight: 200; }
      body.module-tasks > main #tasks-list ul.tasks-grid li.no-search-results {
        position: absolute; }
      body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) {
        height: auto;
        border-bottom: none;
        display: inline-block;
        margin-top: 30px;
        padding: 0; }
        body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results).hidden {
          display: none; }
        body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) a {
          background: none;
          box-shadow: none !important;
          padding: 0; }
          body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) a .ticket-content {
            width: 100%;
            -webkit-box-direction: normal;
            -webkit-box-orient: vertical;
            -webkit-flex-direction: column;
            -moz-flex-direction: column;
            -ms-flex-direction: column;
            flex-direction: column;
            -webkit-box-align: start;
            -ms-flex-align: start;
            -webkit-align-items: flex-start;
            -moz-align-items: flex-start;
            align-items: flex-start; }
            body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) a .ticket-content:not(.completed) h3 {
              color: #fdb19a; }
            body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) a .ticket-content h3 {
              font-weight: 600;
              line-height: 18px;
              padding-left: 52px;
              padding-right: 24px; }
            body.module-tasks > main #tasks-list ul.tasks-grid li:not(.no-search-results) a .ticket-content .bottom {
              width: 100%;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-pack: justify;
              -ms-flex-pack: justify;
              -webkit-justify-content: space-between;
              -moz-justify-content: space-between;
              justify-content: space-between; }

html {
  height: 100%;
  background: #d1ccb8 url("../images/background.jpg") top left;
  background-attachment: fixed;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif; }
  html body {
    width: 100%;
    height: 100%;
    max-width: 1440px;
    background-color: #eeefef;
    margin: 0 auto;
    padding-top: 140px; }
    html body.module-project ul#main-menu > li.search {
      display: none !important; }
    html body.module-file main {
      padding: 0; }
      html body.module-file main h1.go-back {
        padding-left: 40px; }
    html body.hamburger {
      overflow: hidden; }
      html body.hamburger #hamburger .bar {
        left: 0 !important; }
        html body.hamburger #hamburger .bar:first-child {
          transform: rotate(45deg);
          top: 8px; }
        html body.hamburger #hamburger .bar:nth-child(2) {
          opacity: 0; }
        html body.hamburger #hamburger .bar:last-child {
          top: -8px;
          transform: rotate(-45deg); }
      html body.hamburger #hamburger-menu {
        opacity: 1;
        pointer-events: all;
        left: calc(100% - 460px); }
        html body.hamburger #hamburger-menu li a.disabled {
          pointer-events: none; }
          html body.hamburger #hamburger-menu li a.disabled strong {
            color: #aaa; }
    html body.sticky-header #header {
      height: 70px; }
      html body.sticky-header #header > .header-main {
        height: 70px;
        padding: 0 20px; }
        html body.sticky-header #header > .header-main ul#main-menu > li > a:before, html body.sticky-header #header > .header-main ul#main-menu > li > a:after {
          height: 3px; }
    html body.sticky-header #hamburger-menu {
      padding-top: 70px; }
    html body.sticky-header main > h1 {
      height: 70px;
      position: fixed !important;
      top: 70px;
      box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.05); }
      html body.sticky-header main > h1 .go-back {
        opacity: 0; }
    html body .loading {
      opacity: 0.4;
      pointer-events: none; }
    html body .tox.tox-tinymce {
      min-height: 240px;
      border: 1px solid #fff;
      border-radius: 5px;
      margin-bottom: 36px; }
    html body a {
      color: #000;
      transition: color 0.15s; }
      html body a:hover {
        color: #39a263; }
    html body strong {
      font-weight: 600; }
    html body #header {
      height: 140px;
      background-color: #fff;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      font-family: 'Montserrat', Arial, sans-serif;
      position: fixed;
      top: 0;
      left: calc(50% - 720px);
      right: 0;
      transition: height 0.2s, padding 0.2s;
      z-index: 22; }
      html body #header > .header-main {
        width: 100%;
        max-width: 1440px;
        height: 140px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        padding: 0 40px;
        transition: height 0.2s, padding 0.2s; }
        html body #header > .header-main .logo {
          position: relative;
          top: -2px; }
          html body #header > .header-main .logo > img {
            max-width: 240px; }
        html body #header > .header-main ul#main-menu {
          height: 100%;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -moz-box-flex: 1;
          -moz-flex: 1;
          -ms-flex: 1;
          flex: 1;
          margin: 0 55px; }
          html body #header > .header-main ul#main-menu > li {
            height: 100%;
            font-weight: 600;
            list-style: none;
            margin: 0 35px; }
            html body #header > .header-main ul#main-menu > li.active > a:after,
            html body #header > .header-main ul#main-menu > li > a:before {
              height: 4px;
              content: '';
              display: block;
              position: absolute;
              left: 0;
              bottom: 0;
              right: 100%;
              transition: height 0.2s, right 0.15s; }
            html body #header > .header-main ul#main-menu > li.active > a:after {
              background-color: #6e6e6d;
              right: 0; }
            html body #header > .header-main ul#main-menu > li:hover > a:before {
              right: 0; }
            html body #header > .header-main ul#main-menu > li.search {
              width: 100%;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              margin-left: 30px; }
              html body #header > .header-main ul#main-menu > li.search > input#search {
                width: 100%;
                height: 36px;
                max-width: 300px;
                background: url(../images/icons/magnifying.png) 9px center no-repeat;
                border: none;
                border-radius: 5px;
                box-shadow: 0 0 16px transparent;
                color: #8e8e8e;
                font-size: 14px;
                outline: none;
                padding: 0 8px 0 36px;
                transition: box-shadow 0.15s; }
                html body #header > .header-main ul#main-menu > li.search > input#search::placeholder {
                  color: transparent;
                  transition: color 0.15s; }
                html body #header > .header-main ul#main-menu > li.search > input#search:focus {
                  box-shadow: 0 0 18px rgba(0, 0, 0, 0.08); }
                  html body #header > .header-main ul#main-menu > li.search > input#search:focus::placeholder {
                    color: #d6d6d6 !important; }
            html body #header > .header-main ul#main-menu > li > a {
              height: 100%;
              color: #000;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              position: relative;
              text-decoration: none; }
              html body #header > .header-main ul#main-menu > li > a:before {
                background-color: #cfe7e3; }
        html body #header > .header-main #user-area {
          width: 44px;
          height: 44px;
          background-color: #fff;
          border: 2px solid #fff;
          cursor: pointer;
          position: relative;
          z-index: 10; }
          html body #header > .header-main #user-area.active .notifications-list {
            opacity: 1;
            pointer-events: all;
            top: -25px; }
          html body #header > .header-main #user-area .notifications {
            pointer-events: none;
            position: absolute;
            top: -4px;
            right: -14px; }
          html body #header > .header-main #user-area .initials {
            width: calc(100% + 4px);
            height: calc(100% + 4px);
            background-color: #fff;
            border: 2px solid #3e3e3e;
            border-radius: 50%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            justify-content: center;
            color: #3e3e3e;
            font-weight: 600;
            letter-spacing: 1px;
            overflow: hidden;
            pointer-events: none;
            position: absolute;
            top: -2px;
            left: -2px;
            right: 0;
            bottom: 0;
            user-select: none; }
          html body #header > .header-main #user-area ul.notifications-list {
            max-height: 70vh;
            width: 460px;
            background-color: #fff;
            border: 1px solid #ececec;
            border-radius: 5px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            font-size: 14px;
            opacity: 0;
            overflow: auto;
            padding: 10px;
            pointer-events: none;
            position: absolute;
            top: -30px;
            right: -35px;
            transition: opacity .2s, top .2s;
            z-index: -1; }
            html body #header > .header-main #user-area ul.notifications-list li:first-child {
              height: 70px;
              padding-right: 86px;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              padding-left: 20px; }
              html body #header > .header-main #user-area ul.notifications-list li:first-child.new-tasks {
                color: #fdb19a;
                font-weight: 800; }
            html body #header > .header-main #user-area ul.notifications-list li:not(:first-child) {
              background-color: #fff;
              border-radius: 20px;
              border-bottom-left-radius: 0;
              box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
              margin-bottom: 12px;
              transition: box-shadow .2s; }
              html body #header > .header-main #user-area ul.notifications-list li:not(:first-child):hover {
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
              html body #header > .header-main #user-area ul.notifications-list li:not(:first-child):last-child {
                margin-bottom: 5px; }
              html body #header > .header-main #user-area ul.notifications-list li:not(:first-child) a {
                color: inherit;
                text-decoration: none; }
                html body #header > .header-main #user-area ul.notifications-list li:not(:first-child) a .ticket-content {
                  box-shadow: none; }
                  html body #header > .header-main #user-area ul.notifications-list li:not(:first-child) a .ticket-content h3 {
                    font-weight: 600;
                    line-height: 18px;
                    padding-left: 52px;
                    padding-right: 24px; }
                  html body #header > .header-main #user-area ul.notifications-list li:not(:first-child) a .ticket-content .entry-content {
                    font-size: 12px; }
      html body #header > #hamburger {
        width: 48px;
        height: 48px;
        cursor: pointer;
        position: absolute;
        left: calc(1440px + (100% - 1440px - 48px) / 2);
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-direction: normal;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        transform: translateY(2px);
        transition: left 0.2s, right 0.2s; }
        html body #header > #hamburger > .bar {
          width: 29px;
          height: 4px;
          background-color: #dc927b;
          margin: 2px 0;
          position: relative;
          left: 4px;
          transition: opacity 0.2s, left 0.2s, top 0.2s, transform 0.2s; }
          html body #header > #hamburger > .bar:first-child {
            background-color: #dac0aa;
            left: 0; }
          html body #header > #hamburger > .bar:last-child {
            background-color: #b3cfca;
            left: -6px; }
    html body > main {
      background-color: #eeefef;
      padding: 15px; }
      html body > main.new-form .form-container, html body > main.edit-form .form-container {
        max-height: 200vh;
        padding: 30px 40px;
        padding-top: 0;
        transition: max-height 0.6s cubic-bezier(0.36, 0.05, 0.2, 0.3), padding 0.6s; }
      html body > main.new-form > h1 .btn.new, html body > main.new-form > h1 .btn.remark-to-many, html body > main.edit-form > h1 .btn.new, html body > main.edit-form > h1 .btn.remark-to-many {
        background: #3e3e3e no-repeat;
        border: 2px solid #3e3e3e;
        color: #fff;
        cursor: default;
        opacity: .2 !important;
        pointer-events: none; }
      html body > main.edit-form-content .form-container > .content h2 {
        background-image: url(../images/icons/edit-black.svg);
        background-size: 28px; }
      html body > main.edit-form-content .form-container > .content .new {
        display: none; }
      html body > main.edit-form-content .form-container > .content .edit {
        display: block; }
      html body > main h1 {
        width: 100%;
        max-width: 1440px;
        height: 140px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        font-size: 26px;
        font-family: 'Montserrat', Arial, sans-serif;
        padding-left: 30px;
        transition: height 0.2s, box-shadow 0.2s, top 0.2s;
        z-index: 20; }
        html body > main h1.go-back {
          position: relative;
          transition: opacity 0.2s; }
          html body > main h1.go-back > .go-back {
            height: 16px;
            background: url(../images/icons/arrow-left.png) 2px center no-repeat;
            color: #000;
            display: inline-block;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center;
            font-family: 'Roboto', Arial, sans-serif;
            font-size: 12px;
            padding-left: 30px;
            position: absolute;
            left: 38px;
            top: 18px;
            text-decoration: none;
            transition: background-position 0.15s; }
            html body > main h1.go-back > .go-back:hover {
              background-position: 0 center; }
              html body > main h1.go-back > .go-back:hover > span:after {
                right: 0; }
            html body > main h1.go-back > .go-back > span {
              position: relative; }
              html body > main h1.go-back > .go-back > span:after {
                height: 1px;
                background: #000;
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                right: 100%;
                transition: right 0.15s; }
        html body > main h1 .only-mine {
          height: 100%;
          background: url(../images/icons/checkbox-empty.png) left center no-repeat;
          background-size: 12px;
          color: #000;
          font-size: 12px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          padding-left: 22px;
          position: absolute;
          right: 24px;
          text-decoration: none;
          transition: background 0.15s; }
          html body > main h1 .only-mine.checked {
            background-image: url(../images/icons/checkbox-checked.png); }
        html body > main h1 strong {
          font-weight: 800; }
        html body > main h1 .btn {
          margin: 0;
          margin-left: 20px;
          position: relative;
          left: 10px; }
      html body > main .form-container {
        max-height: 0;
        background-image: linear-gradient(90deg, #fdb19a 0%, #b8ccc7 100%);
        overflow: hidden;
        padding: 0 40px;
        position: relative;
        transition: max-height 0.6s, padding 0.6s; }
        html body > main .form-container:before {
          background-image: linear-gradient(90deg, #fdb19a 0%, #b8ccc7 100%);
          content: '';
          opacity: 0;
          pointer-events: none;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          transition: opacity 0.3s;
          z-index: 3; }
        html body > main .form-container.sending {
          pointer-events: none; }
          html body > main .form-container.sending:before {
            opacity: .8;
            pointer-events: all; }
          html body > main .form-container.sending .spinner {
            position: absolute;
            top: calc(50% - 120px);
            left: calc(50% - 20px);
            z-index: 5; }
        html body > main .form-container > .content h2 {
          height: 120px;
          background-position: left calc(50% + 2px);
          background-repeat: no-repeat;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          font-size: 26px;
          font-family: 'Montserrat', Arial, sans-serif;
          font-weight: 600;
          padding-top: 5px;
          padding-left: 45px; }
        html body > main .form-container > .content .content-form > .error {
          margin-bottom: 32px; }
        html body > main .form-container > .content .edit {
          display: none; }
        html body > main .form-container > .content form {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex; }
          html body > main .form-container > .content form .col .field {
            height: auto;
            padding-right: 40px;
            transition: opacity 0.6s; }
            html body > main .form-container > .content form .col .field.empty {
              height: 85px; }
            html body > main .form-container > .content form .col .field#mccs-field {
              height: auto;
              min-height: 85px;
              margin-bottom: 0;
              opacity: 0;
              pointer-events: none; }
              html body > main .form-container > .content form .col .field#mccs-field.visible {
                pointer-events: all;
                opacity: 1; }
            html body > main .form-container > .content form .col .field.tip {
              font-size: 14px;
              padding-right: 80px; }
              html body > main .form-container > .content form .col .field.tip p {
                line-height: 23px;
                margin: 25px 0; }
            html body > main .form-container > .content form .col .field:last-child {
              margin-bottom: 15px; }
            html body > main .form-container > .content form .col .field input[type="text"],
            html body > main .form-container > .content form .col .field select,
            html body > main .form-container > .content form .col .field textarea {
              width: 100%;
              height: 55px;
              border: none;
              border-radius: 5px;
              box-sizing: border-box;
              font-family: 'Roboto', Arial, sans-serif;
              font-size: 14px;
              margin-bottom: 30px;
              outline: none;
              padding: 0 15px 0 20px;
              resize: vertical; }
            html body > main .form-container > .content form .col .field textarea {
              min-height: 140px;
              padding: 20px; }
          html body > main .form-container > .content form .col-2-3 {
            flex-wrap: wrap; }
        html body > main .form-container > .content .actions {
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center; }
          html body > main .form-container > .content .actions .btn {
            cursor: pointer;
            margin-right: 15px; }
      html body > main .btn {
        height: 30px;
        background: #3e3e3e no-repeat;
        border: 2px solid #3e3e3e;
        border-radius: 30px;
        color: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        font-size: 12px;
        font-weight: 500;
        padding: 0 20px;
        text-decoration: none;
        transition: background-color 0.15s, border-color 0.15s, color 0.15s, opacity 0.6s;
        white-space: nowrap; }
        html body > main .btn.white {
          background-color: #fff;
          border-color: #fff;
          color: #000; }
        html body > main .btn.green {
          background-color: #73e8a2;
          border-color: #73e8a2;
          color: #000; }
        html body > main .btn.creamy {
          background-color: #fdb19a;
          border-color: #fdb19a;
          color: #000; }
        html body > main .btn.gray {
          background-color: #a7a7a7;
          border-color: #a7a7a7;
          color: #fff; }
        html body > main .btn.eye, html body > main .btn.comment {
          background-image: url(../images/icons/eye.png);
          background-position: 13px center;
          padding-left: 40px;
          padding-right: 10px; }
        html body > main .btn.comment {
          background-image: url(../images/icons/comment.png); }
        html body > main .btn:not(.no-hover):hover {
          background-color: #fff;
          border-color: #3e3e3e;
          color: #3e3e3e;
          font-weight: 600; }
        html body > main .btn.disabled {
          background: #3e3e3e;
          border: 2px solid #3e3e3e;
          color: #fff;
          cursor: default;
          opacity: .2 !important; }
      html body > main #collections-list {
        padding-bottom: 280px !important; }
      html body > main ul.list > li {
        width: 100%;
        height: 148px;
        border-bottom: 2px solid #bed5d1;
        padding: 6px 0;
        position: relative;
        transition: opacity 0.1s; }
        html body > main ul.list > li.no-results, html body > main ul.list > li.no-search-results {
          font-size: 14px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          -webkit-justify-content: center;
          -moz-justify-content: center;
          justify-content: center; }
        html body > main ul.list > li.hidden {
          display: none; }
        html body > main ul.list > li > a {
          width: 100%;
          height: 100%;
          border-radius: 5px;
          color: #000;
          display: block;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          padding: 0 25px;
          text-decoration: none;
          transition: background-color 0.15s, box-shadow 0.15s; }
          html body > main ul.list > li > a:hover {
            background-color: #f5f8f8;
            box-shadow: 0 0 18px rgba(0, 0, 0, 0.1); }
            html body > main ul.list > li > a:hover div.edit {
              opacity: .4; }
          html body > main ul.list > li > a > div {
            height: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center; }
            html body > main ul.list > li > a > div.icon {
              width: 48px;
              height: 48px;
              background: left center no-repeat; }
              html body > main ul.list > li > a > div.icon.icon-folder {
                background-image: url(../images/icons/folder.png);
                background-position-y: calc(50% - 2px); }
              html body > main ul.list > li > a > div.icon.icon-bag {
                background-image: url(../images/icons/bag.png);
                background-position-y: calc(50% - 3px); }
            html body > main ul.list > li > a > div.name {
              width: calc(50% - 48px);
              font-weight: 600;
              padding-right: 20px; }
            html body > main ul.list > li > a > div.deadline {
              padding-right: 20px; }
              html body > main ul.list > li > a > div.deadline .label {
                height: 30px;
                font-size: 12px;
                color: #666;
                background: url(../images/icons/clock.png) 11px center no-repeat;
                border-radius: 30px;
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                -moz-align-items: center;
                align-items: center;
                padding-left: 41px;
                padding-right: 12px;
                white-space: nowrap; }
                html body > main ul.list > li > a > div.deadline .label.expired {
                  background-color: #fdb19a;
                  background-image: url(../images/icons/warning.png);
                  color: #000; }
            html body > main ul.list > li > a > div.featuring {
              width: 5%;
              background: center center no-repeat;
              opacity: .18;
              transition: background-image 0.15s, opacity 0.15s, transform 0.15s; }
              html body > main ul.list > li > a > div.featuring.featured {
                background-image: url(../images/icons/featured.png); }
              html body > main ul.list > li > a > div.featuring.not-featured {
                background-image: url(../images/icons/not-featured.png); }
              html body > main ul.list > li > a > div.featuring.loading {
                opacity: .1 !important;
                pointer-events: none;
                transform: scale(0.8); }
              html body > main ul.list > li > a > div.featuring:hover {
                opacity: .6; }
            html body > main ul.list > li > a > div.number {
              -webkit-box-pack: end;
              -ms-flex-pack: end;
              -webkit-justify-content: flex-end;
              -moz-justify-content: flex-end;
              justify-content: flex-end; }
              html body > main ul.list > li > a > div.number > .value {
                width: 32px;
                height: 32px;
                background-color: #000;
                border-radius: 32px;
                color: #fff;
                font-size: 14px;
                display: -webkit-box;
                display: -webkit-flex;
                display: -moz-flex;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                -webkit-align-items: center;
                -moz-align-items: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                -webkit-justify-content: center;
                -moz-justify-content: center;
                justify-content: center;
                overflow: hidden;
                white-space: nowrap; }
        html body > main ul.list > li div.edit {
          width: 24px;
          height: 24px;
          background: url(../images/icons/edit.png) center center no-repeat;
          background-size: 14px;
          opacity: 0;
          position: absolute;
          top: 6px;
          right: 0;
          transition: opacity 0.15s; }
          html body > main ul.list > li div.edit:hover {
            opacity: .9 !important; }
        html body > main ul.list > li .time-meter,
        html body > main ul.list > li .deadline-meter {
          width: 100%;
          height: 2px;
          position: absolute;
          bottom: -2px; }
        html body > main ul.list > li .time-meter {
          background-color: #39a263; }
        html body > main ul.list > li .deadline-meter {
          background: #db3f3f; }
    html body #hamburger-menu {
      width: 460px;
      background: #fff;
      box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
      font-family: 'Montserrat', Arial, sans-serif;
      opacity: 0;
      overflow: auto;
      padding-top: 140px;
      pointer-events: none;
      position: fixed;
      left: 100%;
      top: 0;
      bottom: 0;
      z-index: 20;
      transition: padding-top 0.2s, left 0.2s, opacity 0.2s; }
      html body #hamburger-menu > ul {
        width: 45%;
        padding: 26px 0; }
        html body #hamburger-menu > ul:first-child {
          margin-top: 50px; }
        html body #hamburger-menu > ul > li {
          padding: 18px 0;
          text-align: right; }
          html body #hamburger-menu > ul > li > a {
            color: #666;
            font-weight: 600;
            position: relative;
            text-decoration: none; }
            html body #hamburger-menu > ul > li > a:after {
              height: 2px;
              background: #b3cfca;
              content: '';
              position: absolute;
              bottom: -1px;
              left: 0;
              right: 100%;
              transition: right 0.15s;
              z-index: -1; }
            html body #hamburger-menu > ul > li > a:hover:after {
              right: 0; }
            html body #hamburger-menu > ul > li > a > strong {
              color: #000; }
            html body #hamburger-menu > ul > li > a .notifications {
              position: absolute;
              right: -36px;
              top: -2px; }
    html body #floating-plus {
      max-width: 58px;
      height: 58px;
      background: #fff;
      border-radius: 58px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      -webkit-justify-content: flex-end;
      -moz-justify-content: flex-end;
      justify-content: flex-end;
      overflow: hidden;
      position: fixed;
      bottom: 32px;
      right: 32px;
      transition: max-width 0.5s;
      z-index: 100; }
      html body #floating-plus.active {
        max-width: 30vw; }
      html body #floating-plus > ul.plus-resources {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        padding: 0 10px; }
        html body #floating-plus > ul.plus-resources > li {
          padding: 0 6px; }
      html body #floating-plus > .plus {
        min-width: 58px;
        min-height: 58px;
        cursor: pointer;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
        font-size: 40px;
        position: relative; }
        html body #floating-plus > .plus:hover:before, html body #floating-plus > .plus:hover:after {
          transform: rotate(90deg); }
        html body #floating-plus > .plus:before, html body #floating-plus > .plus:after {
          background-color: #8e8e8e;
          content: '';
          position: absolute;
          transition: transform 0.15s; }
        html body #floating-plus > .plus:before {
          width: 2px;
          height: 24px; }
        html body #floating-plus > .plus:after {
          height: 2px;
          width: 24px; }
    html body .col {
      width: calc(100% / 3); }
      html body .col .field {
        position: relative; }
        html body .col .field .select2-container {
          margin-bottom: 30px; }
        html body .col .field .error {
          font-size: 12px;
          position: absolute;
          bottom: 12px;
          left: 0; }
        html body .col .field input[type="text"]::placeholder {
          color: #8e8e8e; }
        html body .col .field select {
          -webkit-appearance: none;
          appareance: none; }
          html body .col .field select::-ms-expand {
            display: none; }
        html body .col .field .select2-container.select2-container--open .select2-selection:after {
          opacity: .4;
          transform: rotate(-180deg); }
        html body .col .field .select2-container .select2-selection {
          min-height: 55px;
          max-height: 320px;
          border: none;
          font-size: 14px;
          overflow: auto;
          position: relative;
          z-index: 2; }
          html body .col .field .select2-container .select2-selection:after {
            width: 55px;
            height: 55px;
            background: url(../images/icons/arrow-select.png) center center no-repeat;
            content: '';
            cursor: pointer;
            position: absolute;
            top: 0;
            right: 0;
            transition: opacity 0.15s, transform 0.15s; }
          html body .col .field .select2-container .select2-selection.select2-selection--multiple:after {
            display: none; }
          html body .col .field .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered {
            display: block;
            line-height: 55px;
            padding-right: 20px; }
            html body .col .field .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) {
              height: 30px;
              background-color: #eeefef;
              border: none;
              border-radius: 30px;
              display: -webkit-box;
              display: -webkit-flex;
              display: -moz-flex;
              display: -ms-flexbox;
              display: flex;
              -webkit-box-align: center;
              -ms-flex-align: center;
              -webkit-align-items: center;
              -moz-align-items: center;
              align-items: center;
              margin: 12px 10px 0 0;
              padding-left: 10px;
              padding-right: 15px;
              position: relative;
              left: -5px; }
              html body .col .field .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search):nth-last-child(2) {
                margin-bottom: 12px; }
              html body .col .field .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) .select2-selection__choice__remove {
                margin-right: 5px; }
          html body .col .field .select2-container .select2-selection .select2-selection__arrow {
            display: none; }
          html body .col .field .select2-container .select2-selection .select2-selection__rendered {
            height: 100%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center;
            padding-left: 20px;
            padding-right: 55px; }
            html body .col .field .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
              color: #8e8e8e; }
    html body .col-1-2 {
      width: 50%; }
      html body .col-1-2 .field {
        margin-bottom: 5px !important; }
    html body .col-2-3 {
      width: calc(2 * 100% / 3);
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex; }
    html body .col-1-1 {
      width: 100%; }
    html body .notifications {
      width: 22px;
      height: 22px;
      background-color: #fdb19a;
      border-radius: 50%;
      color: #fff;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 600;
      user-select: none; }
    html body .pm-initials {
      width: 24px;
      height: 24px;
      border: 1px solid #666;
      border-radius: 50%;
      cursor: help;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 600;
      margin: 0 2px;
      padding-top: 1px; }
      html body .pm-initials:first-child {
        margin-left: 6px; }
    html body .mcc-name {
      cursor: help; }
    html body .tippy-tooltip {
      border-radius: 15px;
      font-size: 12px;
      padding: 0 6px;
      text-align: center; }
    html body .select2-dropdown {
      border: none;
      border-bottom-left: 5px;
      border-bottom-right: 5px;
      box-shadow: 0 12px 15px -15px rgba(0, 0, 0, 0.4);
      overflow: hidden;
      z-index: 2; }
      html body .select2-dropdown .select2-search {
        padding: 0 12px; }
        html body .select2-dropdown .select2-search input {
          height: 32px;
          border-radius: 5px;
          margin-bottom: 8px;
          outline: none;
          padding: 0 6px; }
      html body .select2-dropdown ul.select2-results__options {
        background: #fff;
        color: #666;
        font-size: 14px;
        padding: 8px 22px; }
        html body .select2-dropdown ul.select2-results__options > li {
          border-bottom: 1px solid #e2e2e2;
          cursor: pointer;
          padding: 12px 0;
          transition: color 0.15s, padding-left 0.15s;
          user-select: none; }
          html body .select2-dropdown ul.select2-results__options > li[aria-selected="true"] {
            background: #fff url(../images/icons/tick.png) left center no-repeat;
            color: #000;
            font-weight: 600;
            padding-left: 30px !important; }
          html body .select2-dropdown ul.select2-results__options > li.select2-results__option--highlighted {
            background-color: #fff;
            color: #666; }
          html body .select2-dropdown ul.select2-results__options > li.select2-results__message, html body .select2-dropdown ul.select2-results__options > li.loading-results {
            cursor: default; }
          html body .select2-dropdown ul.select2-results__options > li:not(.select2-results__message):not(.loading-results):hover {
            font-weight: 600;
            padding-left: 2px; }
          html body .select2-dropdown ul.select2-results__options > li:last-child {
            border-bottom: none; }
    html body .ticket-content {
      background: #fff;
      border-radius: 28px;
      border-bottom-left-radius: 0;
      transition: box-shadow 0.15s, opacity 0.3s; }
      html body .ticket-content.completed > h3 .assignee {
        color: #73e8a2; }
      html body .ticket-content.completed > h3 .status {
        background: #73e8a2 url(../images/icons/tick-white.png) center center no-repeat; }
      html body .ticket-content:not(.completed).editable > h3 .status:hover {
        background-color: #fdb19a; }
      html body .ticket-content:hover {
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.1); }
        html body .ticket-content:hover > .bottom > .edit {
          pointer-events: all;
          opacity: 1; }
      html body .ticket-content > h3 {
        background: url(../images/icons/comment.png) 22px center no-repeat;
        font-size: 14px;
        padding: 25px 60px 22px 46px;
        position: relative; }
        html body .ticket-content > h3 .assignee {
          color: #da7556;
          transition: color 0.15s; }
        html body .ticket-content > h3 .status {
          width: 28px;
          height: 28px;
          background: #e9e9e9 url(../images/icons/warning-white.png) center center no-repeat;
          border-radius: 50%;
          position: absolute;
          top: 16px;
          right: 16px;
          transition: background 0.15s; }
          html body .ticket-content > h3 .status.editable {
            cursor: pointer; }
      html body .ticket-content > .entry-content {
        width: 100%;
        border-bottom: 2px solid #e2e2e2;
        font-size: 14px;
        line-height: 20px;
        padding: 25px;
        padding-top: 0; }
      html body .ticket-content > .bottom {
        height: 33px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        font-size: 12px;
        padding: 0 25px; }
        html body .ticket-content > .bottom > .created {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
          -moz-box-flex: 1;
          -moz-flex: 1;
          -ms-flex: 1;
          flex: 1; }
        html body .ticket-content > .bottom > .edit {
          height: 100%;
          background: url(../images/icons/edit.png) left center no-repeat;
          background-size: 14px;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          opacity: 0;
          padding-left: 20px;
          pointer-events: none;
          position: relative;
          text-decoration: none;
          transition: opacity 0.15s; }
          html body .ticket-content > .bottom > .edit:hover span:after {
            right: 0; }
          html body .ticket-content > .bottom > .edit span {
            position: relative; }
            html body .ticket-content > .bottom > .edit span:after {
              height: 1px;
              background-color: #39a263;
              content: '';
              position: absolute;
              bottom: 0;
              left: 0;
              right: 100%;
              transition: right 0.15s; }

@media only screen and (max-width: 1600px) {
  html body {
    padding-top: 120px; }
    html body.sticky-header > #header {
      height: 70px; }
      html body.sticky-header > #header > .header-main {
        padding-right: 90px; }
      html body.sticky-header > #header > #hamburger {
        left: 1380px; }
    html body.hamburger #hamburger-menu {
      padding-top: 120px;
      left: calc(100% - 420px); }
    html body.module-dashboard > main > div h1 {
      height: 120px;
      margin: 0 10px; }
    html body.module-dashboard > main > div > .list {
      padding: 0 10px; }
    html body.module-projects > main h1 {
      height: 120px;
      padding-left: 38px;
      padding-top: 0; }
      html body.module-projects > main h1 > .sorting > ul.options {
        font-size: 13px;
        padding: 6px 18px; }
    html body.module-projects > main > h1.project > .go-back {
      left: 32px;
      top: 14px; }
    html body.module-projects > main #collections-list {
      padding: 0 10px; }
    html body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .content {
      padding: 25px;
      padding-left: 68px; }
    html body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li {
      padding: 25px; }
      html body.module-projects > main > #revisions-list ul.list > li.revision > ul > li.entries ul.entries-list > li .tasks ul.tasks-list > li:first-child {
        padding-top: 25px; }
    html body.module-projects > main #revision_form_container #attachments-zone .title {
      margin-bottom: 30px; }
    html body #hamburger-menu {
      width: 420px;
      padding-top: 120px; }
      html body #hamburger-menu > ul {
        width: 70%;
        padding: 14px 0; }
        html body #hamburger-menu > ul:first-child {
          margin-top: 22px; }
    html body #header {
      height: 120px; }
      html body #header > .header-main {
        height: 120px;
        padding-right: 110px; }
      html body #header > #hamburger {
        left: 1364px; }
    html body #floating-plus {
      max-width: 52px;
      height: 52px;
      bottom: 20px;
      right: 20px; }
      html body #floating-plus > .plus {
        min-width: 52px;
        min-height: 52px; }
      html body #floating-plus > ul.plus-resources {
        padding-right: 0; }
        html body #floating-plus > ul.plus-resources > li {
          padding: 0 4px; }
    html body > main {
      padding: 10px;
      padding-top: 0 !important; }
      html body > main h1 {
        height: 120px; }
      html body > main ul.list > li {
        height: auto; }
        html body > main ul.list > li.no-results, html body > main ul.list > li.no-search-results {
          height: 140px; }
        html body > main ul.list > li > a {
          min-height: 120px;
          padding: 15px; }
      html body > main .form-container > .content h2 {
        padding-top: 0; }
      html body > main .form-container > .content form .col .field textarea {
        margin-bottom: 27px; }
    html body .col-1-2 .field {
      margin-bottom: 0 !important; } }
@media only screen and (max-width: 1520px) {
  html body {
    width: calc(100% - 80px);
    margin: 0 40px;
    padding-top: 110px; }
    html body.sticky-header > #header > #hamburger {
      left: auto;
      right: 16px; }
    html body.module-dashboard > main > div > .list > .no-results {
      padding: 20px;
      padding-bottom: 80px; }
    html body.module-dashboard > main > div h1 {
      height: 100px;
      padding-left: 25px; }
    html body.module-projects > main.new-form #revision_form_container .field.calendar:before, html body.module-projects > main.edit-form #revision_form_container .field.calendar:before {
      height: 48px; }
    html body.module-projects > main.new-form h1, html body.module-projects > main.edit-form h1 {
      height: 110px; }
    html body #header {
      height: 110px;
      font-size: 14px;
      left: 0; }
      html body #header > #hamburger {
        left: auto;
        right: 16px; }
      html body #header > .header-main {
        max-width: 100%;
        height: 110px;
        padding-right: 90px; }
        html body #header > .header-main > #hamburger {
          left: auto;
          right: 28px; }
        html body #header > .header-main a {
          font-size: 14px; }
    html body #hamburger-menu {
      font-size: 14px; }
      html body #hamburger-menu > ul > li {
        padding: 12px 0; }
    html body > main.new-form .form-container, html body > main.edit-form .form-container {
      padding: 30px 35px;
      padding-top: 0; }
    html body > main h1 {
      height: 110px;
      font-size: 24px; }
      html body > main h1 .btn {
        margin: 0 25px; }
    html body > main .form-container {
      padding: 0 35px; }
      html body > main .form-container > .content h2 {
        background-position: left center !important;
        font-size: 24px; } }
@media only screen and (max-width: 1366px) {
  html body {
    padding-top: 90px; }
    html body.module-dashboard > main > div h1 {
      height: 90px; }
    html body.hamburger #hamburger-menu {
      font-size: 13px;
      left: calc(100% - 320px);
      padding-top: 100px; }
    html body #header {
      height: 90px; }
      html body #header > .header-main {
        height: 90px; }
    html body #hamburger-menu {
      width: 320px;
      padding-top: 100px; }
    html body > main h1 {
      height: 90px; }
    html body > main ul.list > li > a {
      min-height: 110px; }
    html body > main .form-container > .content h2 {
      height: 100px; }
    html body > main .form-container > .content form .col .field.empty {
      height: 78px; }
    html body > main .form-container > .content form .col .field input[type="text"],
    html body > main .form-container > .content form .col .field select,
    html body > main .form-container > .content form .col .field textarea {
      height: 48px; }
    html body .col .field .select2-container .select2-selection {
      min-height: 48px; }
      html body .col .field .select2-container .select2-selection .select2-selection__rendered {
        padding-right: 48px; } }
.tox-notifications-container {
  display: none; }

body.module-users.action-index #sf_admin_container h1, body.module-users.action-edit #sf_admin_container h1,
body.module-markets.action-index #sf_admin_container h1,
body.module-markets.action-edit #sf_admin_container h1 {
  height: 110px;
  font-weight: 800;
  padding: 0 25px; }
body.module-users.action-index #sf_admin_container #sf_admin_bar, body.module-users.action-edit #sf_admin_container #sf_admin_bar,
body.module-markets.action-index #sf_admin_container #sf_admin_bar,
body.module-markets.action-edit #sf_admin_container #sf_admin_bar {
  width: 100%;
  margin: 0;
  padding-bottom: 40px; }
body.module-users.action-index #sf_admin_container table, body.module-users.action-edit #sf_admin_container table,
body.module-markets.action-index #sf_admin_container table,
body.module-markets.action-edit #sf_admin_container table {
  width: 100%; }
  body.module-users.action-index #sf_admin_container table td, body.module-users.action-edit #sf_admin_container table td,
  body.module-markets.action-index #sf_admin_container table td,
  body.module-markets.action-edit #sf_admin_container table td {
    padding: 15px;
    vertical-align: middle; }
body.module-users.action-index #sf_admin_content .sf_admin_list th, body.module-users.action-index #sf_admin_content .sf_admin_list td, body.module-users.action-edit #sf_admin_content .sf_admin_list th, body.module-users.action-edit #sf_admin_content .sf_admin_list td,
body.module-markets.action-index #sf_admin_content .sf_admin_list th,
body.module-markets.action-index #sf_admin_content .sf_admin_list td,
body.module-markets.action-edit #sf_admin_content .sf_admin_list th,
body.module-markets.action-edit #sf_admin_content .sf_admin_list td {
  padding: 15px; }
body.module-users.action-index select[multiple], body.module-users.action-edit select[multiple],
body.module-markets.action-index select[multiple],
body.module-markets.action-edit select[multiple] {
  display: none; }
body.module-users.action-index form table, body.module-users.action-edit form table,
body.module-markets.action-index form table,
body.module-markets.action-edit form table {
  border: none; }
  body.module-users.action-index form table tr, body.module-users.action-edit form table tr,
  body.module-markets.action-index form table tr,
  body.module-markets.action-edit form table tr {
    background: transparent !important;
    border: none !important; }
    body.module-users.action-index form table tr td, body.module-users.action-index form table tr th, body.module-users.action-edit form table tr td, body.module-users.action-edit form table tr th,
    body.module-markets.action-index form table tr td,
    body.module-markets.action-index form table tr th,
    body.module-markets.action-edit form table tr td,
    body.module-markets.action-edit form table tr th {
      background: transparent;
      border: none !important; }
body.module-users.action-index .sf_admin_filter form table td:first-child, body.module-users.action-edit .sf_admin_filter form table td:first-child,
body.module-markets.action-index .sf_admin_filter form table td:first-child,
body.module-markets.action-edit .sf_admin_filter form table td:first-child {
  width: 300px; }
body.module-users.action-index #sf_fieldset_none,
body.module-users.action-index .sf_admin_form_row, body.module-users.action-edit #sf_fieldset_none,
body.module-users.action-edit .sf_admin_form_row,
body.module-markets.action-index #sf_fieldset_none,
body.module-markets.action-index .sf_admin_form_row,
body.module-markets.action-edit #sf_fieldset_none,
body.module-markets.action-edit .sf_admin_form_row {
  border: none !important;
  background: transparent !important; }
body.module-users.action-index .sf_admin_form_row div > label, body.module-users.action-edit .sf_admin_form_row div > label,
body.module-markets.action-index .sf_admin_form_row div > label,
body.module-markets.action-edit .sf_admin_form_row div > label {
  width: 260px !important;
  height: 55px;
  line-height: 55px; }
body.module-users.action-index #sf_admin_container th, body.module-users.action-edit #sf_admin_container th,
body.module-markets.action-index #sf_admin_container th,
body.module-markets.action-edit #sf_admin_container th {
  background: #fff; }
body.module-users.action-index ul, body.module-users.action-edit ul,
body.module-markets.action-index ul,
body.module-markets.action-edit ul {
  list-style: none !important; }
  body.module-users.action-index ul li, body.module-users.action-edit ul li,
  body.module-markets.action-index ul li,
  body.module-markets.action-edit ul li {
    list-style: none !important; }
body.module-users.action-index select, body.module-users.action-edit select,
body.module-markets.action-index select,
body.module-markets.action-edit select {
  -webkit-appearance: none;
  appareance: none; }
  body.module-users.action-index select::-ms-expand, body.module-users.action-edit select::-ms-expand,
  body.module-markets.action-index select::-ms-expand,
  body.module-markets.action-edit select::-ms-expand {
    display: none; }
body.module-users.action-index .select2-container, body.module-users.action-edit .select2-container,
body.module-markets.action-index .select2-container,
body.module-markets.action-edit .select2-container {
  width: 100% !important;
  max-width: 700px; }
  body.module-users.action-index .select2-container.select2-container--open .select2-selection:after, body.module-users.action-edit .select2-container.select2-container--open .select2-selection:after,
  body.module-markets.action-index .select2-container.select2-container--open .select2-selection:after,
  body.module-markets.action-edit .select2-container.select2-container--open .select2-selection:after {
    opacity: .4;
    transform: rotate(-180deg); }
  body.module-users.action-index .select2-container .select2-selection, body.module-users.action-edit .select2-container .select2-selection,
  body.module-markets.action-index .select2-container .select2-selection,
  body.module-markets.action-edit .select2-container .select2-selection {
    min-height: 55px;
    max-height: 320px;
    border: none;
    font-size: 14px;
    overflow: auto;
    position: relative;
    z-index: 2; }
    body.module-users.action-index .select2-container .select2-selection:after, body.module-users.action-edit .select2-container .select2-selection:after,
    body.module-markets.action-index .select2-container .select2-selection:after,
    body.module-markets.action-edit .select2-container .select2-selection:after {
      width: 55px;
      height: 55px;
      background: url(../images/icons/arrow-select.png) center center no-repeat;
      content: '';
      cursor: pointer;
      position: absolute;
      top: 0;
      right: 0;
      transition: opacity 0.15s, transform 0.15s; }
    body.module-users.action-index .select2-container .select2-selection.select2-selection--multiple:after, body.module-users.action-edit .select2-container .select2-selection.select2-selection--multiple:after,
    body.module-markets.action-index .select2-container .select2-selection.select2-selection--multiple:after,
    body.module-markets.action-edit .select2-container .select2-selection.select2-selection--multiple:after {
      display: none; }
    body.module-users.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered, body.module-users.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered,
    body.module-markets.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered,
    body.module-markets.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered {
      display: block;
      line-height: 55px;
      padding-right: 20px; }
      body.module-users.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search), body.module-users.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search),
      body.module-markets.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search),
      body.module-markets.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) {
        height: 30px;
        background-color: #eeefef;
        border: none;
        border-radius: 30px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        margin: 12px 10px 0 0;
        padding-left: 10px;
        padding-right: 15px;
        position: relative;
        left: -5px; }
        body.module-users.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search):nth-last-child(2), body.module-users.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search):nth-last-child(2),
        body.module-markets.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search):nth-last-child(2),
        body.module-markets.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search):nth-last-child(2) {
          margin-bottom: 12px; }
        body.module-users.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) .select2-selection__choice__remove, body.module-users.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) .select2-selection__choice__remove,
        body.module-markets.action-index .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) .select2-selection__choice__remove,
        body.module-markets.action-edit .select2-container .select2-selection.select2-selection--multiple ul.select2-selection__rendered > li:not(.select2-search) .select2-selection__choice__remove {
          margin-right: 5px; }
    body.module-users.action-index .select2-container .select2-selection .select2-selection__arrow, body.module-users.action-edit .select2-container .select2-selection .select2-selection__arrow,
    body.module-markets.action-index .select2-container .select2-selection .select2-selection__arrow,
    body.module-markets.action-edit .select2-container .select2-selection .select2-selection__arrow {
      display: none; }
    body.module-users.action-index .select2-container .select2-selection .select2-selection__rendered, body.module-users.action-edit .select2-container .select2-selection .select2-selection__rendered,
    body.module-markets.action-index .select2-container .select2-selection .select2-selection__rendered,
    body.module-markets.action-edit .select2-container .select2-selection .select2-selection__rendered {
      height: 100%;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      padding-left: 20px; }
      body.module-users.action-index .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder, body.module-users.action-edit .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder,
      body.module-markets.action-index .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder,
      body.module-markets.action-edit .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
        color: #8e8e8e; }
body.module-users.action-index input[type="text"],
body.module-users.action-index input[type="search"],
body.module-users.action-index select, body.module-users.action-edit input[type="text"],
body.module-users.action-edit input[type="search"],
body.module-users.action-edit select,
body.module-markets.action-index input[type="text"],
body.module-markets.action-index input[type="search"],
body.module-markets.action-index select,
body.module-markets.action-edit input[type="text"],
body.module-markets.action-edit input[type="search"],
body.module-markets.action-edit select {
  min-width: 300px;
  height: 55px;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 14px;
  outline: none;
  padding: 0 15px 0 20px; }
body.module-users.action-index select, body.module-users.action-edit select,
body.module-markets.action-index select,
body.module-markets.action-edit select {
  min-width: 0; }
body.module-users.action-index .sf_admin_date select, body.module-users.action-edit .sf_admin_date select,
body.module-markets.action-index .sf_admin_date select,
body.module-markets.action-edit .sf_admin_date select {
  margin: 10px; }
body.module-users.action-index input[type="submit"], body.module-users.action-edit input[type="submit"],
body.module-markets.action-index input[type="submit"],
body.module-markets.action-edit input[type="submit"] {
  height: 30px;
  background: #3e3e3e no-repeat;
  border: 2px solid #3e3e3e;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin-left: 20px;
  padding: 0 20px;
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, opacity 0.6s;
  white-space: nowrap; }

/*# sourceMappingURL=styles.css.map */
