            #gf-entry-modal {
                position: fixed;
                z-index: 99999;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.6);
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .gf-entries-buttons {

                button,
                select {
                    padding: 5px 10px;
                    border-radius: 5px;
                    display: inline-flex;
                    align-items: center;
                    font-size: 16px;
                }

                .fa-circle-plus,
                .fa-circle-minus {
                    margin-right: 8px;
                    /* font-size: 20px; */
                }

                .gf-add-entry {
                    background-color: #5cb85c;
                }

                .gf-delete-selected {
                    background-color: #d9534f;
                }

            }


            .gf-modal-content {
                background: #fff;
                padding: 20px;
                width: 90%;
                max-width: 700px;
                position: relative;
                border-radius: 6px;
            }

            .gf-modal-close {
                position: absolute;
                right: 15px;
                top: 10px;
                font-size: 30px;
                background: none;
                border: none;
                cursor: pointer;
                color: #333;
            }

            .gf-modal-close {
                padding: 0px;
                top: -15px;
                font-size: 40px;

                &:focus,
                &:hover {
                    background-color: unset;
                    color: #d9534f;
                }

            }

            /* Simple CSS spinner */
            .spinner {
                border: 4px solid #f3f3f3;
                border-top: 4px solid #3498db;
                border-radius: 50%;
                width: 40px;
                height: 40px;
                animation: spin 1s linear infinite;
                margin: 0 auto;
            }

            .dt-processing {
                font-size: 14px;
                box-shadow: 1px 1px 3px #959595;
                border-radius: 5px;
                background: #ffffff;
            }

            @keyframes spin {
                0% {
                    transform: rotate(0deg);
                }

                100% {
                    transform: rotate(360deg);
                }
            }