.ui-widget-overlay {
	background: #000000 !important;
}

/* CUSTOM POPUP */

div[aria-describedby="dialogPopup"] {
	z-index: 900 !important;
}

.custom_modal_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
    z-index: 999;
	
	-webkit-animation: fade-in-opacity 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-in-opacity 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.custom_modal_container {
    width: 100%;
    height: auto;
    max-width: 70%;
    padding: 13px 13px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
	
	-webkit-animation: fade-in-opacity 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: fade-in-opacity 0.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.custom_modal_container_top_header {
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom_modal_container_top_header>h1 {
    height: auto;
    margin: 5px 0;
    font-weight: 500;
    font-size: 24px;
    font-family: 'Roboto', Lucida Grande, Lucida Sans, Arial, sans-serif;
    color: #222;
}

.custom_modal_container_top_header>p {
    margin: 10px 0;
    font-size: 14px;
    font-family: 'Roboto', Lucida Grande, Lucida Sans, Arial, sans-serif;
    color: #222;
}

.custom_modal_close {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

.custom_modal_container_content {
	width: 100%;
	height: auto;
	max-height: 500px;
	overflow-y: overlay;
}

.custom_modal_container_content td {
	max-width: 400px;
}

.custom_modal_container_content::--webkit-scrollbar {
	width: 8px;
}

.custom_modal_container_content::-webkit-scrollbar-track {
	border-radius: 4px;
}

.custom_modal_container_content::-webkit-scrollbar-track-piece {
	background-color: #fff;
}

.custom_modal_container_content::-webkit-scrollbar-thumb {
	background-color: var(--ascDefault);
	border: 1px solid #fff;
	border-radius: 4px !important;
}

.custom_modal_container_content::-webkit-scrollbar-button:start:decrement {
	display: none;
}

.custom_modal_container_content::-webkit-scrollbar-button:end:increment {
	display: none;
}

.custom_modal_container_content table {
	margin-bottom: 0px;
}

.custom_modal_container_content table thead {
	position: sticky;
    top: 0;
    left: 0;
	background: #fff;
	z-index: 1;
}

@-webkit-keyframes fade-in-opacity {
  0% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
	transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes fade-in-opacity{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* CUSTOM CREAZIONE ETICHETTE */

.dupe_full_container_cr {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
    z-index: 999;
}

.dupe_container {
    width: 100%;
    height: auto;
    max-width: 400px;
    padding: 5px 5px;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
}

.dupe_container_top {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0px 15px 10px 15px;
}

.dupe_container_top_header {
    width: auto;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 0px 15px;
}

.dupe_container_top_header>h1 {
    height: auto;
    margin: 5px 0;
    font-weight: 500;
    font-size: 24px;
    font-family: 'Roboto', Lucida Grande, Lucida Sans, Arial, sans-serif;
    color: #222;
}

.dupe_container_top>p {
    margin: 10px 0;
    font-size: 14px;
    font-family: 'Roboto', Lucida Grande, Lucida Sans, Arial, sans-serif;
    color: #222;
}

#dupe_container_number_input {
    width: 80px;
    height: 35px;
    border-radius: 1px;
    border: 1px solid #c7c7c7;
    font-size: 14px;
    color: #222;
    margin: 0;
    padding: 0 5px;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition-property: color, background-color, border-color, box-shadow;
	transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
	transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	transition-delay: 0s, 0s, 0s, 0s;
}

#dupe_container_number_input:focus,
#dupe_container_number_input:focus-visible,
#dupe_container_number_input:active {
    border: 1px solid #1c7eaf;
    outline: none;
}

.dupe_container_bottom {
    width: auto;
    height: auto;
    display: flex;
    padding: 10px 15px 20px 15px;
}

#dupe_container_close {
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
}

#dupe_container_submit {
    width: 100%;
    height: 35px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 1px;
	padding: 0;
	color: #fff;
	border: 0px solid var(--ascDefault);
	border-radius: 1px;
	background-color: var(--ascDefault);
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	transition-property: color, background-color, border-color, box-shadow;
	transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
	transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	transition-delay: 0s, 0s, 0s, 0s;
}

#dupe_container_submit:hover {
	border: 0px solid var(--ascLight);
    border-radius: 1px;
    background-color: var(--ascLight);
    color: #ffffff !important;
}

#dupe_container_submit:focus {
	background-color: var(--ascLight);
}

#dupe_container_submit:focus:active {
	box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 50%);
}


/*NASCONDE FORM DI RICERCA IN HOME*/
div#divsearch{
	display: none !important;
}

/* NASCONDI ANAGRAFICA WF E BACHECA DA HOME */
div#Workflow{
	display:none !important;
}
div#Bacheca{
		display:none !important;
}
div#Analitica{
		display:none !important;
}