
/* ////////////////////
INITS
//////////////////// */
.color {
    color: var(--pl-brand-primary);
}

/* ////////////////////
ACTIVITATS
//////////////////// */
.mt-2 { margin-top: .8rem; }
.select-table { width: 100%; }
.hide { display: none; }
.break-word { }
@supports (word-break: break-word) {
    .break-word { word-break: break-word; }
}
.min-width-80 { min-width: 80px; }
.min-width-40 { min-width: 40px; }
.width-desc { min-width: 300px; max-width: 300px; }
table.dataTable thead .sorting, 
table.dataTable thead .sorting_asc, 
table.dataTable thead .sorting_desc, 
table.dataTable thead .sorting_asc_disabled, 
table.dataTable thead .sorting_desc_disabled{
    background-position-y: 10px !important;
}

/* ////////////////////
SEARCHS
//////////////////// */
/* liveSearchForm */
input[type="text"].form-control[disabled] {
    background-color: #ddd;
    border-color: #b2b2b2;
}
.btn[disabled] {
    opacity: 1;
    background-color: #ddd;
    border-color: #b2b2b2;
    color: #b2b2b2;
}
@media (max-width: 1200px) {
    .liveSearchForm {
        flex-direction: column !important;
    }
}
/* streets-tag */
#streets-tag {
    position: relative;
}
.dropdown-suggestions {
    position: absolute;
    /* top: 100%;*/
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 220px;
    overflow-y: auto;
    margin: 0; 
}
.dropdown-suggestions li {
    padding: 8px 12px;
    cursor: pointer;
}
.dropdown-suggestions li:hover {
    background-color: #f5f5f5;
}

/* ////////////////////
RESULTS
//////////////////// */
.newsItem__info .needs {
    background-color: #eee;
    border-radius: 4px;
}
.zona-results__list {
    display: flex;
    flex-direction: column;
    gap:2.5rem;
}
/*spinner de carrers*/
body.template-import_zones_cp_view .picto-spin6 {
    display: inline-block;
    animation: spin 1s linear infinite;
    font-size: 1.2em;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.newsItem__text {
    box-shadow: 
    0 0 2px rgba(119,119,119,0.08),
    0 1px 4px rgba(119,119,119,0.12),
    0 2px 8px rgba(119,119,119,0.16),
    0 4px 16px rgba(119,119,119,0.2);
    margin: 0 !important;
}

/* ////////////////////
IMPORTS
//////////////////// */
#import_content {
    margin-top: 5rem;
}
#import_content .liveSearchForm .formControls {
    background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  position: absolute;
  bottom: -2.5rem;
  right: 2rem;
}
#import_content .formControls label {
    font-family: "Open Sans",sans-serif;
  font-weight: 400;
  font-size: 12px;
  font-size: var(--pl-size-small);
  letter-spacing: .02em;
  line-height: 1.25;
}
#import_content .formControls input {
  display: inline-block;
  padding: 15px 24px 16px;
  margin-bottom: 0;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid var(--pl-brand-primary);
  border-radius: 2px;
  background-color: var(--pl-brand-primary);
  color: var(--pl-white);
  font-family: Palanquin, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.25;
  user-select: none;
  touch-action: manipulation;
  transition: background-color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
#import_content .formControls input:hover,
#import_content .formControls input:focus {
  background-color: var(--pl-black);
  border-color: #37363b;
  color: var(--pl-white);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
