.options-additional {
    border-bottom: 1px solid var(--color-silver-gray);

    .options-additional-title {
        height: 44px;
        padding: 12px 10px;
        display: flex;
        font-size: 12.8px;
        align-items: center;
        justify-content: space-between;
        color: var(--color-black);
        background-color: var(--color-soft-gray);
        border-top: 0.5px solid var(--color-silver-gray);
        border-bottom: 0.5px solid var(--color-silver-gray);
        cursor: pointer;

        button {
            border: none;
            cursor: pointer;
            background-color: transparent;
        }
    }

    .options-additional-checkbox {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 16px 12px;

        .checkbox-options {
            display: flex;
            align-items: center;
            gap: 4px;
            line-height: 17.8px;

            .checkbox-custom {
                width: 12px;
                height: 12px;
                margin-right: 3px;
                cursor: pointer;

                &:checked {
                    appearance: none;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    background-color: var(--color-orange);
                    border-radius: 2px;
                    position: relative;
                    display: inline-block;

                    &::before {
                        content: '';
                        display: block;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        width: 7.11px;
                        height: 6.75px;
                        background-image: url('../img/icons-general/check.svg');
                        background-size: contain;
                        background-repeat: no-repeat;
                        transform: translate(-50%, -50%);
                    }
                }
            }

            label {
                display: flex;
                align-items: center;
                gap: 4px;
            }
        }
    }

    .tooltip-wrapper {
        position: relative;
        display: inline-flex;
        align-items: center;

        .tooltip-icon {
            width: 12px;
            height: 12px;
            cursor: pointer;
            background-image: url('../img/icons-general/circle-info.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
        }

        .tooltip-content {
            display: none;
            position: absolute;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            background-color: #333;
            color: #fff;
            padding: 8px 10px;
            border-radius: 6px;
            white-space: normal;
            word-break: break-word;
            font-size: 12px;
            line-height: 1.4;
            min-width: 140px;
            max-width: 220px;
            text-align: center;
            z-index: 10;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;

            &::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                border-width: 5px;
                border-style: solid;
                border-color: #333 transparent transparent transparent;
            }
        }

        &:hover .tooltip-content {
            display: block;
            opacity: 1;
        }
    }
}