/* ---------------------------------- */
/* ----------- BASE CONFIG ---------- */
/* ---------------------------------- */
/* -------------------------- */
/* ------- TYPOGRAPHY ------- */
/* -------------------------- */
@import url(https://fonts.googleapis.com/css?family=Assistant:400,200,300,600,700,800);
/* -------------------------- */
@-webkit-keyframes arrow-up {
  from {
    -webkit-transform: translateY(0); }
  to {
    -webkit-transform: translateY(-10px); } }
@-moz-keyframes arrow-up {
  from {
    -moz-transform: translateY(0); }
  to {
    -moz-transform: translateY(-10px); } }
@keyframes arrow-up {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px); } }
@-webkit-keyframes arrow-down {
  from {
    -webkit-transform: translateY(0); }
  to {
    -webkit-transform: translateY(5px); } }
@-moz-keyframes arrow-down {
  from {
    -moz-transform: translateY(0); }
  to {
    -moz-transform: translateY(5px); } }
@keyframes arrow-down {
  from {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); }
  to {
    -webkit-transform: translateY(5px);
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -o-transform: translateY(5px);
    transform: translateY(5px); } }
@-webkit-keyframes move-left {
  from {
    -webkit-transform: translateX(0); }
  to {
    -webkit-transform: translateX(-10px); } }
@-moz-keyframes move-left {
  from {
    -moz-transform: translateX(0); }
  to {
    -moz-transform: translateX(-10px); } }
@keyframes move-left {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    transform: translateX(-10px); } }
/* -------------------------- */
/* --------- RESET ---------- */
/* -------------------------- */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
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, q {
  quotes: none; }
  blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

img {
  max-width: 100%;
  vertical-align: middle; }

* {
  box-sizing: border-box; }

.clearboth {
  clear: both; }

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* --------- GENERAL LAYOUTS -------- */
/* ---------------------------------- */
/* -------------------------- */
/* ------ GENERAL GRID ------ */
/* ------ LAYOUT ------------ */
/* -------------------------- */
html, body, #container {
  min-height: 100%;
  height: 100%;
  font-size: 14px;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  line-height: 1.2em;
  background-color: #F1F1F1; }

body.lock {
  overflow-y: hidden; }

a {
  color: #000000;
  text-decoration: none; }

.button {
  display: inline-block;
  padding: 5px 10px;
  margin: auto;
  color: #666666;
  background-color: transparent;
  border: 1px solid #AAAAAA;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s ease-out; }
  .button:hover {
    color: #000000;
    background-color: #FFCC66 !important;
    border-color: #FFCC66 !important; }
  .button.right {
    float: right; }

/* FLOW CONTENT */
#main-content {
  width: 100%;
  min-height: 100%;
  padding: 0 0 0 300px; }
  #main-content .content {
    padding: 20px; }
  #main-content.login-flow {
    padding: 20px !important; }

.no-results {
  padding: 20px;
  margin: 0;
  font-size: 1.6em;
  text-align: center; }

strong {
  font-weight: bold; }

/* -------------------------- */
/* -------------------------- */
/* ----- HEADER LAYOUT ------ */
/* -------------------------- */
header {
  border-bottom: 1px solid #999999;
  background-color: #FFFFFF; }
  header.home {
    text-align: center;
    padding: 20px; }
    header.home img {
      width: 150px;
      margin-bottom: 10px; }

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding: 10px 20px;
  background-color: #232B2D; }
  .top-header .breadcrumbs {
    color: #AAAAAA; }
    .top-header .breadcrumbs a {
      color: inherit;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      .top-header .breadcrumbs a:hover {
        color: #FFFFFF;
        text-decoration: underline; }
      .top-header .breadcrumbs a:last-child {
        color: #FFCC66; }
  .top-header .languages a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #AAAAAA; }
    .top-header .languages a:hover {
      color: #FFFFFF; }
    .top-header .languages a.current {
      color: #000000;
      background-color: #FFCC66; }

.mid-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 20px; }
  .mid-header.home {
    margin-bottom: 20px;
    text-align: center; }
  .mid-header h2 {
    color: #000000;
    font-size: 2.5em;
    line-height: 1.2em;
    flex-grow: 2; }
  .mid-header .actions {
    padding: 0 2.5px;
    text-align: right; }
    .mid-header .actions .button {
      margin: 2.5px; }
  .mid-header .search {
    width: 250px; }
    .mid-header .search.search-dates {
      width: 400px; }
      .mid-header .search.search-dates .search-form .input {
        padding-right: 10px; }
    .mid-header .search .search-form {
      display: flex; }
      .mid-header .search .search-form .input.text {
        flex-grow: 2; }
        .mid-header .search .search-form .input.text input {
          width: 100%;
          height: 28px;
          padding: 5px;
          border: 1px solid #AAAAAA;
          font-size: 0.9em; }
      .mid-header .search .search-form .button {
        height: 28px; }

.header-tabs {
  padding: 0 20px; }
  .header-tabs .content-tabs {
    width: auto;
    margin-bottom: 0; }
    .header-tabs .content-tabs .tab {
      display: inline-block;
      padding: 10px 20px;
      margin: 0 10px;
      border-bottom: 5px solid transparent;
      background-color: transparent;
      color: #666666;
      text-align: center;
      text-transform: uppercase;
      font-weight: bold;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      .header-tabs .content-tabs .tab:hover {
        color: #000000;
        border-bottom: 5px solid #666666; }
      .header-tabs .content-tabs .tab.current {
        color: #000000;
        border-bottom: 5px solid #FFCC66; }

.month-tabs {
  padding: 10px 20px 20px; }
  .month-tabs .content-tabs {
    width: auto;
    background-color: #FFCC66; }
    .month-tabs .content-tabs .tab {
      display: inline-block;
      padding: 10px;
      margin: 0 5px;
      border-bottom: 5px solid transparent;
      background-color: transparent;
      color: #666666;
      text-align: center;
      text-transform: uppercase;
      font-weight: bold;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      .month-tabs .content-tabs .tab:hover {
        color: #000000;
        border-bottom: 5px solid #666666; }
      .month-tabs .content-tabs .tab.current {
        color: #000000;
        border-bottom: 5px solid #FFFFFF; }
  .month-tabs .clearboth {
    margin-bottom: -1px; }

.search-results {
  padding: 10px;
  background-color: white;
  border-top: 1px solid #DDDDDD;
  text-align: center; }

/* -------------------------- */
/* -------------------------- */
/* ----- CONTENT LAYOUT ----- */
/* -------------------------- */
.paginator {
  margin-bottom: 5px;
  text-align: right;
  font-size: 1.2em; }
  .paginator li {
    display: inline-block;
    margin: 0 5px; }
    .paginator li a {
      display: inline-block;
      padding: 5px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      .paginator li a:hover {
        color: #FFFFFF;
        background-color: #999999; }
    .paginator li.active {
      color: #FFFFFF;
      background-color: #666666; }
      .paginator li.active a {
        color: #FFFFFF; }
    .paginator li.disabled a {
      color: #DDDDDD;
      background-color: transparent; }

.results {
  margin-bottom: 20px; }
  .results .top-results {
    display: table;
    width: 100%; }
    .results .top-results .result-types {
      display: table-cell;
      vertical-align: bottom;
      padding: 5px;
      text-align: left; }
    .results .top-results .num-results {
      display: table-cell;
      vertical-align: bottom;
      padding: 5px;
      text-align: right; }
  .results .status {
    padding: 5px; }
    .results .status .current {
      font-weight: bold; }
  .results ul {
    list-style-type: disc;
    padding-left: 20px; }
    .results ul ul {
      list-style-type: circle; }
  .results table {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #DDDDDD; }
    .results table th,
    .results table td {
      padding: 20px;
      text-align: left;
      vertical-align: middle;
      border-right: 1px solid #DDDDDD; }
      .results table th:last-child,
      .results table td:last-child {
        border-right: none; }
      .results table th p.green, .results table th i.green,
      .results table td p.green,
      .results table td i.green {
        color: #08D012; }
      .results table th p.yellow, .results table th i.yellow,
      .results table td p.yellow,
      .results table td i.yellow {
        color: #FFB205; }
      .results table th p.red, .results table th i.red,
      .results table td p.red,
      .results table td i.red {
        color: #DF0101; }
    .results table thead th {
      padding: 10px;
      background-color: #232B2D;
      border: 1px solid #232B2D;
      color: #FFFFFF;
      text-align: left;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 12px; }
      .results table thead th a {
        color: #FFFFFF; }
        .results table thead th a:hover {
          text-decoration: underline; }
      .results table thead th.center {
        text-align: center;
        font-size: 1.6em; }
      .results table thead th.boolean {
        width: 90px;
        text-align: center; }
      .results table thead th.sort {
        width: 65px; }
      .results table thead th.date {
        width: 150px; }
      .results table thead th.status {
        width: 100px; }
      .results table thead th.image {
        width: 100px; }
      .results table thead th.arrow {
        width: 60px; }
      .results table thead th.actions {
        min-width: 180px;
        width: 15%;
        text-align: center; }
        .results table thead th.actions.short {
          min-width: 0; }
        .results table thead th.actions.projects {
          width: 300px; }
        .results table thead th.actions.clients {
          width: 230px; }
      .results table thead th.sortable a {
        padding-right: 30px;
        background-repeat: no-repeat;
        background-position: right;
        background-image: url(../img/style/ordenable.png); }
        .results table thead th.sortable a.asc {
          background-image: url(../img/style/arrow_up.png); }
        .results table thead th.sortable a.desc {
          background-image: url(../img/style/arrow_down.png); }
      .results table thead th.key {
        width: 250px; }
      .results table thead th.concept {
        width: 450px; }
      .results table thead th.concept-large {
        width: 650px; }
      .results table thead th.counter {
        width: 180px; }
    .results table tbody tr.pair {
      background-color: #FFFFFF; }
    .results table tbody tr.odd {
      background-color: #F1F1F1; }
    .results table tbody tr.alert {
      background-color: #FFCC66; }
    .results table tbody tr:hover {
      background-color: #DDDDDD; }
    .results table tbody tr.sortable .handle {
      cursor: move;
      width: 65px; }
      .results table tbody tr.sortable .handle:hover {
        background-color: #999999 !important; }
    .results table tbody tr.sortable.ui-sortable-helper {
      border: none;
      background-color: #999999 !important; }
      .results table tbody tr.sortable.ui-sortable-helper td.visible {
        width: 90px; }
      .results table tbody tr.sortable.ui-sortable-helper td.actions {
        width: 15%;
        min-width: 0; }
        .results table tbody tr.sortable.ui-sortable-helper td.actions.short {
          min-width: 0; }
        .results table tbody tr.sortable.ui-sortable-helper td.actions.projects {
          width: 300px; }
        .results table tbody tr.sortable.ui-sortable-helper td.actions.clients {
          width: 230px; }
    .results table tbody tr td img {
      max-height: 80px; }
      .results table tbody tr td img.part-image {
        margin-right: 20px;
        border: 1px solid #DDDDDD;
        box-shadow: 0px 0px 1px 1px #DDDDDD; }
    .results table tbody tr td.arrow {
      /* arrow up and down */ }
      .results table tbody tr td.arrow .moveup,
      .results table tbody tr td.arrow .movedown {
        display: block;
        width: 20px;
        height: 20px;
        cursor: pointer; }
      .results table tbody tr td.arrow .moveup {
        background: url(../img/style/arrow_up_black.png) no-repeat center;
        background-size: contain; }
      .results table tbody tr td.arrow .movedown {
        background: url(../img/style/arrow_down_black.png) no-repeat center;
        background-size: contain; }
    .results table tbody tr td.sort, .results table tbody tr td.status, .results table tbody tr td.date {
      text-align: center; }
    .results table tbody tr td.image {
      text-align: center;
      padding: 5px; }
    .results table tbody tr td.center {
      text-align: center; }
    .results table tbody tr td.cost {
      text-align: right; }
    .results table tbody tr td.app-icon {
      width: 5%;
      text-align: center; }
      .results table tbody tr td.app-icon i.app-letter {
        font-family: inherit;
        font-weight: bold; }
    .results table tbody tr td .inline-submit {
      margin: 0; }
    .results table tbody tr td .inline-field {
      width: 70%;
      float: left;
      text-align: right;
      font-size: 1em;
      padding: 4px; }
    .results table tbody tr td p span {
      font-weight: bold; }
    .results table tbody tr td p.status-1 {
      font-weight: bold;
      color: #FFCC66; }
    .results table tbody tr td p.status-2 {
      font-weight: bold;
      color: #BE0411; }
    .results table tbody tr td p.status-3 {
      font-weight: bold;
      color: #4285F4; }
    .results table tbody tr td p.status-4 {
      font-weight: bold;
      color: #151A1C; }
    .results table tbody tr td p.status-5 {
      font-weight: bold;
      color: #2d9935; }
    .results table tbody .check {
      border: 1px solid #999;
      background: white;
      width: 20px;
      height: 20px;
      margin: 0 auto;
      cursor: pointer; }
      .results table tbody .check img {
        display: none;
        max-width: none; }
      .results table tbody .check.checked img {
        display: block;
        width: 30px;
        margin-top: -7px;
        margin-left: -3px;
        margin-bottom: -23px; }
    .results table tbody .actions {
      padding: 10px; }
      .results table tbody .actions .button {
        width: calc(50% - 12px);
        padding: 5px 10px;
        margin: 5px;
        font-size: 0.9em;
        text-align: center;
        line-height: 1.2em; }
        .results table tbody .actions .button.fullwidth {
          width: calc(100% - 10px);
          margin-bottom: 5px; }
        .results table tbody .actions .button.iconwidth {
          width: calc(20% - 14px); }
        .results table tbody .actions .button.clientwidth {
          width: calc(20% - 5px); }
        .results table tbody .actions .button.iconcost {
          width: calc(33% - 14px); }
        .results table tbody .actions .button.more {
          min-width: 0px; }
    .results table.tree .element {
      text-align: left; }
      .results table.tree .element .level-1 {
        padding-left: 20px; }
      .results table.tree .element .level-2 {
        padding-left: 40px; }
      .results table.tree .element .level-3 {
        padding-left: 60px; }
      .results table.tree .element .level-4 {
        padding-left: 80px; }
      .results table.tree .element .level-5 {
        padding-left: 100px; }
      .results table.tree .element .level-6 {
        padding-left: 120px; }
  .results.questions_list tbody td.question_part, .results.questions_list tbody td.question {
    text-align: left; }
  .results.questions_list tbody td.question_part {
    font-size: 1.2em;
    text-transform: uppercase; }
  .results.questions_list tbody td.question {
    padding-left: 40px; }
  .results .admin-form {
    margin-bottom: 0; }
    .results .admin-form .input {
      padding: 0; }

.admin-form {
  display: table;
  width: 100%; }
  .admin-form .primary {
    width: 70%;
    float: left; }
    .admin-form .primary.pass-primary {
      width: 50%; }
    .admin-form .primary.leads {
      width: 50%;
      float: left; }
  .admin-form .secondary {
    width: 30%;
    float: right;
    padding-left: 20px; }
    .admin-form .secondary.pass-secondary {
      width: 50%; }
    .admin-form .secondary.leads {
      width: 50%;
      float: left; }
  .admin-form .full {
    width: 100%; }
    .admin-form .full .primary, .admin-form .full .secondary {
      width: 50%; }
  .admin-form .form-block {
    margin-bottom: 20px;
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF; }
    .admin-form .form-block.primary {
      border: none;
      background-color: transparent; }
    .admin-form .form-block.address .center {
      text-align: center;
      margin-bottom: 10px; }
    .admin-form .form-block.address .map {
      border-top: 1px solid #DDDDDD; }
      .admin-form .form-block.address .map h4 {
        margin-top: 0;
        margin-bottom: 0;
        border: none; }
      .admin-form .form-block.address .map .map-canvas {
        margin-top: 0; }
    .admin-form .form-block.results table {
      margin-bottom: 0; }
    .admin-form .form-block.form-table {
      width: 100% !important;
      margin: auto;
      margin-bottom: 10px; }
      .admin-form .form-block.form-table h3 {
        margin-bottom: 0;
        padding: 5px 10px;
        display: table;
        width: 100%; }
        .admin-form .form-block.form-table h3.leads {
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: space-between;
          height: 38px; }
        .admin-form .form-block.form-table h3 span {
          display: table-cell;
          width: 40%;
          vertical-align: middle; }
          .admin-form .form-block.form-table h3 span.toggle-display {
            width: 2%; }
            .admin-form .form-block.form-table h3 span.toggle-display i {
              font-size: 28px;
              font-weight: bold; }
            .admin-form .form-block.form-table h3 span.toggle-display:hover {
              cursor: pointer; }
          .admin-form .form-block.form-table h3 span.edit-pass, .admin-form .form-block.form-table h3 span.delete-pass {
            width: 2%; }
            .admin-form .form-block.form-table h3 span.edit-pass i, .admin-form .form-block.form-table h3 span.delete-pass i {
              color: white;
              font-size: 1.2em;
              font-weight: bold; }
            .admin-form .form-block.form-table h3 span.edit-pass:hover, .admin-form .form-block.form-table h3 span.delete-pass:hover {
              cursor: pointer; }
          .admin-form .form-block.form-table h3 span.title {
            width: 58%; }
            .admin-form .form-block.form-table h3 span.title i.app-letter {
              font-family: inherit;
              font-weight: bold; }
      .admin-form .form-block.form-table .info {
        width: 100%;
        margin-bottom: 0;
        border: none;
        box-shadow: none;
        text-align: left; }
        .admin-form .form-block.form-table .info.info-password p {
          padding: 10px; }
          .admin-form .form-block.form-table .info.info-password p span {
            font-weight: bold; }
        .admin-form .form-block.form-table .info.hidden {
          display: none; }
        .admin-form .form-block.form-table .info tr {
          background-color: #FFFFFF; }
          .admin-form .form-block.form-table .info tr.location p {
            width: 250px;
            overflow: hidden;
            word-break: break-all; }
        .admin-form .form-block.form-table .info th {
          padding: 5px 10px; }
          .admin-form .form-block.form-table .info th.info-header {
            font-weight: bold; }
            .admin-form .form-block.form-table .info th.info-header.state {
              width: 5%; }
            .admin-form .form-block.form-table .info th.info-header.name {
              width: 40%; }
            .admin-form .form-block.form-table .info th.info-header.price {
              text-align: right; }
        .admin-form .form-block.form-table .info td {
          padding: 5px 10px; }
          .admin-form .form-block.form-table .info td.property {
            width: 150px;
            font-weight: bold; }
          .admin-form .form-block.form-table .info td.info-data {
            width: 33.33%;
            vertical-align: middle; }
            .admin-form .form-block.form-table .info td.info-data.state {
              width: 5%; }
            .admin-form .form-block.form-table .info td.info-data.price {
              text-align: right; }
            .admin-form .form-block.form-table .info td.info-data span.green {
              font-weight: bold;
              color: #08D012; }
            .admin-form .form-block.form-table .info td.info-data span.yellow {
              font-weight: bold;
              color: #FFB205; }
            .admin-form .form-block.form-table .info td.info-data span.red {
              font-weight: bold;
              color: #DF0101; }
          .admin-form .form-block.form-table .info td.center {
            text-align: center; }
          .admin-form .form-block.form-table .info td p.green, .admin-form .form-block.form-table .info td i.green {
            color: #08D012; }
          .admin-form .form-block.form-table .info td p.yellow, .admin-form .form-block.form-table .info td i.yellow {
            color: #FFB205; }
          .admin-form .form-block.form-table .info td p.red, .admin-form .form-block.form-table .info td i.red {
            color: #DF0101; }
        .admin-form .form-block.form-table .info .admin-form {
          margin-bottom: 0; }
          .admin-form .form-block.form-table .info .admin-form .input {
            padding: 0; }
        .admin-form .form-block.form-table .info .inline-field {
          width: 50%;
          float: left;
          text-align: right;
          font-size: 1em;
          padding: 4px;
          margin-left: 65px; }
        .admin-form .form-block.form-table .info .inline-submit {
          margin: 0; }
    .admin-form .form-block .data .info {
      width: 100%;
      margin-bottom: 10px;
      border: none;
      box-shadow: none; }
      .admin-form .form-block .data .info tr {
        background-color: #FFFFFF; }
        .admin-form .form-block .data .info tr.location p {
          width: 250px;
          overflow: hidden;
          word-break: break-all; }
      .admin-form .form-block .data .info td {
        padding: 10px 20px;
        vertical-align: middle; }
        .admin-form .form-block .data .info td.property {
          width: 160px;
          font-weight: bold; }
        .admin-form .form-block .data .info td.property-large {
          width: 60%;
          font-weight: bold; }
        .admin-form .form-block .data .info td.cost {
          text-align: right; }
        .admin-form .form-block .data .info td.amount {
          font-weight: bold; }
          .admin-form .form-block .data .info td.amount.green {
            color: #08D012; }
          .admin-form .form-block .data .info td.amount.yellow {
            color: #FFB205; }
          .admin-form .form-block .data .info td.amount.red {
            color: #DF0101; }
        .admin-form .form-block .data .info td span.code {
          display: block;
          font-weight: normal;
          font-style: italic;
          font-size: 14px; }
  .admin-form p {
    padding: 20px; }
  .admin-form h3 {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #232B2D;
    color: #FFFFFF;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px; }
  .admin-form h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-align: center; }
  .admin-form .input {
    clear: both;
    padding: 0 10px 10px; }
    .admin-form .input label {
      display: block;
      padding: 5px 0;
      text-align: left; }
    .admin-form .input .help {
      margin-top: 5px;
      background-color: #FFFFFF;
      font-style: italic;
      font-size: 0.9em; }
      .admin-form .input .help a {
        text-decoration: underline; }
      .admin-form .input .help strong {
        font-weight: bold; }
    .admin-form .input input,
    .admin-form .input textarea,
    .admin-form .input select {
      width: 100%;
      padding: 10px;
      border: 1px solid #DDDDDD;
      font-size: 1.2em; }
      .admin-form .input input[readonly],
      .admin-form .input textarea[readonly],
      .admin-form .input select[readonly] {
        background-color: #EEEEEE; }
    .admin-form .input.checkbox input[type=checkbox] {
      display: inline;
      width: auto;
      margin: 5px; }
    .admin-form .input.error .error-message {
      margin-top: 5px;
      padding: 5px;
      background-color: #BE0411;
      color: #FFFFFF;
      font-style: italic;
      font-size: 0.9em; }
  .admin-form .save {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px 20px; }
    .admin-form .save .cancel {
      color: #AAAAAA;
      margin: 0 20px;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      .admin-form .save .cancel:hover {
        color: #BE0411; }
  .admin-form #s2id_entity, .admin-form #s2id_layout {
    width: 100%; }

/* IMAGES */
.admin-form .media {
  float: none;
  width: 100%; }

.admin-form .filename {
  border: 1px #ddd solid;
  text-align: left;
  padding: 10px;
  font-family: "Open Sans";
  font-weight: 100;
  font-size: 1.2em; }

.admin-form .filename p {
  padding: 5px;
  background-color: white;
  overflow: hidden; }

.admin-form .block-media {
  width: 100%;
  padding: 10px 20px 20px 20px; }

.admin-form .block-media.half {
  width: 48%;
  float: left;
  margin-right: 20px;
  text-align: center; }

.admin-form .block-media .center-image {
  text-align: center;
  padding: 0; }

.admin-form .block-media .delete {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  width: 100%;
  background-color: #555;
  letter-spacing: 1px;
  padding: 10px; }

.admin-form .block-media .delete a {
  color: white; }

.admin-form .block-media .files {
  text-align: center;
  border: 1px #ddd solid;
  border-bottom: none;
  width: 100%;
  background-color: #fff;
  color: black; }

.admin-form .block-media .files > a {
  display: block;
  transition: .5s all ease-out;
  -webkit-transition: .5s all ease-out;
  -moz-transition: .5s all ease-out;
  padding: 10px; }

.admin-form .block-media .files a:hover {
  cursor: pointer;
  background: #ddd; }

.admin-form .block-media .delete a {
  display: block;
  padding: 2px 5px; }

.admin-form .block-media .delete:hover {
  cursor: pointer;
  background-color: #333 !important;
  border-color: #333 !important; }

.admin-form .block-media .delete:hover a {
  color: white; }

.admin-form .block-media h3 {
  background-color: white;
  font-size: 1em;
  text-align: left;
  padding: 5px 0;
  margin-bottom: 0;
  display: block; }

/* EXTRA IMAGE */
.extra-image {
  float: left;
  width: 50%; }

.extra-image img {
  border: 1px #ddd solid;
  width: 100%;
  max-height: 200px; }

.block-media .info-img {
  text-align: center; }

.main-image {
  background-color: white;
  border: 1px #ddd solid;
  max-height: 350px;
  max-width: 100%; }

.half-image {
  width: 50%;
  border: 1px #ddd solid; }

.quarter-image {
  width: 25%;
  border: 1px #ddd solid; }

/* FILES */
.admin-form .input.file {
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  padding: 11px;
  background-color: #555;
  border: 1px #555 solid;
  color: white;
  cursor: pointer;
  background-image: url(../img/bkg/upload.png);
  background-position: right;
  background-repeat: no-repeat;
  width: 40%;
  float: right;
  transition: 0.2s all ease-out; }

.admin-form .input.file label {
  display: block;
  margin-bottom: 0;
  text-align: center;
  cursor: pointer; }

.admin-form .input.file [type="file"] {
  display: block;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer; }

.admin-form label.imagen:hover,
.admin-form .input.file:hover {
  cursor: pointer;
  background-color: #333 !important;
  border-color: #333 !important; }

/* ATTACH FILES */
.admin-form .attach {
  display: table;
  width: 100%; }

.admin-form .attach .file {
  display: table-cell;
  width: 90%;
  border: 1px solid #333;
  padding: 0 10px; }

.admin-form .attach .file:hover {
  background: #333;
  color: white; }

.admin-form .attach p.delete {
  display: table-cell;
  width: 10%;
  text-align: center;
  float: none; }

.admin-form .attach p.delete a {
  text-align: center;
  color: white;
  padding: 10px; }

/* ADD MAP FORM */
.admin-form .map .map-columns {
  display: table;
  margin-bottom: 20px; }

.admin-form .map .map-left {
  display: table-cell;
  width: 50%;
  vertical-align: top; }

.admin-form .map .map-right {
  display: table-cell;
  width: 50%;
  padding-right: 20px;
  vertical-align: top; }

.admin-form .map .button {
  float: right;
  margin-right: 0;
  margin-top: 0; }

.admin-form .map h4 {
  margin-top: 10px;
  font-size: 1em;
  border: 1px #ddd solid;
  padding: 10px; }

.admin-form .map .map-canvas {
  width: 100%;
  height: 500px;
  border: 1px #ddd solid;
  margin-top: 10px; }

/* -------------------------- */
/* -------------------------- */
/* ----- SIDEBAR LAYOUT ----- */
/* -------------------------- */
/* NAVIGATION */
nav {
  width: 300px;
  height: 100%;
  position: fixed;
  z-index: 10;
  background-color: #232B2D; }
  nav .logo {
    width: 100%;
    max-height: 100px;
    padding: 10px;
    /*&:after{
        content: '';
        display: block;
        width: 80%;
        margin: $small-gap auto 0;
        border-bottom: 5px solid $dark-gray;
        border-radius: 2px;
    }*/ }
    nav .logo img {
      display: block;
      margin: auto;
      max-width: 100%;
      max-height: 100%;
      width: 150px; }
  nav .items {
    height: -webkit-calc(100vh - 100px);
    height: calc(100vh - 100px);
    overflow-y: auto;
    padding-bottom: 40px; }
    nav .items .accordion {
      border-bottom: 1px solid #AAAAAA; }
      nav .items .accordion .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #AAAAAA;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
        nav .items .accordion .header .icon {
          padding: 20px 20px 10px 20px; }
        nav .items .accordion .header .name {
          padding: 20px 0 10px;
          flex-grow: 2; }
        nav .items .accordion .header .arrow {
          padding: 20px 20px 10px 10px;
          font-size: 20px; }
          nav .items .accordion .header .arrow i {
            transform-origin: center center;
            -webkit-transition: all 0.5s ease-out;
            -moz-transition: all 0.5s ease-out;
            transition: all 0.5s ease-out; }
      nav .items .accordion .content {
        overflow: hidden;
        max-height: 0px;
        margin-bottom: 10px;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
      nav .items .accordion.active .header {
        color: #FFFFFF; }
        nav .items .accordion.active .header .arrow i {
          -webkit-transform: rotate(90deg);
          -moz-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          -o-transform: rotate(90deg);
          transform: rotate(90deg); }
      nav .items .accordion.active .content {
        max-height: 200px; }
      nav .items .accordion:hover .header {
        color: #FFFFFF; }
    nav .items .menu-title {
      letter-spacing: 1px;
      cursor: pointer;
      text-transform: uppercase;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    nav .items .menu-item {
      position: relative;
      display: block;
      padding: 0 20px;
      margin: 20px 0;
      border-left: 0px solid #FFFFFF;
      color: #FFFFFF;
      text-decoration: none;
      overflow: hidden;
      -webkit-transition: all 0.2s ease-out;
      -moz-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      nav .items .menu-item:hover {
        border-left: 5px solid #FFFFFF; }
      nav .items .menu-item.current {
        color: #FFCC66;
        border-left: 5px solid #FFCC66;
        font-weight: 600; }
      nav .items .menu-item.exit {
        position: absolute;
        bottom: 0;
        width: 100%;
        text-align: right;
        color: #AAAAAA;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: default; }
        nav .items .menu-item.exit a {
          color: #AAAAAA;
          cursor: pointer; }
          nav .items .menu-item.exit a:hover {
            color: #FFCC66; }

/* -------------------------- */
/* -------------------------- */
/* ----- FOOTER LAYOUT ------ */
/* -------------------------- */
/* -------------------------- */
/* -------------------------- */
/* ----- ALERTS LAYOUT ------ */
/* -------------------------- */
.message {
  padding: 20px;
  margin: 20px 0;
  color: #FFFFFF;
  background-color: #4285F4;
  text-align: center;
  font-weight: 400; }
  .message.error {
    background-color: #BE0411; }
  .message.success {
    background-color: #2d9935; }
  .message.hidden {
    display: none; }

/* -------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
/* ------ PAGE SPECIFIC STYLES ------ */
/* ---------------------------------- */
/* -------------------------- */
/* ---- HOME PAGE STYLES ---- */
/* -------------------------- */
.blocks {
  padding: 20px; }
  .blocks .wrapper-blocks {
    display: table;
    float: left;
    width: -webkit-calc(50% - 10px);
    width: calc(50% - 10px);
    margin: 5px 10px 5px 0;
    border: 1px solid #DDDDDD; }
    .blocks .wrapper-blocks .block-title {
      padding: 10px;
      background-color: #DDDDDD;
      text-align: center;
      text-transform: uppercase;
      font-size: 1.2em;
      letter-spacing: 1px; }
    .blocks .wrapper-blocks .wrapper-table {
      display: table;
      width: 100%;
      border-spacing: 10px; }
      .blocks .wrapper-blocks .wrapper-table a {
        display: table-cell;
        vertical-align: middle;
        height: 100px;
        margin: 10px 5px;
        padding: 10px;
        color: #FFFFFF;
        background-color: #666666;
        font-weight: lighter;
        text-align: center;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 2px;
        transition: 0.2s all ease-out; }
        .blocks .wrapper-blocks .wrapper-table a:hover {
          background-color: #151A1C; }
      .blocks .wrapper-blocks .wrapper-table .menu-item.w33 {
        width: calc(33.33%); }
      .blocks .wrapper-blocks .wrapper-table .menu-item.w50 {
        width: calc(50%); }
      .blocks .wrapper-blocks .wrapper-table .menu-item.w100 {
        width: calc(100%); }

/* -------------------------- */
/* -------------------------- */
/* ------- LOGIN PAGE ------- */
/* -------------------------- */
.login {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 1px 1px #DDDDDD; }
  .login h1 {
    margin: 0 0 20px;
    text-align: center; }
    .login h1 img {
      max-width: 100%; }
  .login p {
    text-align: center; }
  .login .message {
    font-size: 1.2em;
    line-height: 1.2em;
    text-transform: uppercase; }
  .login .login-form .input {
    margin: 20px 0; }
    .login .login-form .input label {
      display: block;
      text-transform: uppercase; }
    .login .login-form .input input {
      display: block;
      width: 100%;
      padding: 5px;
      font-size: 1em;
      font-family: "Assistant", sans-serif;
      font-weight: 300;
      border: 1px solid #333; }
  .login .login-form .submit {
    text-align: center; }

/* -------------------------- */
/* ---------------------------------- */
/* SPINNER CSS */
#page-loader {
  position: fixed;
  top: 0;
  left: 300px;
  width: -webkit-calc(100% - 300px);
  width: calc(100% - 300px);
  height: 100%;
  z-index: 10; }

.spinner-css:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0px;
  top: 0px;
  margin: 5px;
  background: #B8D8D8;
  opacity: 0;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px; }

.spinner-css .side {
  height: 60px;
  width: 30px;
  position: absolute;
  overflow: hidden;
  top: 0; }

.spinner-css .side > .fill {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #456990;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  animation: cssSpinnerRight 2s infinite linear;
  -webkit-animation: cssSpinnerRight 2s infinite linear;
  -moz-animation: cssSpinnerRight 2s infinite linear; }

.spinner-css {
  position: fixed;
  margin: -30px  0 0 -30px;
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  z-index: 99999;
  opacity: .8; }

.spinner-css .side.sp_right {
  left: 30px;
  border-radius: 0px 999px 999px 0px;
  -webkit-border-radius: 0px 999px 999px 0px;
  -moz-border-radius: 0px 999px 999px 0px; }

.spinner-css .side.sp_right > .fill {
  right: 0;
  border-right: 30px solid #B8D8D8; }

.spinner-css .side.sp_left {
  left: 0;
  border-radius: 999px 0px 0px 999px;
  -webkit-border-radius: 999px 0px 0px 999px;
  -moz-border-radius: 999px 0px 0px 999px; }

.spinner-css .side.sp_left > .fill {
  left: 0;
  border-left: 30px solid #B8D8D8;
  animation: cssSpinnerLeft 2s infinite linear;
  -webkit-animation: cssSpinnerLeft 2s infinite linear;
  -moz-animation: cssSpinnerLeft 2s infinite linear;
  -o-animation: cssSpinnerLeft 2s infinite linear; }

@-webkit-keyframes cssSpinnerRight {
  0% {
    -webkit-transform: rotate(0deg); }
  20% {
    -webkit-transform: rotate(90deg); }
  25% {
    -webkit-transform: rotate(180deg); }
  50% {
    -webkit-transform: rotate(180deg); }
  70% {
    -webkit-transform: rotate(270deg); }
  75% {
    -webkit-transform: rotate(360deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-webkit-keyframes cssSpinnerLeft {
  0% {
    -webkit-transform: rotate(0deg); }
  25% {
    -webkit-transform: rotate(0deg); }
  35% {
    -webkit-transform: rotate(90deg); }
  50% {
    -webkit-transform: rotate(180deg); }
  75% {
    -webkit-transform: rotate(180deg); }
  80% {
    -webkit-transform: rotate(270deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
@-moz-keyframes cssSpinnerRight {
  0% {
    -moz-transform: rotate(0deg); }
  20% {
    -moz-transform: rotate(90deg); }
  25% {
    -moz-transform: rotate(180deg); }
  50% {
    -moz-transform: rotate(180deg); }
  70% {
    -moz-transform: rotate(270deg); }
  75% {
    -moz-transform: rotate(360deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-moz-keyframes cssSpinnerLeft {
  0% {
    -moz-transform: rotate(0deg); }
  25% {
    -moz-transform: rotate(0deg); }
  35% {
    -moz-transform: rotate(90deg); }
  50% {
    -moz-transform: rotate(180deg); }
  75% {
    -moz-transform: rotate(180deg); }
  80% {
    -moz-transform: rotate(270deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-o-keyframes cssSpinnerRight {
  0% {
    -o-transform: rotate(0deg); }
  20% {
    -o-transform: rotate(90deg); }
  25% {
    -o-transform: rotate(180deg); }
  50% {
    -o-transform: rotate(180deg); }
  70% {
    -o-transform: rotate(270deg); }
  75% {
    -o-transform: rotate(360deg); }
  100% {
    -o-transform: rotate(360deg); } }
@-o-keyframes cssSpinnerLeft {
  0% {
    -o-transform: rotate(0deg); }
  25% {
    -o-transform: rotate(0deg); }
  35% {
    -o-transform: rotate(90deg); }
  50% {
    -o-transform: rotate(180deg); }
  75% {
    -o-transform: rotate(180deg); }
  80% {
    -o-transform: rotate(270deg); }
  100% {
    -o-transform: rotate(360deg); } }
@keyframes cssSpinnerRight {
  0% {
    transform: rotate(0deg); }
  20% {
    transform: rotate(90deg); }
  25% {
    transform: rotate(180deg); }
  50% {
    transform: rotate(180deg); }
  70% {
    transform: rotate(270deg); }
  75% {
    transform: rotate(360deg); }
  100% {
    transform: rotate(360deg); } }
@keyframes cssSpinnerLeft {
  0% {
    transform: rotate(0deg); }
  25% {
    transform: rotate(0deg); }
  35% {
    transform: rotate(90deg); }
  50% {
    transform: rotate(180deg); }
  75% {
    transform: rotate(180deg); }
  80% {
    transform: rotate(270deg); }
  100% {
    transform: rotate(360deg); } }
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background-color: #FFBC35;
  font-size: 40px;
  text-shadow: 1px 1px #000; }

::selection {
  color: #fff;
  background-color: #FFBC35;
  text-shadow: 1px 1px #000; }

/**
 * MAIN MANAGER PANEL STYLES
 */
.resources {
  /*.close{
      position: absolute;
      top: $small-gap;
      right: $small-gap;
      cursor: pointer;
      i{
          vertical-align: middle;
          font-size: $bigger-font-size;
      }
  }*/ }
  .resources .results {
    width: 100%;
    display: table; }
    .resources .results .visualization {
      display: table-cell;
      vertical-align: top;
      width: 70%; }
      .resources .results .visualization header {
        display: table;
        width: 100%;
        background-color: transparent; }
        .resources .results .visualization header .layout {
          display: table-cell;
          vertical-align: middle;
          width: 50px;
          height: 50px; }
          .resources .results .visualization header .layout .selector {
            position: relative;
            width: 40px;
            height: 40px;
            margin: 5px;
            opacity: 0.6;
            border: 1px solid transparent;
            border-radius: 2px;
            text-align: center;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out; }
            .resources .results .visualization header .layout .selector i {
              position: absolute;
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-50%, -50%);
              -moz-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              -o-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              font-size: 25px;
              line-height: 1em; }
            .resources .results .visualization header .layout .selector:hover {
              opacity: 1;
              background-color: #FFFFFF;
              border-color: #DDDDDD; }
        .resources .results .visualization header .path {
          display: table-cell;
          vertical-align: middle;
          width: auto;
          padding: 10px 20px; }
          .resources .results .visualization header .path .path-part {
            display: inline-block;
            padding: 5px;
            opacity: 0.6;
            border: 1px solid transparent;
            border-radius: 2px;
            cursor: pointer;
            -webkit-transition: all 0.2s ease-out;
            -moz-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out; }
            .resources .results .visualization header .path .path-part:hover {
              opacity: 1;
              background-color: #FFFFFF;
              border-color: #DDDDDD; }
            .resources .results .visualization header .path .path-part:last-child {
              opacity: 1;
              font-weight: bold; }
      .resources .results .visualization .folder thead th {
        height: 46px; }
        .resources .results .visualization .folder thead th.modified, .resources .results .visualization .folder thead th.size, .resources .results .visualization .folder thead th.type {
          text-align: center;
          width: 100px; }
        .resources .results .visualization .folder thead th.size {
          width: 120px; }
      .resources .results .visualization .folder tbody tr.no-results {
        background-color: #FFFFFF; }
        .resources .results .visualization .folder tbody tr.no-results td {
          text-align: center; }
      .resources .results .visualization .folder tbody tr.resource {
        background-color: #FFFFFF;
        cursor: pointer; }
        .resources .results .visualization .folder tbody tr.resource:hover {
          background-color: #EEEEEE; }
        .resources .results .visualization .folder tbody tr.resource.selected {
          color: #FFFFFF;
          background-color: #4285F4; }
        .resources .results .visualization .folder tbody tr.resource td {
          padding: 10px 20px; }
          .resources .results .visualization .folder tbody tr.resource td i {
            margin-right: 10px;
            vertical-align: middle;
            font-size: 1.6em; }
          .resources .results .visualization .folder tbody tr.resource td.modified, .resources .results .visualization .folder tbody tr.resource td.size, .resources .results .visualization .folder tbody tr.resource td.type {
            text-align: center; }
    .resources .results aside {
      display: table-cell;
      vertical-align: top;
      width: 30%;
      padding-top: 50px;
      padding-left: 20px; }
      .resources .results aside .content-aside {
        background-color: #FFFFFF;
        border: 1px solid #DDDDDD; }
      .resources .results aside h3 {
        display: table;
        width: 100%;
        padding: 10px;
        background-color: #232B2D;
        color: #FFFFFF;
        text-align: left;
        font-size: 1.2em;
        line-height: 1.2em;
        word-break: break-all; }
        .resources .results aside h3 i {
          display: table-cell;
          vertical-align: middle;
          padding-right: 10px;
          font-size: 1.6em; }
          .resources .results aside h3 i.fa-cloud-download {
            padding-left: 10px;
            padding-right: 0;
            color: #FFFFFF; }
        .resources .results aside h3 a {
          display: table-cell;
          vertical-align: middle; }
          .resources .results aside h3 a i {
            display: inline; }
        .resources .results aside h3 p {
          display: table-cell;
          width: 100%;
          vertical-align: middle; }
      .resources .results aside .file {
        background-color: #232B2D;
        text-align: center; }
        .resources .results aside .file img {
          max-height: 250px; }
        .resources .results aside .file audio {
          width: 100%; }
        .resources .results aside .file video {
          width: 100%;
          max-height: 250px; }
      .resources .results aside .admin-form {
        margin: 0;
        padding: 0; }
        .resources .results aside .admin-form p {
          padding: 0; }
        .resources .results aside .admin-form .input {
          padding: 0; }
          .resources .results aside .admin-form .input input,
          .resources .results aside .admin-form .input textarea {
            padding: 5px 10px;
            font-size: 14px; }
      .resources .results aside .actions {
        padding: 10px 20px;
        text-align: right; }
        .resources .results aside .actions .button {
          float: none;
          padding: 5px 10px;
          margin: 0 0 0 5px;
          font-size: 0.8em; }
          .resources .results aside .actions .button.link {
            display: none; }
      .resources .results aside .info {
        width: 100%;
        margin-bottom: 0;
        border: none;
        box-shadow: none; }
        .resources .results aside .info tr {
          background-color: #FFFFFF; }
          .resources .results aside .info tr.location p {
            width: 250px;
            overflow: hidden;
            word-break: break-all; }
        .resources .results aside .info td {
          padding: 10px 20px; }
          .resources .results aside .info td.property {
            width: 150px;
            font-weight: bold; }

/**
 * INCLUDE FORM MEDIA BLOCK STYLES
 */
.media-block h3 {
  margin-bottom: 0; }
.media-block .links {
  width: 100%;
  text-align: center;
  padding: 10px 0; }
  .media-block .links .link {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #AAAAAA;
    background-color: #FFFFFF;
    color: #666666;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8em;
    font-weight: 600; }
    .media-block .links .link:hover {
      border-color: #232B2D;
      background-color: #232B2D;
      color: #FFFFFF; }
.media-block .file {
  position: relative;
  display: block;
  text-align: center; }
  .media-block .file img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%; }
  .media-block .file audio {
    width: 100%; }
  .media-block .file video {
    width: 100%;
    max-height: 250px; }
  .media-block .file .links .link {
    background-color: #FFFFFF;
    color: #151A1C; }
    .media-block .file .links .link:hover {
      background-color: #151A1C;
      color: #FFFFFF; }
  .media-block .file.normal {
    display: table;
    width: 100%;
    color: #FFFFFF;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .media-block .file.normal:hover {
      background-color: #666666; }
    .media-block .file.normal a {
      display: table-cell;
      padding: 10px;
      color: #FFFFFF;
      text-align: left; }
    .media-block .file.normal .links {
      display: table-cell;
      width: 200px;
      padding: 10px;
      text-align: right; }
  .media-block .file.image {
    height: 250px; }
    .media-block .file.image .links {
      position: absolute;
      bottom: 10px;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      -o-transform: translateX(-50%);
      transform: translateX(-50%); }
.media-block.gallery .file {
  width: -webkit-calc(50% - 20px);
  width: calc(50% - 20px);
  display: block;
  float: left;
  margin: 10px; }
  .media-block.gallery .file .links {
    bottom: 20px; }

.media-viewport {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #F1F1F1;
  padding: 10px 10px 10px 320px;
  z-index: 9;
  overflow-y: scroll; }
  .media-viewport header {
    background-color: transparent;
    border: none; }
  .media-viewport .results aside .actions .button.delete {
    display: none; }
  .media-viewport .results aside .actions .button.link {
    display: inline-block; }

/*----------------------------
    The file upload form
-----------------------------*/
#upload {
  font-family: "Assistant", sans-serif;
  background-color: #333;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

#drop {
  background-color: #2E3134;
  margin-bottom: 20px;
  border: 20px solid rgba(0, 0, 0, 0);
  border-image: url("../neo/media_manager/img/file-uploader/border-image.png") 25 repeat;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF; }

#drop a {
  background-color: #007a96;
  padding: 12px 26px;
  color: #fff;
  font-size: 14px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  margin-top: 12px;
  line-height: 1; }

#drop a:hover {
  background-color: #0986a3; }

#drop input {
  display: none; }

#upload ul {
  list-style: none;
  padding: 0;
  margin: 0 -20px;
  border-top: 1px solid #2b2e31;
  border-bottom: 1px solid #3d4043; }

#upload ul li {
  background-color: #333639;
  background-image: -webkit-linear-gradient(top, #333639, #303335);
  background-image: -moz-linear-gradient(top, #333639, #303335);
  background-image: linear-gradient(top, #333639, #303335);
  border-top: 1px solid #3d4043;
  border-bottom: 1px solid #2b2e31;
  padding: 15px;
  height: 80px;
  position: relative; }

#upload ul li input {
  display: none; }

#upload ul li p {
  width: 250px;
  overflow: hidden;
  white-space: nowrap;
  color: #EEE;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 100px; }

#upload ul li i {
  font-weight: normal;
  font-style: normal;
  color: #7f7f7f;
  display: block; }

#upload ul li canvas {
  top: 15px;
  left: 32px;
  position: absolute; }

#upload ul li span {
  width: 15px;
  height: 12px;
  background: url("../neo/media_manager/img/file-uploader/icons.png") no-repeat;
  position: absolute;
  top: 34px;
  right: 33px;
  cursor: pointer; }

#upload ul li.working span {
  height: 16px;
  background-position: 0 -12px; }

#upload ul li.error p {
  color: red; }

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