/*FONTS*/
@font-face {
  font-family: 'ceragr-light';
  src: url("../fonts/cera-gr-light-webfont.woff2") format("woff2"), url("../fonts/cera-gr-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ceragr-medium';
  src: url("../fonts/cera-gr-medium-webfont.woff2") format("woff2"), url("../fonts/cera-gr-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ceragr-regular';
  src: url("../fonts/cera-gr-webfont.woff2") format("woff2"), url("../fonts/cera-gr-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'ceragr-bold';
  src: url("../fonts/cera-gr-bold-webfont.woff2") format("woff2"), url("../fonts/cera-gr-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

.header-backoffice-component {
  height: 60px;
  min-height: auto;
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  padding: 0; }
  .header-backoffice-component .header-session-info {
    color: #323132;
    margin-left: auto;
    display: flex;
    align-items: center; }
    .header-backoffice-component .header-session-info span {
      margin-right: 10px; }
      .header-backoffice-component .header-session-info span.logout-link {
        cursor: pointer;
        margin-right: 30px;
        text-decoration: underline;
        font-size: 12px;
        margin-left: 15px; }

.sidebar-component {
  background-color: #ffffff;
  max-width: 300px;
  width: 200px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  font-weight: bolder;
  border-right: 1px solid #ced3d9; }
  .sidebar-component .sidebar-banner {
    width: 170px;
    height: 50px;
    padding: 10px;
    margin: auto; }
    .sidebar-component .sidebar-banner img {
      cursor: pointer;
      display: block;
      width: 100%; }
  .sidebar-component .sidebar-menu {
    margin-top: 65px;
    padding: 0 30px; }
    .sidebar-component .sidebar-menu .sidebar-menu-item {
      background-color: transparent;
      margin: 25px 0; }
      .sidebar-component .sidebar-menu .sidebar-menu-item .item-openable {
        cursor: pointer; }
    .sidebar-component .sidebar-menu ul {
      list-style: none;
      padding: 0 0 0 5px; }
      .sidebar-component .sidebar-menu ul li {
        cursor: pointer;
        margin: 30px 0; }
        .sidebar-component .sidebar-menu ul li a {
          color: #323132;
          font-weight: 500;
          text-decoration: none; }
          .sidebar-component .sidebar-menu ul li a:hover {
            text-decoration: none; }
          .sidebar-component .sidebar-menu ul li a.selected {
            font-weight: bold; }
        .sidebar-component .sidebar-menu ul li.sub-menu-parent .glyphicon {
          color: #323132;
          font-size: 12px;
          margin-left: 2px; }
        .sidebar-component .sidebar-menu ul li.sub-menu-parent .sub-menu {
          margin-left: 15px; }
          .sidebar-component .sidebar-menu ul li.sub-menu-parent .sub-menu .sub-menu-item {
            margin: 5px 0; }
        .sidebar-component .sidebar-menu ul li.sub-menu-parent:not(.opened-sub-menu) .sub-menu {
          display: none; }

.dashboard-view {
  position: fixed;
  background: #f2f3f4;
  height: 100%;
  width: 100%;
  z-index: 1; }
  .dashboard-view .dashboard-body {
    position: absolute;
    height: calc(100% - 60px);
    width: calc(100% - 220px);
    bottom: 0;
    right: 0;
    padding-right: 40px;
    overflow: auto;
    padding-bottom: 60px; }
    .dashboard-view .dashboard-body h3 {
      margin: 45px 0 15px 6px; }
    .dashboard-view .dashboard-body .bolder-text {
      font-weight: bold; }
    .dashboard-view .dashboard-body .nav-page {
      display: flex;
      position: fixed;
      left: 210px;
      bottom: 30px; }
      .dashboard-view .dashboard-body .nav-page .nav-prev,
      .dashboard-view .dashboard-body .nav-page .nav-next {
        cursor: pointer;
        margin-right: 15px;
        background-color: white;
        height: 45px;
        width: 45px;
        display: flex;
        border-radius: 100%;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        transition: 0.5s all;
        justify-content: center;
        align-items: center; }
        .dashboard-view .dashboard-body .nav-page .nav-prev.disabled-page-nav,
        .dashboard-view .dashboard-body .nav-page .nav-next.disabled-page-nav {
          opacity: 0.5;
          cursor: default; }
        .dashboard-view .dashboard-body .nav-page .nav-prev .glyphicon,
        .dashboard-view .dashboard-body .nav-page .nav-next .glyphicon {
          height: 14px;
          top: -2px; }
    .dashboard-view .dashboard-body .content_table .dropdown-menu a {
      color: #323132;
      text-decoration: none; }
    .dashboard-view .dashboard-body .action-menu-row {
      margin-left: auto;
      display: block;
      width: 38px;
      height: 30px; }
      .dashboard-view .dashboard-body .action-menu-row .btn-menu {
        border: none;
        background-color: transparent;
        box-shadow: none; }
      .dashboard-view .dashboard-body .action-menu-row .dropdown-menu {
        right: 0;
        left: auto;
        box-shadow: none; }
  .dashboard-view .add-item-icon,
  .dashboard-view .export-item-icon {
    background-color: #323132;
    height: 45px;
    width: 45px;
    display: flex;
    border-radius: 100%;
    cursor: pointer;
    position: fixed;
    right: 30px;
    bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 0.5s all;
    z-index: 10000; }
    .dashboard-view .add-item-icon:hover,
    .dashboard-view .export-item-icon:hover {
      background-color: #f2f3f4;
      color: #323132; }
      .dashboard-view .add-item-icon:hover .glyphicon,
      .dashboard-view .export-item-icon:hover .glyphicon {
        color: #323132; }
    .dashboard-view .add-item-icon .glyphicon,
    .dashboard-view .export-item-icon .glyphicon {
      color: #ffffff;
      display: block;
      margin: auto;
      width: 18px;
      height: 22px;
      font-size: 18px; }
  .dashboard-view .disabled-release span.text-content,
  .dashboard-view .disabled-report span.text-content,
  .dashboard-view .disabled-user span.text-content {
    opacity: 0.5; }
  .dashboard-view .cell-img img {
    width: 48px; }

.form-component {
  padding: 0 2px;
  margin-bottom: 50px; }
  .form-component .row {
    margin-left: 0;
    margin-right: 0; }
  .form-component .form-input-body {
    display: flex;
    flex-wrap: wrap; }
  .form-component .input-group .input-group-addon {
    background: transparent;
    border: 0; }
  .form-component .input-group-wrap {
    display: flex;
    flex-direction: column; }
  .form-component select option {
    width: 100%; }
  .form-component .button-group {
    display: flex; }
    .form-component .button-group .button {
      margin-right: 10px;
      max-width: 150px; }
  .form-component .p-description {
    margin: 7.5px 0; }
  .form-component .input-no-border {
    border: 0;
    box-shadow: none; }
  .form-component .btn-submit {
    margin-right: 20px;
    border-color: #323132; }
    .form-component .btn-submit:hover, .form-component .btn-submit:focus {
      outline: none; }
  .form-component input[type='text'].form-control,
  .form-component input[type='date'].form-control,
  .form-component input[type='number'].form-control {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px; }
  .form-component input[type='file'] {
    padding-top: 7px;
    padding-bottom: 7px;
    height: auto; }
  .form-component textarea {
    resize: none; }
  .form-component textarea.textarea-noshadow {
    box-shadow: none; }
  .form-component .calendar-component {
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none; }
    .form-component .calendar-component div {
      outline: none; }
    .form-component .calendar-component table > thead > tr:first-child > th > button {
      background-color: transparent;
      border: none; }
    .form-component .calendar-component table .uib-day button,
    .form-component .calendar-component table .uib-month button,
    .form-component .calendar-component table .uib-year button {
      border-radius: 0;
      background-color: transparent; }
      .form-component .calendar-component table .uib-day button:active,
      .form-component .calendar-component table .uib-month button:active,
      .form-component .calendar-component table .uib-year button:active {
        color: red; }
    .form-component .calendar-component table .uib-day button.active,
    .form-component .calendar-component table .uib-month button.active,
    .form-component .calendar-component table .uib-year button.active {
      border: 1px solid black; }
      .form-component .calendar-component table .uib-day button.active span,
      .form-component .calendar-component table .uib-month button.active span,
      .form-component .calendar-component table .uib-year button.active span {
        color: black;
        font-weight: bold; }
  .form-component .error-message-container {
    color: #f44336;
    font-size: 13px; }

.spinner-loader-component {
  position: fixed;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0; }
  .spinner-loader-component .loader_content {
    display: inline-block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%); }

.toast.toast-info {
  background-color: #6f81ee; }

.toast.toast-success {
  background-color: #51c5c2; }

.toast.toast-warning {
  background-color: #ffce0b; }

.toast.toast-error {
  background-color: #e53935; }

#toast-container > .toast {
  box-shadow: none;
  background-image: none !important;
  padding-left: 15px;
  border-radius: 4px;
  opacity: 0.9; }

.confirm-modal-component {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000; }
  .confirm-modal-component .confirm-modal-body {
    background: white;
    width: 30vw;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    transform: translate(-50%, -50%); }
    .confirm-modal-component .confirm-modal-body .btn {
      color: white;
      margin-right: 10px; }
      .confirm-modal-component .confirm-modal-body .btn.confirm {
        border: 1px solid #51c5c2;
        background-color: #51c5c2; }
      .confirm-modal-component .confirm-modal-body .btn.cancel {
        border: 1px solid #ef6f5d;
        background-color: #ef6f5d; }

.image-loader-component {
  height: 230px;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  margin: 15px 0;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: auto; }
  .image-loader-component .dz-preview {
    width: 20%;
    margin: 0 0 10px 10px;
    background: white;
    min-height: 250px;
    border-radius: 4px;
    position: relative;
    padding: 5px; }
    .image-loader-component .dz-preview .dz-image {
      padding: 10px 0; }
      .image-loader-component .dz-preview .dz-image img {
        display: block;
        margin: auto;
        width: 100%; }
    .image-loader-component .dz-preview .dz-details {
      text-align: center;
      margin-bottom: 10px; }
      .image-loader-component .dz-preview .dz-details .dz-filename span {
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 170px;
        display: block;
        text-align: center; }
    .image-loader-component .dz-preview .dz-error-mark {
      width: 25px;
      height: 25px;
      position: absolute;
      top: -10px;
      left: calc(100% - 15px);
      cursor: pointer; }
      .image-loader-component .dz-preview .dz-error-mark svg {
        height: 25px;
        width: 25px;
        border-radius: 100%;
        background-color: #ef6f5d; }
    .image-loader-component .dz-preview .dz-success-mark {
      display: none; }

.dropzone-media-kit {
  width: 100%;
  height: 65%;
  background: #90a4ae;
  border-radius: 4px;
  cursor: pointer;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  overflow: auto; }
  .dropzone-media-kit .dz-preview {
    width: 100%;
    padding: 20px 5px;
    max-height: 40%;
    border-radius: 4px;
    background-color: #f5f5f5;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap; }
    .dropzone-media-kit .dz-preview .dz-details {
      margin-left: 10px;
      word-wrap: break-word; }
    .dropzone-media-kit .dz-preview .dz-success-mark,
    .dropzone-media-kit .dz-preview .dz-error-mark {
      height: 52px;
      width: 52px;
      display: inline-block;
      margin: 10px 10px 0; }

.media-kit-view .media-kit-inputs {
  background: rgba(0, 0, 0, 0.05);
  padding: 10px;
  border-radius: 4px;
  height: 250px;
  overflow: auto; }
  .media-kit-view .media-kit-inputs .input-group {
    margin: 10px 0; }
  .media-kit-view .media-kit-inputs .add-input-action {
    margin: 20px 0 10px 0; }

.media-kit-view .media-kit-actions {
  margin-top: 15px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .media-kit-view .media-kit-actions .button {
    max-width: 250px; }
  .media-kit-view .media-kit-actions a {
    font-weight: bold; }

.login-view {
  height: 100vh;
  display: flex; }
  .login-view .banner-login {
    background: #ced3d9;
    height: 27.5%;
    width: 100%;
    position: absolute;
    display: flex; }
    .login-view .banner-login .banner-login-img {
      margin: auto;
      width: 170px;
      height: 50px; }
      .login-view .banner-login .banner-login-img img {
        width: 100%; }
  .login-view .login-body {
    width: 33.33%;
    margin: auto; }
    .login-view .login-body .input-group {
      margin: 20px 0;
      width: 100%; }
      .login-view .login-body .input-group input {
        border-radius: 2px;
        outline: none; }
        .login-view .login-body .input-group input:hover, .login-view .login-body .input-group input:focus, .login-view .login-body .input-group input:active {
          outline: none; }
      .login-view .login-body .input-group label {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase; }
      .login-view .login-body .input-group .input-group-login {
        width: 100%; }
        .login-view .login-body .input-group .input-group-login .btn-login {
          display: block;
          margin: auto;
          text-transform: uppercase;
          border: none;
          font-weight: bold;
          font-size: 14px;
          width: 250px; }
    .login-view .login-body .error-message {
      color: #e53935;
      font-size: 12px; }

body {
  font-family: 'ceragr-regular', sans-serif; }
