#filter-form {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    background-color: whitesmoke;
    margin: 10px;

    .form-group {
        margin-bottom: 10px;

        .control-label {
            width: 15%;
        }

        .form-control {
            width: 85%;
            border-radius: 4px;
        }

        .fix-value {
            padding: 8px;
        }
    }
    .btn {
        float: right;
        margin: auto;
    }
}

.modal-body {
    input[type='text'] {
        width: 100%;
        height: 70%;
        font-size: small;
    }

    .form-group {
        margin: 10px auto;
        .control-label {
            width: 25%;
            margin-right: 10px;
        }
        .form-control {
            margin: auto 10px;
            width: 75%;
            border-radius: 4px;
        }

        .content-label {
            margin-bottom: 10px;
        }

        .hint-text {
            font-size: 10px;
            float: left;
        }
    }

    .key-value-group, .display-flex {
        margin: 10px auto;
        display: flex;

        .control-label {
            width: 25%;
            margin: auto 5px;
        }

        .value {
            margin: auto 5px;
            width: 75%;
            font-size: small;
        }
    }
}

.hint {
    position: relative;
    display: inline-block;

    .hinttext {
        visibility: hidden;
        background-color: rgba(20, 20, 55, 0.851);
        color: rgb(180, 211, 250);
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        width: auto;
        top: 100%;
    }
}

.hint:hover .hinttext {
    visibility: visible;
    opacity: 1;
    z-index: 100;
}
