@charset "UTF-8";
/* Vezi și https://v4-alpha.getbootstrap.com/utilities */
.mt-0 {
  margin-top: 0 !important; }

.mt-1 {
  margin-top: 2px !important; }

.mt-2 {
  margin-top: 5px !important; }

.mt-3 {
  margin-top: 10px !important; }

.mt-23 {
  margin-top: 23px !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-1 {
  margin-bottom: 5px !important; }

.mb-2 {
  margin-bottom: 5px !important; }

.mb-3 {
  margin-bottom: 10px !important; }

.ml-0 {
  margin-left: 0 !important; }

.ml-1 {
  margin-left: 2px !important; }

.ml-2 {
  margin-left: 5px !important; }

.padding-10 {
  padding: 10px; }

.pt-0 {
  padding-top: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.space-minimum {
    height: 8px;
    margin: 8px;
}

.space-small {
/*  height: 10px;*/
margin: 10px; }

.space-medium {
  height: 20px;
  margin: 20px; }

.space-large {
  height: 30px;
  margin: 30px; }

.mx-auto {
  margin-left: auto;
  margin-right: auto; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.truncate-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.more-less {
  margin-left: 3px;
  margin-right: 8px; }

.text-line-through {
  text-decoration: line-through; }

.panel-condensed .panel-heading {
  padding-top: 0px;
  padding-bottom: 0px; }

.panel-condensed .panel-body {
  padding-top: 3px;
  padding-bottom: 3px; }

.panel-condensed .panel-footer {
  padding-top: 0px;
  padding-bottom: 0px; }

.panel.without-padding .panel-heading {
  padding: 0 0; }

.panel.without-padding .panel-body {
  padding: 0 0; }

.panel.without-padding .panel-footer {
  padding: 0 0; }

.panel-default.pale-background {
  background-color: rgba(255, 255, 255, 0.5); }

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
  border: none; }

table.table-lightborders {
  border: 2px solid lightgray;
  padding: 2px; }
  table.table-lightborders tbody tr {
    border: 1px solid lightgray;
    padding: 2px; }

.modal-lg-responsive {
  width: 90%; }

.scrollable-container {
    overflow-y: auto;
    overflow-x: hidden;
}

.scrollable-container.height-360 {
        max-height: 360px;
}

.form-group.required .control-label:after {
  content: " *";
  color: red; }

.form-group.required .checkbox label:after {
  content: " *";
  color: red; }

.spinner-cloak {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: .5;
  background-color: darkslategray;
  z-index: 1000;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .spinner-cloak .my-spinner-container {
    position: absolute;
    width: 100%;
    top: 50%;
    text-align: center; }
    .spinner-cloak .my-spinner-container .my-spinner {
      display: inline-block;
      border: 16px solid #f3f3f3;
      /* Light grey */
      border-top: 16px solid #3498db;
      /* Blue */
      border-radius: 50%;
      width: 120px;
      height: 120px;
      animation: spin 1s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.table-fixed {
  width: 100%; }
  .table-fixed tbody {
    height: 200px;
    overflow-y: auto;
    width: 100%; }
  .table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th {
    display: block; }
  .table-fixed tbody td {
    float: left; }
  .table-fixed thead tr th {
    float: left; }

.popup-cloak {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 100, 100, 0.5);
  z-index: 5000;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }
  .popup-cloak .popup-container {
    position: absolute;
    width: 100%;
    top: 10%; }
    .popup-cloak .popup-container .popup .modal-dialog {
      width: 80%; }

.preserve-whitespace {
  white-space: pre-line; }

/* styles for '...' */
.truncate-multiline-text {
  /* hide text if it more than N lines  */
  overflow: hidden;
  /* for set '...' in absolute position */
  position: relative;
  /* use this value to count block height */
  line-height: 1.2em;
  /* max-height = line-height (1.2) * lines max number (3) */
  max-height: 3.6em;
  /* fix problem when last visible word doesn't adjoin right side  */
  text-align: justify;
  /* place for '...' */
  margin-right: -1em;
  padding-right: 1em; }

/* create the ... */
.truncate-multiline-text:before {
  /* points in the end */
  content: '...';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of block */
  bottom: 0;
  right: 1em;
  background-color: white; }

/* hide ... if we have text, which is less than or equal to max lines */
.truncate-multiline-text:after {
  /* points in the end */
  content: '';
  /* absolute position */
  position: absolute;
  /* set position to right bottom corner of text */
  right: 0;
  /* set width and height */
  width: 1em;
  height: 1em;
  margin-top: 0.2em;
  /* bg color = bg color under block */
  background: white; }

.my-clickable {
  cursor: pointer; }

.my-location-button {
  margin-right: 10px; }

hr.separator-thick {
  border: 8px solid #ecf0f1; }

.badge-warning {
  background-color: #F39C12; }

.badge-success {
  background-color: #18BC9C; }

.break-word {
  word-wrap: break-word; }

html {
  min-height: 100%; }

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh; }

.btn {
  white-space: normal !important;
  word-wrap: break-word;
  word-break: normal; }

.alert {
  margin-bottom: 5px;
  padding-top: 5px;
  padding-bottom: 5px; }

.toast-top-full-width {
  top: 80px; }

.pagination {
  margin: 5px; }

.table {
  margin-bottom: 5px; }

table tr.selectable {
  cursor: pointer; }

h4, h5 {
  margin-top: 5px;
  margin-bottom: 5px; }

.form-horizontal .checkbox {
  padding-top: 0; }

.validation-summary-errors ul {
  list-style: none;
  padding: 0; }

form legend {
  margin-bottom: 8px;
  font-size: 18px;
  border-bottom: 2px solid #e2dcdc; }

form .form-group.required .control-label:after {
  content: " *";
  color: red; }

.my-dropzone {
  border: none;
  background-color: darkslategrey;
  border-radius: 5px;
  padding: 10px 15px;
  min-height: 45px;
  width: 48px; }
  .my-dropzone .dz-message {
    cursor: pointer;
    width: 100%;
    border-radius: 16px;
    margin: 0px; }

.my-dropzone.disabled {
  pointer-events: none;
  cursor: default; }
  .my-dropzone.disabled .dz-message {
    color: lightgrey; }

.my-file-chooser {
  /*button {
        vertical-align: middle;
    }*/ }

a:visited.my-file-for-back-office {
    color: #318CE7;
}

.my-attachments-list ul.attachments-list {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  .my-attachments-list ul.attachments-list li {
    display: inline;
    margin-right: 10px; }

.my-form-smaller label {
  font-weight: normal;
  font-size: 12px; }

.my-alerts {
  white-space: pre; }

.form-error-alert {
  padding-top: 10px;
  padding-bottom: 15px;
  font-size: larger; }

.breadcrumb-wrapper {
  font-size: large; }

/*Select2 ReadOnly Start*/
select[readonly].select2-hidden-accessible + .select2-container {
  pointer-events: none;
  touch-action: none; }

select[readonly].select2-hidden-accessible + .select2-container .select2-selection {
  background: #eee;
  box-shadow: none; }

select[readonly].select2-hidden-accessible + .select2-container .select2-selection__arrow, select[readonly].select2-hidden-accessible + .select2-container .select2-selection__clear {
  display: none; }

/*Select2 ReadOnly End*/
.checkbox.readonly {
  cursor: not-allowed;
  pointer-events: none; }

body {
  background-color: #F5FAFC; }

.is-auth .hide-if-auth {
  position: absolute !important;
  top: -1000px !important; }

.is-not-auth .hide-if-auth {
  position: relative !important;
  top: auto !important; }

.is-not-auth .hide-if-not-auth {
  position: absolute !important;
  top: -1000px !important; }

.show-if-clerk {
  position: absolute !important;
  top: -1000px !important; }

.show-if-citizen {
  position: absolute !important;
  top: -1000px !important; }

.show-if-admin {
  position: absolute !important;
  top: -1000px !important; }

.show-if-developer {
  position: absolute !important;
  top: -1000px !important; }

.has-role-clerk .show-if-clerk {
  position: relative !important;
  top: auto !important; }

.has-role-clerk .hide-if-clerk {
  position: absolute !important;
  top: -1000px !important; }

.has-role-citizen .show-if-citizen {
  position: relative !important;
  top: auto !important; }

.has-role-admin .show-if-admin {
  position: relative !important;
  top: auto !important; }

.has-role-developer .show-if-developer {
  position: relative !important;
  top: auto !important; }

.show-if-has-permission-to-view-proiecte-hcl {
    position: absolute !important;
    top: -1000px !important;
}

.has-role-proiecte-hcl .show-if-has-permission-to-view-proiecte-hcl {
    position: relative !important;
    top: auto !important;
}

.is-pf {
    color:lightseagreen;
}

.is-pj {
    color: mediumvioletred;
}

input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-calendar-picker-indicator {
  display: none; }

.input-group-address .input-group-addon {
  font-size: 13px; }

.panel-active-filters .active-filter {
  font-size: 12px;
  margin-right: 8px;
  margin-bottom: 8px; }

.panel-active-filters-street .active-filter-street {
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.logout-button-container {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 12px; }

.choose-from-private-space .attachment:not(.active):hover {
  background-color: #ecf0f1; }

.payment-total-amount-container {
  margin-top: 15px;
  padding: 15px;
  font-size: xx-large;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px; }

.discussion-view .message {
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  font-size: 15px;
}

.discussion-view .message .message-body {
  white-space: pre-line;
}

.discussion-view .attachment {
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  font-size: 15px;
}

.discussion-view .mine .message {
  background-color: #b8e2fc;
  color: black;
}

.discussion-view .mine .attachment {
  background-color: #e9f6fe;
}

.discussion-view .not-mine .message {
  background-color: #d4dfed;
  color: black;
}

.discussion-view .not-mine .message.unseen {
  background-color: lightcoral;
  color: black;
}

.discussion-view .not-mine .attachment {
  background-color: #f8fafc;
}

.discussion-view .not-mine .attachment.unseen {
    background-color: lightcoral;
    color: black;
}

.discussion-view .new-messages-delimiter {
    border-top: 3px solid lightcoral;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    color: lightcoral;
}

.discussion-view .btn-mark-seen {
    background-color: lightcoral;
    color: black;
    margin: 10px;
    margin-right: 20px;
}

.discussion-view .my-dropzone {
    height: 100%;
    width: auto;
    font-size: 32px;
    line-height: 40px;
}

.my-attachment-panel table td {
  padding: 2px; }

.my-attachment-panel .my-attachment-details {
  padding-left: 5px; }
  .my-attachment-panel .my-attachment-details .my-attachment-title .attachment-mark-required {
    color: darkred; }
  .my-attachment-panel .my-attachment-details .my-attachment-title .attachment-mark-signature-required {
    color: sandybrown; }

.my-json-editor {
  border: 2px solid lightgray;
  margin-top: 10px;
  margin-bottom: 10px; }
  .my-json-editor div[data-schemaid="root"] > div:first-of-type {
    overflow: auto;
    border: none !important; }
  .my-json-editor table, .my-json-editor th, .my-json-editor td {
    border: 2px solid lightgray;
    padding: 2px; }

.permalink {
  cursor: pointer; }

.frontoffice-process-create .form-group.required .control-label:after {
  content: "";
  color: red; }

.logs-container .log-error {
  padding-top: 5px;
  background-color: #ffae42; }

.logs-container hr {
  border: none;
  height: 4px;
  background-color: black; }

.logs-container pre {
  font-size: small; }

.tab-situatie-fiscala {
  margin-top: 10px;
  font-size: 14pt;
  text-transform: uppercase; }

.checkbox-situatie-fiscala {
  text-align: center !important;
  vertical-align: middle !important; }

.checkbox-situatie-fiscala input[type=checkbox] {
  transform: scale(1.7); }

.checkbox-situatie-fiscala label {
  padding-left: 5px; }

.cert-title {
  color: #DA291C;
  text-decoration: none;
}
.cert-title:hover {
    color: #3498db;
    text-decoration: none;
}

.cert-icon {
  display: flex;
  justify-content: center; }

.auth-unified #LoginAccordion {
  min-height: 400px; }

.auth-unified .toggle-button {
  color: #2C3E50; }

.auth-unified .auth-icon {
  font-size: 36px; }

.auth-unified .input-icon {
  min-width: 16px; }

.auth-unified a[aria-expanded=false] .auth-icon {
  color: #b4bcc2; }

.auth-unified a[aria-expanded=false] .auth-description, .auth-by-certme {
  color: #b4bcc2; }

.auth-unified a[aria-expanded=true] .toggle-button, .auth-unified a[aria-expanded=true] .auth-icon, .auth-unified a[aria-expanded=true] .auth-title, .auth-unified a:hover .toggle-button, .auth-unified a:hover .auth-icon, .auth-unified a:hover .auth-title {
  color: #3498DB; }

.verification-badge {
  padding: 8px; }

.my-embedded-map .map {
  height: 800px; }

.dashboard .cards-container {
  padding: 15px;
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-template-rows: max-content;
  grid-column-gap: 10px;
  grid-row-gap: 10px; }
  .dashboard .cards-container .card {
    display: flex;
    flex-direction: column; }
    .dashboard .cards-container .card .panel-body {
      flex-grow: 1; }
    .dashboard .cards-container .card .card-title {
      font-weight: bolder; }
    .dashboard .cards-container .card .panel-footer {
      width: 100%; }
    .dashboard .cards-container .card .card-goto-more {
      text-transform: uppercase;
      font-size: x-small; }
  .dashboard .cards-container .main-icon {
    font-size: 72px;
    flex-grow: 1.5; }
  .dashboard .cards-container .more-items {
    font-size: 48px; }
  .dashboard .cards-container .card-ref {
    color: black;
    text-decoration: none; }

.frontoffice-step.has-role-citizen.CommonStepSimpleCitizen .process-link, .frontoffice-step.has-role-citizen.CommonStepSimpleOrganization .process-link {
  display: none; }

.frontoffice-step.has-role-citizen .step-title {
  display: none; }

.star::after {
    content: " *";
    color: red;
}

.wizard p {
    padding: 10px 12px 10px;
    margin-right: 5px;
    background: #efefef;
    position: relative;
    display: inline-block;
}

    .wizard p:before {
        width: 0;
        height: 0;
        border-top: 20px inset transparent;
        border-bottom: 20px inset transparent;
        border-left: 20px solid #fff;
        position: absolute;
        content: "";
        top: 0;
        left: 0;
    }

    .wizard p:after {
        width: 0;
        height: 0;
        border-top: 20px inset transparent;
        border-bottom: 20px inset transparent;
        border-left: 20px solid #efefef;
        position: absolute;
        content: "";
        top: 0;
        right: -20px;
        z-index: 2;
    }

    .wizard p:first-child:before, .wizard p:last-child:after {
        border: none;
    }

    .wizard p:first-child {
        -webkit-border-radius: 4px 0 0 4px;
        -moz-border-radius: 4px 0 0 4px;
        border-radius: 4px 0 0 4px;
    }

    .wizard p:last-child {
        -webkit-border-radius: 0 4px 4px 0;
        -moz-border-radius: 0 4px 4px 0;
        border-radius: 0 4px 4px 0;
    }

.wizard .badge {
    margin: 0 5px 0 18px;
    position: relative;
    top: -1px;
}

.wizard p:first-child .badge {
    margin-left: 0;
}

.wizard .current {
    background: #3498db;
    color: #fff;
}

    .wizard .current:after {
        border-left-color: #3498db;
    }

.mywizard li {
    position: relative;
    background: #f5f5f5;
    padding-right: 30px;
    padding-left: 5px;
}

    .mywizard li p:after, .mywizard li p:before {
        left: 100%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .mywizard li p:after {
        border-color: rgba(245, 245, 245, 0);
        border-left-color: #f5f5f5;
        border-width: 20px;
        top: 50%;
        margin-top: -20px;
        margin-left: -30px;
    }

    .mywizard li p:before {
        border-color: rgba(255, 255, 255, 0);
        border-left-color: #fff;
        border-width: 30px;
        top: 50%;
        margin-top: -30px;
        margin-left: -30px;
    }

    .mywizard li .badge {
        vertical-align: text-bottom;
        padding-top: 3px;
    }

.badgeMessages {
    position: relative;
    padding: 3px 5px;
    background-color: red;
    color: white;
    font-size: 11px;
    border-radius: 50%;
    top: -8px;
    right: -2px;
}


.container_youtube {
    max-width: 1200px;
    width: 100%;
    margin: 20px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.year-group {
    margin-bottom: 40px;
}

.year-title {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.video-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.video-content {
    padding: 15px;
}

.video-title {
    font-size: 1.1em;
    color: #333;
    text-decoration: none;
    margin: 0 0 10px;
    display: block;
}

.video-details {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.alert-info-existing-process {
    background-color: #3498db;
    border-color: #3498db;
    color: #ffffff;
}



