:root {
    --font-color: #575757;
    --activeColor: #575757;
    --activeColor7: rgb(87 87 87 / 0.07 );
    --activeColor15: rgb(87 87 87 / 0.15 );
    --activeColor40: rgb(87 87 87 / 0.4 );
    --activeColor80: rgb(87 87 87 / 0.8 );
    --white: #ffffff;
    --lightgrey: #FAFAFA;
    --mediumgrey: #EDEDED;
    --mediumgrey1: #D9D9D9;
    --mediumgrey2: #979797;
    --borderline: #E4E4E4;
    --brandblu1: #124FB9;
    --brandblu2: #005DFF;
    --sidebar-width: 350px;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--lightgrey);
    color: var(--font-color);
    overflow-x: hidden;
}

.btn.btn-primary{
    border:1px solid var(--white);
    background: var(--activeColor);
    color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}
.btn.btn-primary:hover{
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}

button.btn.btn-primary,
button.btn.btn-secondary,
a.btn.btn-primary,
a.btn.btn-secondary{
    padding:6px 12px;
}

.r20{
    border-radius: 20px;
}
.p20{
    padding: 20px;
}
.py20{
    padding: 20px 0;
}
.px20{
    padding: 0 20px;
}
.pl20,.ps20{
    padding-left: 20px;
}
.pl20,.pe20{
    padding-right: 20px;
}

.ba{
    border: 1px solid var(--borderline);
}
.bb{
    border-bottom: 1px solid var(--borderline);
}
.bt{
    border-top: 1px solid var(--borderline);
}

.no-bullets{
    list-style: none;
}
ul.no-style{
    list-style: none;
    padding: 0;
    margin: 0;
}
.linkAreaLabel{
    font-size: 13px;
    color: var(--mediumgrey2);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 20px;
}
a.icolnk{
    display: flex;
    text-decoration: none;
    color: var(--activeColor);
    margin: 1px 10px;
    padding: 3px 5px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

a.icolnk:hover, a.icolnk.active{
    background: var(--activeColor7);
    transition: all 0.3s ease-in-out;
}
a.icolnk.active:hover{
    background: var(--activeColor15);
    transition: all 0.3s ease-in-out;
}
a.icolnk .lnk_ico{
    width: 30px;
    font-size: 20px;
    flex: 0 0 auto;
    text-align: center;
}

a.icolnk .lnk_label{
    text-align: left;
    flex: 1 1 auto;
    padding-left: 7px;
    padding-top: 7px;
    font-size: 15px;
}
a.icolnk.doc .lnk_label{
    font-size: 13px;
    color: var(--mediumgrey2);
}
#sidebar{
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--lightgrey);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

#sidebar .topnavbar_body{
    border-right: 1px solid var(--borderline);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#sidebar .topnavbar_body .topnavbar_body_content{
    overflow-y: auto;
}
#sidebar .topnavbar_body .topnavbar_body_footer{
    border-top: 1px solid var(--borderline);
}

a.closerMenu{
    text-decoration: none;
    color: var(--activeColor);
    font-size: 22px;
    transition: all 0.3s ease-in-out;
}

#mainContent{
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    transition: all 0.3s ease-in-out;
}

.topnavbar{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 800;
    background: var(--white);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.07);
}

.topnavbar .topnavbar_content{
    width: 100%;
}

@media (max-width: 768px) {
    #sidebar{
        transform: translateX(-100%);
        width: 100%;
    }
    #sidebar.open{
        transform: translateX(0%);
    }
    #mainContent{
        margin-left: 0;
        width: 100%;
    }
}

/* Language Dropdown Styles */
.dropdown-toggle {
    border: 1px solid var(--borderline);
    color: var(--font-color);
    background-color: var(--white);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
    border-color: var(--activeColor40);
    box-shadow: 0 0 0 0.2rem var(--activeColor15);
    background-color: var(--white);
    color: var(--font-color);
}

.dropdown-menu {
    border: 1px solid var(--borderline);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding:0;
    margin-top: 4px;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--font-color);
    transition: all 0.3s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--activeColor7);
    color: var(--activeColor);
}

.dropdown-item i {
    color: var(--mediumgrey2);
}

/* User Dropdown Styles */
.user-dropdown-toggle {
    background: transparent;
    border: none;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    color: var(--font-color);
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.user-dropdown-toggle:hover,
.user-dropdown-toggle:focus {
    background-color: var(--activeColor7);
    color: var(--font-color);
    box-shadow: none;
    border: none;
}

.user-info {
    text-align: right;
    line-height: 1.2;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 2px;
}

.user-role {
    font-size: 12px;
    color: var(--mediumgrey2);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--mediumgrey);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    overflow: hidden;
}

.user-avatar i {
    font-size: 16px;
    color: var(--mediumgrey2);
}

.dropdown-arrow {
    font-size: 16px;
    color: var(--mediumgrey2);
    transition: transform 0.3s ease-in-out;
}

.user-dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    min-width: 180px;
    border: 1px solid var(--borderline);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0px;
    margin-top: 8px;
}

.user-dropdown-menu .dropdown-item {
    padding: 10px 16px;
    font-size: 14px;
    color: var(--font-color);
    transition: all 0.3s ease-in-out;
}

.user-dropdown-menu .dropdown-item:hover,
.user-dropdown-menu .dropdown-item:focus {
    background-color: var(--activeColor7);
    color: var(--activeColor);
}

.user-dropdown-menu .dropdown-divider {
    margin: 0;
    border-color: var(--borderline);
}

.user-dropdown-menu .dropdown-item i {
    color: var(--mediumgrey2);
    width: 16px;
}

/* More Dropdown Styles */
.more-dropdown {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.more-dropdown-menu {
    min-width: 120px;
    border: 1px solid var(--borderline);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 9999 !important;
    position: fixed !important;
    transform: translateX(-100%);
    margin-left: -8px;
}

/* Forza il posizionamento del dropdown menu */
.dropdown-menu.more-dropdown-menu.show {
    position: fixed !important;
    z-index: 9999 !important;
    display: block !important;
}

.more-dropdown-toggle {
    background: transparent;
    border: none;
    padding: 4px 8px;
    color: var(--mediumgrey2);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    line-height: 1;
}

.more-dropdown-toggle:hover,
.more-dropdown-toggle:focus {
    background-color: var(--activeColor7);
    color: var(--activeColor);
    box-shadow: none;
    border: none;
}

.more-dropdown-menu {
    min-width: 120px;
    border: 1px solid var(--borderline);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin-top: 4px;
}

.more-dropdown-menu .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--font-color);
    transition: all 0.3s ease-in-out;
}

.more-dropdown-menu .dropdown-item:hover,
.more-dropdown-menu .dropdown-item:focus {
    background-color: var(--activeColor7);
    color: var(--activeColor);
}

/* Ensure proper positioning for list items with dropdowns */
.position-relative {
    position: relative;
}

/* Adjust link styling to accommodate dropdown button */
.position-relative .icolnk {
    padding-right: 35px;
}

/* Custom Tabs Styles */
.custom-tabs {
    border: none;
    background-color: var(--lightgrey);
    border-radius: 12px;
    padding: 4px;
    display: inline-flex;
    gap: 2px;
}

.custom-tabs .nav-item {
    margin: 0;
}

.custom-tabs .nav-link {
    background-color: transparent;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--mediumgrey2);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    min-width: 60px;
    text-align: center;
}

.custom-tabs .nav-link:hover {
    background-color: var(--white);
    color: var(--font-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-tabs .nav-link.active {
    background-color: var(--activeColor);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(87, 87, 87, 0.2);
}

.custom-tabs .nav-link i {
    font-size: 16px;
}

/* Custom Form Inputs */
.custom-input,
.custom-textarea,
.custom-file-input,
.custom-select {
    border: 1px solid var(--borderline);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--font-color);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.custom-input:focus,
.custom-textarea:focus,
.custom-file-input:focus,
.custom-select:focus {
    border-color: var(--activeColor40);
    box-shadow: 0 0 0 0.2rem var(--activeColor15);
    outline: none;
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    color: var(--mediumgrey2);
}

.custom-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 8px;
}

.form-text {
    font-size: 12px;
    color: var(--mediumgrey2);
    margin-top: 4px;
}

/* Dropzone Styles */
.dropzone {
    border: 2px dashed var(--borderline);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dropzone:hover {
    border-color: var(--activeColor40);
    background-color: var(--activeColor7);
}

.dropzone.dragover {
    border-color: var(--brandblu2);
    background-color: rgba(0, 93, 255, 0.05);
    border-style: solid;
}

.dropzone-icon {
    font-size: 32px;
    color: var(--mediumgrey2);
    margin-bottom: 12px;
    transition: all 0.3s ease-in-out;
}

.dropzone:hover .dropzone-icon,
.dropzone.dragover .dropzone-icon {
    color: var(--activeColor);
    transform: scale(1.1);
}

.dropzone-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 8px;
}

.dropzone-subtext {
    font-size: 14px;
    color: var(--mediumgrey2);
    margin-bottom: 16px;
}

.dropzone-button {
    background-color: var(--activeColor);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.dropzone-button:hover {
    background-color: var(--brandblu1);
    transform: translateY(-1px);
}

.dropzone-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border-radius: 20px;
}

.file-preview {
    margin-top: 16px;
    padding: 12px;
    background-color: var(--lightgrey);
    border-radius: 8px;
    display: none;
}

.file-preview.show {
    display: block;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-details {
    display: flex;
    align-items: center;
}

.file-icon {
    font-size: 20px;
    color: var(--brandblu2);
    margin-right: 12px;
}

.file-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--font-color);
    margin-bottom: 2px;
}

.file-size {
    font-size: 12px;
    color: var(--mediumgrey2);
}

.file-remove {
    background: none;
    border: none;
    color: var(--mediumgrey2);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.file-remove:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

input.form-control.custom-input,
textarea.form-control.custom-textarea{
    border-radius: 8px;
}


.loader {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  .loader::after,
  .loader::before {
    content: '';  
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(../img/loader-b.svg) no-repeat center center; 
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    animation: animloader 3s ease-in-out infinite;
  }
  .loader::after {
    animation-delay: 0.5s;
  }

  .loader.w::after,
  .loader.w::before {
    content: '';  
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(../img/loader-w.svg) no-repeat center center; 
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    animation: animloader 3s ease-in-out infinite;
  }
  .loader.w::after {
    animation-delay: 1.5s;
  }
  .btn.btn-primary .loader {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
  }
  .btn.btn-primary .loader.w::after,
  .btn.btn-primary .loader.w::before {
    content: '';  
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: url(../img/loader-w.svg) no-repeat center center; 
    background-size: cover;
    position: absolute;
    left: 0;
    top: 3px;
    box-sizing: border-box;
    animation: animloader 3s ease-in-out infinite;
  }
  .btn.btn-primary .loader.w::after {
    animation-delay: 1.5s;
  }

@keyframes animloader {
        0%, 100% {
        transform: scale(0);
        opacity: 1;
    }
        50% {
        transform: scale(1);
        opacity: 0;
    }
}


.shimmer_thinking {
  background: linear-gradient(135deg, var(--white), var(--activeColor), var(--white));
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


.progressive-bar, .progressive-bar .progress-bar{
    background: var(--mediumgrey1);
    height: 8px;
    border-radius: 4px;
    display: block;
    border:0;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.progressive-bar{
    animation: expander 5s ease-in-out;
}
@keyframes expander {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


.progressive-bar .progress-bar{
    width: 0;
    background: linear-gradient(135deg, var(--activeColor40), var(--activeColor));
    transition: all 0.3s ease-in-out;
}

.card{
    border: 1px solid var(--borderline);
    box-shadow: 0 4px 12px rgba(0, -7, 10, 0.1);
    cursor: pointer;
}

.bootstrap-tagsinput {
    background-color: var(--white);
    border: 1px solid var(--borderline);
    font-size: 13px;
    border-radius: 8px;
    display: inline-block;
    padding: 8px 16px;
    color: var(--font-color);
    vertical-align: middle;
    width: 100%;
    line-height: 22px;
    cursor: text;
}

.dropzone .bootstrap-tagsinput{
    visibility: hidden;
}

.bootstrap-tagsinput span.tag.badge.bg-info{
    font-size: 14px;
    font-weight: normal;
    background: var(--activeColor) !important;
    color: var(--white);
    border-radius: 30px;
    margin:4px 0;
}

.sourceLabel{
    cursor: pointer;
    background: var(--activeColor);
    color: var(--white);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 8px;
    display: inline-block;
    margin:3px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.sourceLabel:hover{
    opacity: 0.7;
}

.bootstrap-tagsinput input {
    width: 100%;
}
code{
    background: var(--activeColor15);
    color: var(--activeColor);
    border-radius: 8px;
    padding:2px 5px;
}
.hasTooltip{
    position: relative;
    width: max-content;
    display: inline-block;
}
.hasTooltip .tooltippedText{
    background: var(--white);
    color: var(--activeColor);
    font-size: 14px;
    padding:2px 5px;
    border-radius: 8px;
    margin:3px;
    text-decoration: none;
    width: max-content;
    position:relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.hasTooltip .tooltipContainer{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    font-size: 12px;
    top: 50px;
    left: 30px;
    z-index: 100;
    width: 300px;
    background: var(--white);
    color: var(--font-color);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.hasTooltip:hover .tooltipContainer{
    opacity: 1;
    visibility: visible;
    top: 30px;
    left: 0px;
    transition: all 0.3s ease-in-out;
}



.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.is-active:hover {
    opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

  .hamburger-inner {
    display: block;
    top: 50%;
    }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 20px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px;
    right: 0;
    width: 15px;
    }
  .hamburger-inner::after {
    bottom: -8px;
    width: 7px;
    right: 0;
    }                       


    /*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;

  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

    
.cp {
    --size: 200px;           /* puoi sovrascrivere: style="--size:160px" */
    --thickness: 10px;       /* spessore dell’anello */
    --track-color: #ececec;  /* colore traccia */
    --progress-color: #22c55e; /* default (verde), JS lo cambia in base alla % */

    position: relative;
    inline-size: var(--size);
    block-size: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
  }
  .cp__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
      conic-gradient(var(--progress-color) var(--angle, 0deg), var(--track-color) 0);
    /* “Buca” centrale per creare l’anello */
    -webkit-mask:radial-gradient(farthest-side, transparent calc(50% - var(--thickness)), #000 0);
            mask: radial-gradient(farthest-side, transparent calc(50% - var(--thickness)), #000 0);
    transition: background .2s linear;
  }
  .cp__center {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    inline-size: calc(var(--size) - var(--thickness)*2.2);
    block-size: calc(var(--size) - var(--thickness)*2.2);
    border-radius: 50%;
    background: #fff; /* o var(--bs-body-bg) se preferisci */
    color: #444;
    font: 600 clamp(14px, 4.2vw, 28px)/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }
  .cp__label {
    font-size: clamp(18px, 5vw, 22px);
  }
  .cp__sub {
    margin-top: .15rem;
    font-size: .8rem;
    color: #6b7280;
    
  }

/* Stile per il pulsante di modifica avatar */
.uplaodAvatarWrap{
    position: relative;
    width: max-content;
    height: max-content;
}

.btn-edit-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.btn-edit-avatar i {
  font-size: 20px;
  color: var(--activeColor);
}

.uplaodAvatarWrap:hover .btn-edit-avatar,
.uplaodAvatarWrap .btn-edit-avatar:hover {
    background-color: var(--white);
  opacity: 0.5;
}

/* Stile per nascondere il file preview all'inizio */
#avatarPreview {
  display: none;
}

#avatarPreview.show {
  display: block;
}


ul.projectListing{
    background: transparent;
}
ul.projectListing li{
    background: transparent;
}
ul.projectListing li .showDateorDropdown .date{
    font-size: 12px;
    color: var(--mediumgrey2);
    padding-top: 5px;
}
ul.projectListing li .showDateorDropdown .dropdownBox{
    display: none;
}

ul.projectListing li:hover{
    background: var(--white);
}

ul.projectListing li:hover .showDateorDropdown .date{
    display: none;
}
ul.projectListing li:hover .showDateorDropdown .dropdownBox{
    display: block;
}
ul.projectListing li a {
    text-decoration: none;
    color: var(--activeColor);
}

/* NEW */
.grecaptcha-badge {
    visibility: hidden;
}
.ottimizzaContent {
    display: none;
}
.keywordContent, #saveBtn, #ottimizzaSaveBtn {
    visibility: hidden;
}


#fullLoaderWrapper{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    height: 100vh;
}
#fullLoaderWrapperContent{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 50;
    background: rgb(255 255 255 / 60%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.hide {
    display: none;
}
.loader-spin {
width: 6em;
height: 6em;
}

.loader-ring {
animation: ringA 2s linear infinite;
}

.loader-ring-a {
stroke: #000;
}

.loader-ring-b {
animation-name: ringB;
stroke: #979797;
}

.loader-ring-c {
animation-name: ringC;
stroke: #000;
}

.loader-ring-d {
animation-name: ringD;
stroke: #979797;
}

/* Animations */
@keyframes ringA {
from, 4% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -330;
}

12% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -335;
}

32% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -595;
}

40%, 54% {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -660;
}

62% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -665;
}

82% {
    stroke-dasharray: 60 600;
    stroke-width: 30;
    stroke-dashoffset: -925;
}

90%, to {
    stroke-dasharray: 0 660;
    stroke-width: 20;
    stroke-dashoffset: -990;
}
}

@keyframes ringB {
from, 12% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -110;
}

20% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -115;
}

40% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -195;
}

48%, 62% {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -220;
}

70% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -225;
}

90% {
    stroke-dasharray: 20 200;
    stroke-width: 30;
    stroke-dashoffset: -305;
}

98%, to {
    stroke-dasharray: 0 220;
    stroke-width: 20;
    stroke-dashoffset: -330;
}
}

@keyframes ringC {
from {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
}

8% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
}

28% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
}

36%, 58% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
}

66% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
}

86% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
}

94%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
}
}

@keyframes ringD {
from, 8% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: 0;
}

16% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -5;
}

36% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -175;
}

44%, 50% {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -220;
}

58% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -225;
}

78% {
    stroke-dasharray: 40 400;
    stroke-width: 30;
    stroke-dashoffset: -395;
}

86%, to {
    stroke-dasharray: 0 440;
    stroke-width: 20;
    stroke-dashoffset: -440;
}
}
