.modal-global-search {
    /* overflow: hidden !important; */

    .modal-content {
        background-color: transparent;
        box-shadow: none;
        
        .modal-body {
            padding-bottom: 100px;

            .row:first-child {
                position: sticky;
                top: 10px;
                z-index: 100;

                .col-form-global-search {
                    padding: 0 0 24px 0;
                    position: relative;

                    &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 64px;
                        border-radius: var(--border-radius);
                        z-index: 101;
                        backdrop-filter: blur(6px);
                        background: rgba(0, 0, 0, 0.5);
                        z-index: -1;
                        filter: blur(6px);
                    }

                    input {
                        background: rgba(var(--background-primary), 0.7) !important;
                        border: none !important;
                        height: 64px;
                        font-size: 22px !important;
                        padding: 12px 16px;
                        padding-right: 49px;
                        box-shadow: 0px 3px 20px 20px rgba(var(--background-secondary), 0.8) !important;
                        color: rgba(var(--text-primary), 1) !important;
                        backdrop-filter: blur(10px);

                        &::placeholder {
                            color: rgba(var(--text-primary), 1) !important;
                            opacity: 1;
                        }
                        
                        &::-ms-input-placeholder {
                            color: rgba(var(--text-primary), 1) !important;
                        }
                    }

                    .icon-reset {
                        font-size: 22px;
                        position: absolute;
                        right: 10px;
                        top: 37%;
                        transform: translateY(-50%);
                        cursor: pointer;
                        color: rgba(var(--text-primary), 0.6) !important;
                    }
                }
            }

            .row-items-global-search {
                &::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                }

                .col-item-global-search {
                    background-color: rgba(var(--background-secondary), 0.8);
                    color: rgb(var(--text-primary));
                    padding: 12px;
                    border-radius: var(--border-radius);
                    z-index: 90;
                    cursor: pointer;
                    margin-bottom: 12px;

                    &:hover {
                        background-color: rgba(var(--background-secondary), 1);
                    }

                    .row-item-global-search {
                        display: flex;
                        justify-content: flex-start;
                        flex-direction: row;

                        .col-item-img-global-search {
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            .img-item-global-search {
                                width: auto;
                                min-width: 30px;
                                height: 100%;
                                max-height: 80px;
                                object-fit: cover;
                                border-radius: var(--border-radius);
                                pointer-events: none;
                            }
                        }

                        .col-item-infos-global-search {
                            display: flex;
                            align-items: flex-start;
                            justify-content: flex-start;
                            flex-direction: column;

                            h5 {
                                font-size: 19px;
                                font-weight: bold;
                                white-space: normal;
                                word-wrap: break-word;
                                overflow-wrap: break-word;
                                
                            }
                            p {
                                font-size: 16px;
                                margin: 0 0 8px 0;
                                white-space: normal;
                                word-wrap: break-word;
                                overflow-wrap: break-word;
                            }

                            a {
                                white-space: normal;
                                word-wrap: break-word;
                                overflow-wrap: break-word;

                                &.ask {
                                    cursor: pointer !important;
                                    background: rgba(var(--text-primary), 0.3);
                                    color: var(--text-secondary);
                                }
                                &.pending {
                                    cursor: inherit !important;
                                    font-style: italic;
                                    font-weight: 300;
                                }
                                &.valid {
                                    display: none;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}