.mfe-toolkit {
    position: fixed;
    bottom: 0;
    right: 0;
    background: #00000020;
    padding: 5px 5px 3px 5px;
    cursor: pointer;
    transform: translateY(80%);
    transition: 0.3s ease-in;
    z-index: 1;
}

.mfe-toolkit:hover {
    transform: translateY(0);
}

.mfe-toolkit.active {
    background: red;
    transform: translateY(0);
}

.mfe-toolkit-modal {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    background: white;
    padding: 20px;
    z-index: 999999999;
    border: 1px solid;
}

.mfe-toolkit-modal button {
    background: #598abd;
    color: white;
    border: 1px solid #000000;
    margin-right: 5px;
}

.mfe-toolkit-modal button.button-cancel {
    background: #FFFFFF;
    color: #598abd;
}

.mfe-toolkit-modal input,
.mfe-toolkit-modal select {
    display: block;
    margin-bottom: 5px;
    padding: 5px;
    width: 100%;
}

.mfe-toolkit-modal button.close {
    position: fixed;
    right: 0;
    top: 0;
    margin: 0;
    border: 0;
}


.mfe-toolkit-modal-form {
    max-height: 70vh;
    overflow-y: auto;
}
