/* .z-multiselect-component{
position:relative;
	display:flex;
	flex-direction:column;   
	background-color: #ffffff;
	border: 1px solid #9e9e9e;
	border-radius: 0.5rem;
	padding: 1px;
	transition: border-bottom 0.15s ease-in-out, padding-bottom 0.15s ease-in-out;
	cursor:pointer;
	min-height: 3.5rem;
}
.z-multiselect-component.overflow-hidden:before {
    position: absolute;
	border-radius: 0.5rem;
    content:"";
    height:1em;
    width:100%;
    top:0;
    left:0;
	background: #ffffff;
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.z-multiselect-component.overflow-hidden:after {
    position: absolute;
	border-radius: 0.5rem;
    content:"";
    height:1em;
    width:100%;
    bottom:0;
    left:0;
	background: #ffffff;
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}


.z-multiselect-component.selected{
    border: 2px solid var(--mdc-theme-primary);
	
}
.z-multiselect-component:hover{
	border: 1px solid #212121;
}
.z-multiselect-component.selected:hover{
	border: 2px solid #7b4dff;
}


z-selected-element.z-deselect-element{
	padding-right:1em;
}
.z-multiselect-component.z-input-area{
	width:100%;
}
.z-multiselect-component.z-dropdown-area{
	width:100%;
}
.z-multiselect-component.z-dropdown-area.z-dropdown-element{
} */




.z-selected-elements-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    align-content: flex-start;
    height: 3.5em;
    min-height: 3.5em;
    overflow-y: auto;

}

.z-selected-element {
    display: flex;
    padding: 0.75em;
    margin: 0.25em;
    min-height: 1em;

    width: fit-content;
    border-radius: 1em;
    background-color: rgb(235, 235, 235);
    cursor: pointer;
    word-break: break-word;
    color: inherit;
    border: none;
    font: inherit;

}

.z-selected-elements-container[data-state="open"] {
    height: fit-content;
}

.z-selected-element[data-state="closed"] {
    height: 1em;
}
.z-multiselect[data-state="open"]  .z-selected-element:hover, .z-multiselect[data-state="open"]  .z-selected-element:focus-visible {
    background-color: rgb(245, 245, 245);
    text-decoration: line-through;
    text-decoration-thickness: 2px;

}
.z-selected-element.z-content {}
.z-multiselect-dropdown-icon{
    min-width: 0.7em;
}

.z-multiselect,
.z-multiselect-options-input {
    font-family: 'Poppins';
}

.z-multiselect-inner {
    height: 3.5rem;
    font-size: 1em;
    cursor: pointer;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 1em;

    .z-multiselect-selected-option {
        margin-left: 1em;
    }

    /* >*:last-child {
        margin-right: 1.2em;
    } */
}

.z-multiselect.with-icon {
    .z-multiselect-inner>*:first-child {
        margin-left: 0.5em;
    }

    .z-multiselect-selected-option {
        margin-left: 0;
    }
}



.z-multiselect-label {
    user-select: none;
}

.z-multiselect[data-state="open"] {
    .z-multiselect-dropdown-icon-poly.down {
        opacity: 0;
    }

    .z-multiselect-dropdown-icon-poly.up {
        opacity: 1;
    }

    .z-multiselect-dropdown-area {
        display: block;
        position: fixed;
        z-index: 20;
    }

    .z-multiselect-inner {
        border-radius: 0.5rem 0.5rem 0 0 !important;
    }
}

.z-multiselect[data-state="closed"] {
    .z-multiselect-dropdown-icon-poly.down {
        opacity: 1;
    }

    .z-multiselect-dropdown-icon-poly.up {
        opacity: 0;
    }

    .z-multiselect-dropdown-area {
        display: none;
    }
}

.z-multiselect {
    flex-grow: 1;
}

.z-multiselect-dropdown-icon-poly {
    fill: rgba(0, 0, 0, 0.54);
    /* transition: opacity 100ms ease-in-out; */
}

.z-multiselect-dropdown-icon {
    width: 0.7em;
    /* margin: 0 1.2em; */
}

.z-multiselect-selected-option {
    flex-grow: 1;
    color: black;
}

.z-multiselect-options {
    border-radius: 0 0 1em 1em;
    box-shadow: 0 0.5em 1em rgba(0, 0, 0, 0.2);
    min-height: 2em;
    max-height: 100%;
    background-color: white;
    overflow: hidden;
    padding: 0.5em 0;
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    grid-template-columns: 100%;
}

.z-multiselect-options-input {
    padding: 0.5em;
    margin: 0.5em;
    appearance: none;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
}

.z-multiselect-options-input::placeholder {
    font-weight: 100;
    font-style: italic;
}

.z-multiselect-options-input:focus-visible {
    outline: none;
    border-bottom: 2px solid var(--mdc-theme-primary);
}

.z-multiselect-options-list {
    overflow: auto;
}

.z-multiselect-option {
    padding: 1em;
    cursor: pointer;
    color: black;
}

.z-multiselect-option:hover {
    background-color: rgb(235, 235, 235);
}

.z-multiselect-option.disabled {
    cursor: unset;
    color: grey;
    /* font-style: italic; */
}

.z-multiselect-option.disabled:hover {
    background-color: unset;
}

.z-multiselect.disabled {
    color: rgb(172, 172, 172);

    .z-multiselect-inner {
        cursor: unset;
    }

    .z-multiselect-dropdown-icon-poly.down {
        opacity: 0.5;
    }

}


.z-multiselect.filled {
    .z-multiselect-inner {
        background-color: #f5f5f5;
        border-bottom: 1px solid grey;
        border-radius: 0.5rem 0.5rem 0 0;
        padding-bottom: 1px;
        transition: border-bottom 0.15s ease-in-out, padding-bottom 0.15s ease-in-out;
    }

    .z-multiselect-inner:hover {
        background-color: #ececec;
        border-bottom: 1px solid #1e1e1e;
    }

    .z-multiselect-label {
        position: absolute;
        top: calc(50% - 0.7em);
        left: 1rem;
        transition: font-size 0.15s ease-in-out, top 0.15s ease-in-out, color 0.15s;
    }

    .z-multiselect-selected-option {
        position: relative;
        top: 0.5em;
    }

    .z-multiselect-selected-option.no-label {
        top: 0;
    }
}

.z-multiselect.with-icon[data-selected="false"][data-state="closed"] .z-multiselect-label {
    left: 2.9em;
}

.z-multiselect.filled[data-selected="true"] {
    .z-multiselect-label {
        top: 0;
        font-size: 0.75em;
    }
}

.z-multiselect.filled[data-state="open"] {

    .z-multiselect-inner {
        padding-bottom: 0;
        border-bottom: 2px solid var(--mdc-theme-primary);
    }

    .z-multiselect-label {
        top: 0;
        font-size: 0.75em;
        color: var(--mdc-theme-primary);
    }
}


.z-multiselect.filled.disabled {

    .z-multiselect-inner,
    .z-multiselect-inner:hover {
        background-color: #fafafa;
        border-bottom: 1px solid #ebebeb;
    }
}

.z-multiselect.outlined {
    margin-top: 1em;

    .z-multiselect-inner {
        background-color: #ffffff;
        border: 1px solid #9e9e9e;
        border-radius: 0.5rem;
        padding: 1px;
        transition: border-bottom 0.15s ease-in-out, padding-bottom 0.15s ease-in-out;
    }

    .z-multiselect-inner:hover {
        border: 1px solid #212121;
    }

    .z-multiselect-label {
        position: absolute;
        top: calc(50% - 0.7em);
        left: 1rem;
        transition:
            font-size 0.15s cubic-bezier(0.4, 0, 0.2, 1),
            color 150ms cubic-bezier(0.4, 0, 0.2, 1),
            left 150ms cubic-bezier(0.4, 0, 0.2, 1),
            top 150ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .z-multiselect-selected-option {
        /* pointer-events: none; */
    }

    .z-multiselect-selected-option.no-label {
        top: 0;
    }
}

.z-multiselect.outlined[data-selected="true"][data-state="open"] {

    .z-multiselect-inner,
    .z-multiselect-selected-option,
    .z-selected-elements-container {
        height: fit-content;
    }
}

.z-multiselect.outlined[data-selected="true"],
.z-multiselect.outlined[data-state="open"] {

    .z-multiselect-label {
        /* transform: translateY(-30.25px) scale(1); */
        padding-left: 3px;
        padding-right: 3px;
        -webkit-text-stroke: 5px white;
        paint-order: stroke fill;
        /* transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0s; */
        font-size: 0.75em;
        top: -1.1em;
        left: 0.8em;
    }

    .z-multiselect-inner {
        padding: 0;
    }
}

.z-multiselect.outlined[data-state="open"] {
    .z-multiselect-inner {
        padding: 0;
        border: 2px solid var(--mdc-theme-primary);
    }

    .z-multiselect-inner:hover {
        padding: 0;
        border: 2px solid var(--mdc-theme-primary);
    }

    .z-multiselect-label {

        color: var(--mdc-theme-primary);
    }
}


.z-multiselect.outlined.disabled {

    .z-multiselect-inner,
    .z-multiselect-inner:hover {
        background-color: #ffffff;
        color: rgba(0, 0, 0, 0.38);
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
}


.z-multiselect-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-multiselect-icon-graphic{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0.85em;
    margin: auto;
    text-align: center;
    width: 1em;
}