.select-destiny-cell{
    .select-cell{
        display: flex;
        padding: 0 15px 0 10px;
        height: 44px;
        font-size: 12.8px;
        align-items: center;
        justify-content: space-between;
        color: var(--color-black);

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

    .container-cell {
        display: flex;
        align-items: flex-end;
        gap: 12px;
        position: relative;
        padding: 0 12px 16px 12px;

        .container-cell-select {
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            gap: 8px;
            position: relative;
            display: inline-block;

            .select-field-cell {
                cursor: pointer;
                opacity: 0;
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
            }

            .select-field-cell-custom {
                border: 1px solid var(--color-silver-gray);
                padding: 8px 12px;
                border-radius: 4px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                cursor: pointer;
                height: 36px;

                .select-text-cell {
                    flex-grow: 1;
                }

                .select-icon {
                    width: 16px;
                    height: 19px;
                    margin-left: 8px;
                }
            }
        }

        .input-cell {
            input{
                width: 60px;
                height: 36px;
                border: 1px solid var(--color-silver-gray);
                border-radius: 4px;
                padding: 8px 6px;
            }
        }
    }
}