.expression-editor-winbox .wb-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


.expression-content {
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.expression-select {
    width: 97%;
}

.expression-center {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: #F8FAFC;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 97%;

}

.expression-center-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
}

.expression-form {
    width: 50%;

}

.expression-form textarea {
    height: 60px;
    width: 100%;
    font-size: large;
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #ddd;
    margin-top: 13px;
}

.expression-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.expression-container-left {
    width: 40%;
    margin-left: 15px;
}

.expression-container-right {
    width: 43%;
    margin-left: 15px;
}

.dropdown-label {
    margin-bottom: 10px;
    font-weight: 600;
}

.expression-container .general-select {
    margin-bottom: 25px;
    display: flex;
    width: 90%;
}

.expression-name {
    font-weight: 600;

}

.expression-name-input {
    margin-top: 10px;
    width: 85%;
    margin-bottom: 25px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid lightgrey;
}

.operation-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.operation-container .general-button {
    margin: 5px;
    padding: 5px 15px;
    font-weight: 700;

}

.column-variables-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.column-variables-content label {
    font-weight: 600;
}

.variable-insert-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.column-variables-content select {
    margin: 10px;
}



.column-variables-content .general-button {
    margin: 0px;
    padding: 5px 15px;
}


.expression-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    width: 97%;
    min-height: 88px;

}

.column-used-content {
    margin-bottom: 10px;
    border: 1px solid lightgrey;
    padding: 20px;
    border-radius: 4px;

}

.column-used-content:empty {
    display: none;
}

.variable-used {
    position: relative;
    cursor: unset;
    display: table-row-group;
    cursor: default;

}

.expression-display {
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid lightgrey;
    border-radius: 4px;
    padding: 20px;
}

.expression-display:empty {
    display: none;
}

/* //tooltip */

.tooltip-add-expression {
    position: absolute;
    background: var(--background-grey-very-ligth);
    z-index: 1;
    border: 0.6px solid var(--background-grey-very-ligth);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    padding: 3px;
    left: 100%;
    top: 0;
    width: max-content;
    margin-left: 15px;
}

.tooltip-add-expression::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--background-grey-very-ligth) transparent transparent;
}

/* //Changed columns options modal */
#exit-confirmation-modal-col2{
    display: flex
    ;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
}